@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #0a192f;
  --secondary: #0a2540;
  --accent: #008080;
  --accent-hover: #00a896;
  --accent-light: #e6f6f6;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
  --shadow-hover: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: var(--font-body);
}

.btn-primary {
  background-color: var(--accent);
  color: var(--bg-white);
  box-shadow: 0 4px 14px rgba(0, 128, 128, 0.4);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 168, 150, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--bg-white);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background-color: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--primary);
}

.logo i {
  color: var(--accent);
  margin-right: 8px;
  font-size: 24px;
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 15px;
  position: relative;
  padding: 6px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
}

.hamburger {
  display: none;
  font-size: 24px;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 50%;
  height: 100%;
  background-color: var(--bg-white);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  z-index: 1100;
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 40px;
}

.close-menu {
  font-size: 28px;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
}

.mobile-nav-links a {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--accent);
  padding-left: 8px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.9) 0%, rgba(10, 37, 64, 0.75) 50%, rgba(0, 128, 128, 0.4) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 650px;
  color: var(--bg-white);
}

.hero-tag {
  display: inline-block;
  background-color: rgba(0, 168, 150, 0.2);
  border: 1px solid var(--accent);
  color: var(--accent-hover);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 56px;
  color: var(--bg-white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.inner-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 100px 0 80px;
  color: var(--bg-white);
  text-align: center;
}

.inner-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.95) 0%, rgba(0, 128, 128, 0.75) 100%);
  z-index: 1;
}

.inner-hero .container {
  position: relative;
  z-index: 2;
}

.inner-hero h1 {
  font-size: 48px;
  color: var(--bg-white);
  margin-bottom: 12px;
}

