/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: hsl(220, 80%, 25%);
  --primary-light: hsl(220, 80%, 35%);
  --primary-dark: hsl(220, 80%, 18%);
  --secondary: #f37756;
  --secondary-dark: #f37756;
  --bg: #ffffff;
  --fg: hsl(222, 47%, 11%);
  --muted: hsl(210, 40%, 96%);
  --muted-fg: hsl(215, 16%, 47%);
  --border: hsl(214, 32%, 91%);
  --radius: 0.5rem;
  --font: 'Plus Jakarta Sans', sans-serif;
  --shadow: 0 4px 24px rgba(13, 43, 102, 0.08);
  --shadow-lg: 0 8px 40px rgba(13, 43, 102, 0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-muted { color: var(--muted-fg); }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

/* ===== BADGE ===== */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.badge-primary { background: rgba(13,43,102,0.1); color: var(--primary); border: 1px solid rgba(13,43,102,0.15); }
.badge-secondary { background: rgba(242,139,24,0.12); color: var(--secondary-dark); border: 1px solid rgba(242,139,24,0.2); }
.badge-ghost { background: rgba(255,255,255,0.12); color: white; border: 1px solid rgba(255,255,255,0.2); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font);
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-secondary { background: var(--secondary); color: white; }
.btn-secondary:hover { background: var(--secondary-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-outline-dark { background: transparent; color: var(--primary); border: 2px solid var(--border); }
.btn-outline-dark:hover { background: var(--muted); }
.btn-ghost { background: transparent; color: var(--primary); }
.btn-ghost:hover { background: var(--muted); }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.85rem; }
.btn-lg { padding: 0.85rem 2rem; font-size: 1.05rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 5rem; gap: 2rem;
}
.navbar-brand {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 1.2rem; font-weight: 800; color: var(--primary);
  flex-shrink: 0;
  padding: 10px;;
}
.navbar-brand .brand-icon {
  background: var(--primary); color: white;
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.navbar-nav { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-size: 0.9rem; font-weight: 600; color: var(--muted-fg);
  transition: color 0.15s;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.navbar-actions { display: flex; align-items: center; gap: 1rem; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--fg);
  transition: all 0.3s;
  border-radius: 2px;
}
.mobile-menu {
  display: none; border-top: 1px solid var(--border);
  background: white; padding: 1rem 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu .nav-link { display: block; padding: 0.6rem 0; font-size: 1rem; border-bottom: 1px solid var(--border); }
.mobile-menu .nav-link:last-of-type { border-bottom: none; }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 1rem; }

/* ===== HERO ===== */
.hero {
  background: var(--primary);
  color: white;
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero1::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 60%;
  background: radial-gradient(circle at 70% 40%, hsl(25,90%,55%), transparent 60%);
  opacity: 0.12; pointer-events: none;
}
.hero1::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-wrapper { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.hero-image { text-align: center; }
.hero-image img { max-width: 100%; height: auto; max-height: 550px; }

@media (max-width: 768px) {
    .hero-wrapper { flex-direction: column; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-image { margin-top: 30px; }
}
.hero-content { position: relative; z-index: 1; max-width: 600px;  }
.hero-title { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.15; margin: 0.75rem 0 1.25rem; }
.hero-title span { color: var(--secondary); }
.hero-subtitle { font-size: 1.1rem; opacity: 0.85; line-height: 1.7; margin-bottom: 2rem; max-width: 560px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== SECTION ===== */
.section { padding: 5rem 0; }
.section-alt { background: hsl(210, 40%, 97%); }
.section-dark { background: var(--primary); color: white; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; margin: 0.5rem 0 0.75rem; }
.section-subtitle { color: var(--muted-fg); max-width: 520px; margin: 0 auto; }

/* ===== STATS ===== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat-card { background: var(--muted); border-radius: 1rem; padding: 1.75rem; text-align: center; }
.stat-value { font-size: 2.5rem; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-label { font-size: 0.85rem; color: var(--muted-fg); margin-top: 0.4rem; font-weight: 500; }

/* ===== FEATURE CARDS ===== */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.feature-card {
  background: white; border: 1px solid var(--border);
  border-radius: 1rem; padding: 1.75rem;
  transition: box-shadow 0.25s, transform 0.25s;
}
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.feature-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(13,43,102,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1rem;
  transition: background 0.2s;
}
.feature-card:hover .feature-icon { background: var(--primary); }
.feature-card:hover .feature-icon svg { stroke: white; }
.feature-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-desc { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; }

/* ===== GALLERY GRID ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery-item { position: relative; overflow: hidden; border-radius: 1rem; aspect-ratio: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,43,102,0.7) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-title { color: white; font-weight: 700; font-size: 0.9rem; }
.gallery-overlay-cat { font-size: 0.75rem; color: rgba(255,255,255,0.75); margin-top: 0.2rem; }

/* ===== BLOG CARDS ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card {
  background: white; border: 1px solid var(--border); border-radius: 1rem;
  overflow: hidden; transition: box-shadow 0.25s, transform 0.25s;
  display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.blog-card-title { font-weight: 700; font-size: 1rem; line-height: 1.4; transition: color 0.15s; }
.blog-card:hover .blog-card-title { color: var(--primary); }
.blog-card-excerpt { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; flex: 1; }
.blog-card-meta { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--muted-fg); padding-top: 0.75rem; border-top: 1px solid var(--border); margin-top: auto; }
.blog-read-more { display: flex; align-items: center; gap: 0.25rem; color: var(--primary); font-size: 0.875rem; font-weight: 600; margin-top: 0.5rem; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--primary); color: white;
  padding: 5rem 0 4rem; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 60%;
  background: radial-gradient(circle at 70% 40%, hsl(25,90%,55%), transparent 60%);
  opacity: 0.1; pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin: 0.5rem 0 0.75rem; }
.page-hero p { opacity: 0.82; max-width: 560px; font-size: 1.05rem; }

/* ===== FILTER BAR ===== */
.filter-bar {
  padding: 1.25rem 0; border-bottom: 1px solid var(--border);
  position: sticky; top: 64px; z-index: 50;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
}
.filter-bar .filters { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.filter-btn {
  padding: 0.4rem 1rem; border-radius: var(--radius);
  font-size: 0.85rem; font-weight: 600;
  border: 1.5px solid var(--border); background: white; color: var(--muted-fg);
  transition: all 0.15s; cursor: pointer; font-family: var(--font);
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); color: white; border-color: var(--primary); }

/* ===== CARDS (GENERIC) ===== */
.card { background: white; border: 1px solid var(--border); border-radius: 1rem; overflow: hidden; }
.card-body { padding: 1.5rem; }

/* ===== ABOUT PAGE ===== */
.value-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.team-card { text-align: center; padding: 2rem 1.5rem; background: white; border: 1px solid var(--border); border-radius: 1rem; }
.team-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(13,43,102,0.08); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 1rem; font-size: 1.6rem;
}
.team-name { font-weight: 700; font-size: 1rem; }
.team-role { font-size: 0.75rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.05em; margin: 0.25rem 0 0.5rem; }
.team-desc { font-size: 0.85rem; color: var(--muted-fg); line-height: 1.5; }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.checklist { list-style: none; display: flex; flex-direction: column; gap: 0.875rem; }
.checklist li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.925rem; }
.check-icon {
  width: 20px; height: 20px; border-radius: 50%; background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.journey-card { background: var(--primary); color: white; border-radius: 1.5rem; padding: 2.5rem; }
.journey-item { display: flex; gap: 1rem; margin-bottom: 1.25rem; }
.journey-year { color: var(--secondary); font-weight: 800; font-size: 0.9rem; min-width: 40px; padding-top: 1px; }
.journey-text { font-size: 0.875rem; opacity: 0.82; line-height: 1.5; }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1000px; margin: 0 auto; }
.pricing-card {
  background: white; border: 2px solid var(--border); border-radius: 1.25rem;
  padding: 2rem; display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: box-shadow 0.25s;
}
.pricing-card.highlighted {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(13,43,102,0.08), var(--shadow-lg);
  transform: scale(1.03);
}
.pricing-badge {
  position: absolute; top: 0; left: 0; right: 0;
  background: var(--primary); color: white;
  text-align: center; font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 0.35rem;
}
.pricing-name { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.25rem; }
.pricing-tagline { font-size: 0.85rem; color: var(--muted-fg); margin-bottom: 1.25rem; }
.pricing-price { font-size: 2.5rem; font-weight: 800; color: var(--fg); }
.pricing-price span { font-size: 1rem; color: var(--muted-fg); font-weight: 400; }
.pricing-annual { font-size: 0.8rem; color: var(--muted-fg); margin-top: 0.25rem; }
.pricing-divider { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; }
.pricing-features { display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.pricing-feature { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; }
.pricing-feature.no { color: var(--muted-fg); text-decoration: line-through; opacity: 0.5; }
.check { color: #22c55e; font-size: 1rem; }
.cross { color: #cbd5e1; font-size: 1rem; }
.pricing-cta { margin-top: 1.75rem; }
.service-table { width: 100%; border-collapse: collapse; border-radius: 1rem; overflow: hidden; border: 1px solid var(--border); }
.service-table th { background: var(--muted); padding: 1rem 1.25rem; text-align: center; font-weight: 700; font-size: 0.875rem; border-bottom: 1px solid var(--border); }
.service-table th:first-child { text-align: left; }
.service-table td { padding: 1rem 1.25rem; text-align: center; font-size: 0.875rem; color: var(--muted-fg); border-bottom: 1px solid var(--border); }
.service-table td:first-child { text-align: left; font-weight: 700; color: var(--fg); }
.service-table tr:last-child td { border-bottom: none; }
.service-table tr:nth-child(even) td { background: var(--muted); }
.faq-item { border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem; margin-bottom: 1rem; }
.faq-q { font-weight: 700; margin-bottom: 0.5rem; }
.faq-a { font-size: 0.9rem; color: var(--muted-fg); line-height: 1.6; }

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 740px; margin: 0 auto; }
.legal-section { margin-bottom: 2.5rem; }
.legal-section h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--fg); }
.legal-section p, .legal-section li { font-size: 0.95rem; color: var(--muted-fg); line-height: 1.8; }
.legal-section ul { list-style: disc; padding-left: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }

/* ===== REFUND PAGE ===== */
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
.service-card { background: white; border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem; text-align: center; }
.service-emoji { font-size: 2rem; margin-bottom: 0.5rem; }
.service-name { font-weight: 700; margin-bottom: 0.5rem; }
.service-price { font-size: 0.875rem; color: var(--muted-fg); }
.refund-item {
  display: flex; gap: 1rem; padding: 1.25rem; border-radius: 1rem;
  margin-bottom: 1rem;
}
.refund-item.green { background: #f0fdf4; }
.refund-item.yellow { background: #fffbeb; }
.refund-item.red { background: #fef2f2; }
.refund-item.blue { background: #eff6ff; }
.refund-icon { font-size: 1.4rem; flex-shrink: 0; padding-top: 2px; }
.refund-title { font-weight: 700; margin-bottom: 0.25rem; font-size: 0.95rem; }
.refund-desc { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; }
.steps-list { display: flex; flex-direction: column; gap: 1rem; }
.step-item { display: flex; gap: 1rem; align-items: flex-start; }
.step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--primary); color: white;
  font-size: 0.75rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.step-text { font-size: 0.925rem; color: var(--muted-fg); padding-top: 3px; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--primary); color: white;
  padding: 5rem 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 50%; height: 80%;
  background: radial-gradient(circle at 30% 60%, hsl(25,90%,55%), transparent 60%);
  opacity: 0.1;
}
.cta-section h2 { font-size: clamp(1.8rem, 3vw, 2.75rem); font-weight: 800; margin-bottom: 0.75rem; }
.cta-section p { opacity: 0.82; max-width: 550px; margin: 0 auto 2rem; font-size: 1.05rem; }

/* ===== FOOTER ===== */
.footer { background: hsl(222, 47%, 11%); color: rgba(255,255,255,0.85); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { display: flex; align-items: center; gap: 0.6rem; font-weight: 800; font-size: 1.15rem; color: white; margin-bottom: 1rem; }
.footer-brand .brand-icon { background: var(--primary); color: white; width: 32px; height: 32px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.footer-desc { font-size: 0.875rem; opacity: 0.65; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.social-link { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: background 0.2s; font-size: 0.9rem; }
.social-link:hover { background: var(--primary); }
.footer-heading { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.45; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.875rem; opacity: 0.65; transition: opacity 0.15s; }
.footer-links a:hover { opacity: 1; }
.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.25rem; }
.footer-contact-item { display: flex; gap: 0.6rem; font-size: 0.875rem; opacity: 0.65; align-items: flex-start; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.8rem; opacity: 0.4; }
.image-wrapper {display: inline-flex;gap: 20px 20px; margin-top: 20px;}
/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 1rem;
  opacity: 0; visibility: hidden; transition: opacity 0.25s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: white; border-radius: 1.25rem; width: 100%;
  max-width: 520px; max-height: 90vh; overflow-y: auto;
  padding: 2rem; position: relative;
  transform: translateY(16px); transition: transform 0.25s;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--muted); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  transition: background 0.15s;
}
.modal-close:hover { background: var(--border); }
.modal-title { font-size: 1.5rem; font-weight: 800; color: var(--primary); margin-bottom: 0.25rem; }
.modal-subtitle { font-size: 0.9rem; color: var(--muted-fg); margin-bottom: 1.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.875rem; }
.form-label { font-size: 0.85rem; font-weight: 600; color: var(--fg); }
.form-input, .form-textarea {
  width: 100%; padding: 0.6rem 0.875rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--font); font-size: 0.9rem; color: var(--fg);
  transition: border-color 0.15s;
  background: white;
}
.form-input:focus, .form-textarea:focus { outline: none; border-color: var(--primary); }
.form-textarea { resize: none; height: 90px; }
.form-actions { margin-top: 1rem; }
.success-state { text-align: center; padding: 2rem 1rem; }
.success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.success-title { font-size: 1.5rem; font-weight: 800; color: var(--primary); margin-bottom: 0.5rem; }
.success-text { color: var(--muted-fg); margin-bottom: 1.5rem; line-height: 1.6; font-size: 0.95rem; }

/* ===== BLOG POST ===== */
.blog-post-container { max-width: 780px; margin: 0 auto; padding: 4rem 1.5rem; }
.blog-post-meta { display: flex; gap: 1.5rem; font-size: 0.875rem; color: var(--muted-fg); margin: 1rem 0 2rem; }
.blog-post-image { border-radius: 1.25rem; overflow: hidden; margin-bottom: 2.5rem; height: 380px; }
.blog-post-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-post-content h2 { font-size: 1.4rem; font-weight: 700; margin: 2rem 0 0.75rem; }
.blog-post-content h3 { font-size: 1.15rem; font-weight: 700; margin: 1.5rem 0 0.5rem; }
.blog-post-content p { color: var(--muted-fg); line-height: 1.8; margin-bottom: 1rem; }
.blog-post-content ul { padding-left: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.blog-post-content li { color: var(--muted-fg); line-height: 1.7; }
.back-link { display: inline-flex; align-items: center; gap: 0.35rem; color: var(--muted-fg); font-size: 0.9rem; margin-bottom: 1.5rem; transition: color 0.15s; font-weight: 500; }
.back-link:hover { color: var(--primary); }
.related-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 1.5rem; padding-top: 2rem; border-top: 1px solid var(--border); margin-top: 3rem; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* ===== SVG ICONS ===== */
svg { vertical-align: middle; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .value-cards { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .split-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card.highlighted { transform: none; }
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .navbar-nav, .navbar-actions { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .value-cards { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}


.center {
    text-align: center;
}
.dark-title {
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: 56px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  position: relative; z-index: 1;
}
.testimonial {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column;
  height: 100%;
}
.stars {
  display: inline-flex; gap: 4px;
  color: var(--gold);
  margin-bottom: 20px;
}
.stars i { width: 16px; height: 16px; fill: currentColor; }
.quote {
  color: rgba(255,255,255,0.9);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 28px;
}
.who-name { font-weight: 700; }
.who-role { color: rgba(255,255,255,0.6); font-size: 0.875rem; }

/* Tablet */
@media (max-width: 991px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonial {
    width: 100%;
  }

  .dark-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .quote {
    font-size: 15px;
    line-height: 1.6;
  }

  .stars svg {
    width: 18px;
    height: 18px;
  }
}