.inner-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.section-bg {
  background-color: var(--bg-white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 38px;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 16px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card {
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.why-card .icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: var(--accent-light);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.why-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 15px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.category-img {
  height: 180px;
  position: relative;
  overflow: hidden;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.category-card:hover .category-img img {
  transform: scale(1.05);
}

.category-content {
  padding: 24px;
}

.category-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.category-content h3 i {
  color: var(--accent);
}

.category-content p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.category-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.category-link:hover {
  color: var(--accent-hover);
  gap: 8px;
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.popular-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  position: relative;
  transition: var(--transition-smooth);
}

.popular-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.popular-card.featured {
  border: 2px solid var(--accent);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--accent);
  color: var(--bg-white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 10;
}

.popular-img {
  height: 220px;
  position: relative;
}

.popular-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popular-content {
  padding: 32px;
}

.popular-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.popular-content .price {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 20px;
}

.popular-content .price span {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.popular-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.popular-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-main);
}

.popular-features li i {
  color: var(--accent);
}

.popular-card .btn {
  width: 100%;
}

.compare-overview {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.compare-table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.compare-table th,
.compare-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
}

.compare-table th {
  background-color: var(--primary);
  color: var(--bg-white);
  font-weight: 600;
}

.compare-table tr:hover td {
  background-color: rgba(0, 128, 128, 0.02);
}

.compare-table i.fa-check {
  color: var(--accent);
}

.compare-table i.fa-xmark {
  color: #ef4444;
}

.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.benefits-img img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.benefit-item {
  display: flex;
  gap: 20px;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background-color: var(--accent-light);
  color: var(--accent);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.benefit-info h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.benefit-info p {
  font-size: 14px;
  color: var(--text-muted);
}

.how-works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.how-works-card {
  position: relative;
  padding-top: 40px;
}

.how-works-num {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 48px;
  font-weight: 800;
  color: rgba(0, 128, 128, 0.15);
  font-family: var(--font-heading);
  line-height: 1;
}

.how-works-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.how-works-card p {
  font-size: 14px;
  color: var(--text-muted);
}

.coverage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.coverage-box {
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.coverage-box.included {
  border-top: 4px solid var(--accent);
}

.coverage-box.excluded {
  border-top: 4px solid #ef4444;
}

.coverage-box h3 {
  font-size: 20px;
  margin-bottom: 24px;
}

.coverage-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.coverage-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
}

.coverage-list li i {
  margin-top: 4px;
}

.coverage-box.included li i {
  color: var(--accent);
}

.coverage-box.excluded li i {
  color: #ef4444;
}

.claim-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.claim-card {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  text-align: center;
  position: relative;
}

.claim-card i {
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 24px;
}

.claim-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.claim-card p {
  color: var(--text-muted);
  font-size: 14px;
}

.partners-wrap {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.partner-logo {
  max-width: 150px;
  opacity: 0.6;
  transition: var(--transition-smooth);
}

.partner-logo:hover {
  opacity: 1;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  position: relative;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.testimonial-card::before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 60px;
  color: rgba(0, 128, 128, 0.05);
  z-index: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.author-info p {
  font-size: 12px;
  color: var(--text-muted);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.article-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.article-img {
  height: 200px;
  overflow: hidden;
}

.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content {
  padding: 28px;
}

.article-date {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.article-content h3 {
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.article-content h3 a:hover {
  color: var(--accent);
}

.article-content p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.article-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-more:hover {
  color: var(--accent);
  gap: 10px;
}

.faq-layout {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.faq-question {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: none;
  width: 100%;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  font-family: var(--font-heading);
}

.faq-question i {
  color: var(--accent);
  transition: transform 0.3s;
}

.faq-answer {
  padding: 0 24px 24px;
  font-size: 14px;
  color: var(--text-muted);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.newsletter {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--bg-white);
  padding: 80px 0;
  text-align: center;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter h2 {
  color: var(--bg-white);
  font-size: 32px;
  margin-bottom: 12px;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 14px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--bg-white);
  font-size: 15px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.2);
  border-color: var(--accent);
}

.cta-banner {
  background: var(--accent);
  color: var(--bg-white);
  padding: 60px 0;
  text-align: center;
}

.cta-content h2 {
  color: var(--bg-white);
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 32px;
}

.cta-content .btn {
  background-color: var(--primary);
  color: var(--bg-white);
}

.cta-content .btn:hover {
  background-color: #12284c;
  transform: translateY(-2px);
}

.footer {
  background-color: var(--primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px;
  font-size: 14px;
}

.footer h3, .footer h4 {
  color: var(--bg-white);
  margin-bottom: 24px;
}

.footer h3 {
  font-size: 20px;
  font-family: var(--font-heading);
}

.footer h4 {
  font-size: 16px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--bg-white);
  margin-bottom: 20px;
}

.footer-logo i {
  color: var(--accent);
  margin-right: 8px;
}

.footer-logo span {
  color: var(--accent);
}

.footer-about p {
  margin-bottom: 24px;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
}

.footer-socials a:hover {
  background-color: var(--accent);
  transform: translateY(-2px);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a:hover {
  color: var(--bg-white);
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-list li {
  display: flex;
  gap: 12px;
}

.footer-contact-list i {
  color: var(--accent);
  margin-top: 4px;
}

.footer-subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-subscribe-form input {
  padding: 12px 16px;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-sm);
  color: var(--bg-white);
  font-size: 14px;
}

.footer-subscribe-form input:focus {
  outline: none;
  border-color: var(--accent);
}

.footer-subscribe-form button {
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a:hover {
  color: var(--bg-white);
}

.footer-disclaimer {
  width: 100%;
  margin-top: 20px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.4);
  text-align: justify;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.plans-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.plans-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.plans-img {
  height: 200px;
  overflow: hidden;
}

.plans-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plans-content {
  padding: 32px;
}

.plans-type {
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.plans-content h2 {
  font-size: 22px;
  margin-bottom: 16px;
}

.plans-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.plans-section-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.plans-benefits {
  list-style: none;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.plans-benefits li {
  font-size: 13px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.plans-benefits li i {
  color: var(--accent);
  font-size: 12px;
}

.plans-highlights {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.plans-highlights li {
  font-size: 13px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.plans-highlights li i {
  color: var(--accent);
  font-size: 12px;
}

.plans-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.plans-actions .btn {
  padding: 10px 14px;
  font-size: 13px;
  border-radius: 20px;
}

.compare-matrix-section {
  padding: 60px 0 100px;
}

.compare-matrix-title {
  text-align: center;
  margin-bottom: 40px;
}

.compare-matrix-title h2 {
  font-size: 32px;
}

.compare-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.compare-header-card {
  background: var(--bg-white);
  padding: 32px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  border-top: 4px solid var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.compare-header-card.popular-comp {
  border-top-color: var(--accent);
  position: relative;
}

.compare-header-card.popular-comp::after {
  content: 'POPULAR';
  position: absolute;
  top: -12px;
  background-color: var(--accent);
  color: var(--bg-white);
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 10px;
}

.compare-header-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.compare-header-card .comp-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}

.compare-header-card .comp-price span {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.compare-header-card .comp-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.compare-header-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 3px solid var(--border-color);
}

.compare-matrix-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.compare-matrix-table th,
.compare-matrix-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.compare-matrix-table td:first-child,
.compare-matrix-table th:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--primary);
  width: 25%;
}

.compare-matrix-table th {
  background-color: var(--primary);
  color: var(--bg-white);
}

.compare-matrix-table tr.category-row td {
  background-color: var(--bg-light);
  font-weight: 700;
  text-align: left;
  color: var(--accent);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 24px;
}

.compare-matrix-table i.fa-circle-check {
  color: var(--accent);
  font-size: 18px;
}

.compare-matrix-table i.fa-circle-xmark {
  color: #ef4444;
  font-size: 18px;
}

.resource-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.resource-main {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.resource-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.checklist-card {
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.checklist-card h3 {
  font-size: 22px;
  margin-bottom: 24px;
}

.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.checklist-col h4 {
  font-size: 16px;
  color: var(--accent);
  margin-bottom: 16px;
  border-bottom: 2px solid var(--accent-light);
  padding-bottom: 8px;
}

.checklist-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist-list li {
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checklist-list li i {
  color: var(--accent);
  margin-top: 4px;
}

.terminology-section {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.terminology-section h3 {
  font-size: 22px;
  margin-bottom: 24px;
}

.term-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.term-item dt {
  font-weight: 700;
  color: var(--primary);
  font-size: 16px;
  margin-bottom: 6px;
}

.term-item dd {
  font-size: 14px;
  color: var(--text-muted);
  margin-left: 0;
}

.sidebar-widget {
  background: var(--bg-white);
  padding: 32px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.sidebar-widget h3 {
  font-size: 18px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 10px;
}

.tips-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tips-list li {
  font-size: 14px;
  display: flex;
  gap: 12px;
}

.tips-list li i {
  color: var(--accent);
  margin-top: 4px;
}

.guide-img-container {
  margin-bottom: 30px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-intro-content h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

.about-intro-content p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 20px;
}

.about-intro-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.mission-card {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.mission-card i {
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 20px;
}

.mission-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.mission-card p {
  color: var(--text-muted);
  font-size: 15px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition-smooth);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.value-card i {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.value-card p {
  color: var(--text-muted);
  font-size: 14px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  background: var(--bg-white);
  padding: 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.stat-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.advisors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.advisor-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition-smooth);
}

.advisor-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.advisor-img {
  height: 250px;
  overflow: hidden;
}

.advisor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advisor-info {
  padding: 24px;
}

.advisor-info h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.advisor-info p {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.advisor-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.advisor-socials a {
  width: 30px;
  height: 30px;
  background-color: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-muted);
}

.advisor-socials a:hover {
  background-color: var(--accent);
  color: var(--bg-white);
}

.contact-top-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-card {
  background: var(--bg-white);
  padding: 32px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  gap: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--accent-light);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-details p {
  font-size: 14px;
  color: var(--text-muted);
}

.map-placeholder {
  height: 300px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 25, 47, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--bg-white);
  text-align: center;
  padding: 20px;
}

.map-overlay i {
  font-size: 32px;
  color: var(--accent-hover);
  margin-bottom: 12px;
}

.map-overlay h4 {
  color: var(--bg-white);
  font-size: 18px;
  margin-bottom: 6px;
}

.map-overlay p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.form-wrapper {
  background: var(--bg-white);
  padding: 48px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.form-wrapper h3 {
  font-size: 24px;
  margin-bottom: 28px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition-smooth);
  background-color: var(--bg-white);
  color: var(--text-main);
  outline: none;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 128, 128, 0.12);
}

.form-group textarea {
  resize: vertical;
  height: 150px;
}

.form-wrapper button {
  width: 100%;
}

.quote-layout {
  max-width: 800px;
  margin: 0 auto;
}

.quote-form-section {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
}

.quote-form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 32px;
  padding-bottom: 0;
}

.quote-form-section-title {
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quote-checkbox-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.checkbox-card {
  border: 1.5px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
  background-color: var(--bg-white);
}

.checkbox-card:hover {
  border-color: var(--accent);
  background-color: var(--accent-light);
}

.checkbox-card:has(input:checked) {
  border-color: var(--accent);
  background-color: var(--accent-light);
  box-shadow: 0 0 0 1px var(--accent);
}

.checkbox-card input {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border-color);
  border-radius: 4px;
  outline: none;
  background-color: var(--bg-white);
  cursor: pointer;
  display: grid;
  place-content: center;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.checkbox-card:hover input {
  border-color: var(--accent);
}

.checkbox-card input:checked {
  border-color: var(--accent);
  background-color: var(--accent);
}

.checkbox-card input::before {
  content: "";
  width: 10px;
  height: 10px;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  background-color: var(--bg-white);
  transform-origin: center;
  clip-path: polygon(14% 44%, 0 58%, 38% 95%, 100% 23%, 86% 9%, 38% 68%);
}

.checkbox-card input:checked::before {
  transform: scale(1);
}

.checkbox-card label {
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.radio-group {
  display: flex;
  gap: 16px;
  width: 100%;
}

.radio-option {
  border: 1.5px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
  flex: 1;
  background-color: var(--bg-white);
}

.radio-option:hover {
  border-color: var(--accent);
  background-color: var(--accent-light);
}

.radio-option:has(input:checked) {
  border-color: var(--accent);
  background-color: var(--accent-light);
  box-shadow: 0 0 0 1px var(--accent);
}

.radio-option input {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border-color);
  border-radius: 50%;
  outline: none;
  background-color: var(--bg-white);
  cursor: pointer;
  display: grid;
  place-content: center;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.radio-option:hover input {
  border-color: var(--accent);
}

.radio-option input:checked {
  border-color: var(--accent);
  background-color: var(--accent);
}

.radio-option input::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  background-color: var(--bg-white);
}

.radio-option input:checked::before {
  transform: scale(1);
}

.radio-option label {
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

/* Centering Hero Section and Why Choose Section Content */
.hero-content {
  margin: 0 auto;
  text-align: center;
}

.hero p {
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  justify-content: center;
  align-items: center;
}

.why-card {
  text-align: center;
}

.why-card .icon-wrapper {
  margin-left: auto;
  margin-right: auto;
}

.category-content {
  text-align: center;
}

.category-content h3 {
  justify-content: center;
}

.mobile-nav-links {
  align-items: center;
}

.mobile-nav-links a {
  text-align: center;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  padding-left: 0;
}

.article-content {
  text-align: center;
}
