  :root {
    --primary: #0b2454;
    --primary-dark: #06183a;
    --primary-light: #1a3778;
    --accent: #ff6a00;
    --accent-dark: #e05a00;
    --dark: #0a1730;
    --gray: #5a6b7c;
    --light: #f6f8fc;
    --border: #e5eaf1;
    --white: #ffffff;
    --shadow: 0 12px 32px -12px rgba(11, 36, 84, 0.20);
    --shadow-lg: 0 24px 60px -20px rgba(11, 36, 84, 0.32);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; overflow-x: hidden; }
  body {
    font-family: 'Poppins', system-ui, sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  .serif { font-family: 'Playfair Display', Georgia, serif; }
  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
  .accent { color: var(--accent); }
  .primary { color: var(--primary); }

  /* Topbar */
  .topbar {
    background: var(--primary-dark);
    color: #d7e2f5;
    font-size: 13px;
    padding: 8px 0;
  }
  .topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
  .topbar a { color: #fff; }
  .topbar-info { display: flex; gap: 22px; flex-wrap: wrap; }
  .topbar-info span { display: inline-flex; align-items: center; gap: 6px; }

  /* Header */
  header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
  }
  .header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
  .brand { display: flex; align-items: center; gap: 12px; }
  .brand-logo {
    height: 56px;
    display: block;
    transition: transform .3s ease;
  }
  .brand-logo:hover { transform: scale(1.02); }
  .brand-mark {
    width: 54px; height: 54px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 4px;
  }
  .brand-mark img { width: 100%; height: 100%; object-fit: contain; }
  .brand-text .name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--primary); line-height: 1.1; }
  .brand-text .name span { color: var(--accent); }
  .brand-text .sub { font-size: 10px; letter-spacing: 0.15em; color: var(--gray); text-transform: uppercase; margin-top: 2px; }
  nav ul { display: flex; gap: 30px; list-style: none; }
  nav a { font-weight: 500; font-size: 15px; color: var(--dark); position: relative; padding: 8px 0; transition: color .2s ease; }
  nav a:hover { color: var(--primary); }
  nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--accent); transition: right .3s ease; }
  nav a:hover::after { right: 0; }
  .header-cta { display: flex; align-items: center; gap: 12px; }
  .btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: 15px; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; cursor: pointer; border: none; }
  .btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 24px -10px rgba(255,122,0,.5); }
  .btn-primary:hover { transform: translateY(-2px); background: var(--accent-dark); }
  .btn-outline { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
  .btn-outline:hover { background: var(--primary); color: #fff; }
  .btn-white { background: #fff; color: var(--primary); }
  .btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
  .btn-whatsapp { background: #25D366; color: #fff; }
  .btn-whatsapp:hover { transform: translateY(-2px); background: #1eb857; }
  .hamburger { display: none; background: transparent; border: none; cursor: pointer; padding: 8px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); margin: 5px 0; transition: transform .25s ease; }

  /* Hero */
  .hero {
    position: relative;
    background: linear-gradient(135deg, #f6f9ff 0%, #fff 60%);
    overflow: hidden;
    padding: 80px 0 100px;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -200px; left: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(11, 61, 145, 0.10) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
  }
  .hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px; align-items: center; }
  .badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; background: rgba(11, 61, 145, 0.08); color: var(--primary); border-radius: 999px; font-size: 13px; font-weight: 600; letter-spacing: 0.05em; }
  .hero h1 { font-family: 'Playfair Display', serif; font-size: 60px; line-height: 1.05; font-weight: 800; color: var(--dark); margin: 24px 0 20px; }
  .hero h1 span { color: var(--primary); position: relative; }
  .hero h1 span::after { content: ''; position: absolute; left: 0; right: 0; bottom: 4px; height: 10px; background: rgba(255, 122, 0, 0.25); z-index: -1; }
  .hero p.lead { font-size: 17px; color: var(--gray); max-width: 560px; margin-bottom: 32px; }
  .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
  .hero-trust { display: flex; gap: 32px; flex-wrap: wrap; }
  .trust-item { display: flex; align-items: center; gap: 12px; }
  .trust-icon { width: 42px; height: 42px; border-radius: 12px; background: rgba(11, 61, 145, 0.08); color: var(--primary); display: flex; align-items: center; justify-content: center; }
  .trust-text .t1 { font-weight: 700; font-size: 15px; color: var(--dark); }
  .trust-text .t2 { font-size: 12px; color: var(--gray); }

  .hero-visual { position: relative; }
  .hero-image {
    border-radius: 24px; overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
    background: #eef2f8;
  }
  .hero-image img { width: 100%; height: 100%; object-fit: cover; }
  .hero-card {
    position: absolute; left: -32px; bottom: 40px;
    background: #fff; padding: 18px 22px; border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 14px;
    max-width: 260px;
  }
  .hero-card .k { font-size: 28px; font-weight: 800; color: var(--primary); font-family: 'Playfair Display', serif; }
  .hero-card .v { font-size: 12px; color: var(--gray); }
  .hero-card2 {
    position: absolute; right: -20px; top: 30px;
    background: var(--primary); color: #fff; padding: 16px 20px; border-radius: 14px;
    display: flex; align-items: center; gap: 10px;
    box-shadow: var(--shadow-lg);
  }
  .hero-card2 .num { font-size: 15px; font-weight: 700; }

  /* Marquee / Trust strip */
  .strip {
    background: var(--primary);
    padding: 24px 0;
    color: #fff;
  }
  .strip-inner { display: flex; gap: 60px; flex-wrap: wrap; justify-content: space-around; align-items: center; }
  .strip-item { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; }
  .strip-item svg { color: var(--accent); }

  /* Section common */
  section { padding: 90px 0; }
  .section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
  .section-head .badge { margin-bottom: 18px; }
  .section-head h2 { font-family: 'Playfair Display', serif; font-size: 44px; line-height: 1.1; color: var(--dark); margin-bottom: 18px; font-weight: 700; }
  .section-head p { color: var(--gray); font-size: 16px; }

  /* Services */
  .services { background: var(--light); }
  .service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .service-card {
    background: #fff; border-radius: 18px; overflow: hidden;
    box-shadow: 0 4px 20px -10px rgba(0,0,0,0.08);
    transition: transform .35s ease, box-shadow .35s ease;
    border: 1px solid var(--border);
  }
  .service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
  .service-img { aspect-ratio: 4/3; overflow: hidden; background: #eef2f8; }
  .service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
  .service-card:hover .service-img img { transform: scale(1.08); }
  .service-body { padding: 22px; }
  .service-icon { width: 44px; height: 44px; background: rgba(255,122,0,0.12); color: var(--accent); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
  .service-body h3 { font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 8px; color: var(--dark); }
  .service-body p { font-size: 14px; color: var(--gray); }

  /* About */
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .about-visual { position: relative; }
  .about-img-main { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; background: #eef2f8; }
  .about-img-main img { width: 100%; height: 100%; object-fit: cover; }
  .about-img-second {
    position: absolute; right: -30px; bottom: -30px;
    width: 55%; aspect-ratio: 4/5;
    border-radius: 18px; overflow: hidden;
    border: 6px solid #fff;
    box-shadow: var(--shadow-lg);
    background: #eef2f8;
  }
  .about-img-second img { width: 100%; height: 100%; object-fit: cover; }
  .about-content h2 { font-family: 'Playfair Display', serif; font-size: 42px; line-height: 1.1; margin: 16px 0 20px; }
  .about-content > p { color: var(--gray); margin-bottom: 28px; }
  .about-features { list-style: none; display: grid; gap: 14px; margin-bottom: 32px; }
  .about-features li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; }
  .about-features .check { width: 24px; height: 24px; border-radius: 999px; background: var(--accent); color: #fff; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
  .stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 30px; padding-top: 30px; border-top: 1px solid var(--border); }
  .stat .num { font-family: 'Playfair Display', serif; font-size: 34px; color: var(--primary); font-weight: 700; }
  .stat .lbl { font-size: 13px; color: var(--gray); }

  /* Gallery */
  .gallery { background: var(--light); }
  .gallery-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
  .gallery-item { border-radius: 14px; overflow: hidden; aspect-ratio: 3/4; background: #eef2f8; position: relative; cursor: pointer; }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
  .gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(11,27,42,0.75) 100%); opacity: 0; transition: opacity .3s ease; }
  .gallery-item:hover img { transform: scale(1.08); }
  .gallery-item:hover::after { opacity: 1; }
  .gallery-item .lbl { position: absolute; left: 14px; bottom: 14px; color: #fff; font-weight: 500; font-size: 13px; z-index: 2; opacity: 0; transform: translateY(6px); transition: all .3s ease; }
  .gallery-item:hover .lbl { opacity: 1; transform: translateY(0); }

  /* Testimonials */
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .t-card { background: #fff; border-radius: 18px; padding: 32px; border: 1px solid var(--border); box-shadow: 0 4px 20px -10px rgba(0,0,0,0.06); transition: transform .3s ease, box-shadow .3s ease; }
  .t-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
  .t-card .stars { color: var(--accent); font-size: 18px; letter-spacing: 3px; margin-bottom: 14px; }
  .t-card h4 { font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 12px; }
  .t-card p { color: var(--gray); font-size: 14px; margin-bottom: 18px; }
  .t-author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--border); }
  .t-avatar { width: 44px; height: 44px; border-radius: 999px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; }
  .t-author .n { font-weight: 600; font-size: 14px; }
  .t-author .r { font-size: 12px; color: var(--gray); }

  /* Why choose */
  .why { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: #fff; position: relative; overflow: hidden; }
  .why::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,122,0,0.2) 0%, transparent 70%); border-radius: 50%; }
  .why .section-head h2 { color: #fff; }
  .why .section-head p { color: #b7c9e6; }
  .why .badge { background: rgba(255,255,255,0.15); color: #fff; }
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 1; }
  .why-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 18px; padding: 32px; backdrop-filter: blur(8px); transition: transform .3s ease, background .3s ease; }
  .why-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.12); }
  .why-card .ic { width: 56px; height: 56px; border-radius: 14px; background: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
  .why-card h4 { font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 10px; }
  .why-card p { color: #c8d5e8; font-size: 14px; }

  /* Contact */
  .contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; }
  .contact-info h3 { font-family: 'Playfair Display', serif; font-size: 32px; margin-bottom: 16px; }
  .contact-info > p { color: var(--gray); margin-bottom: 32px; }
  .contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; padding: 18px; background: var(--light); border-radius: 14px; transition: transform .3s ease; }
  .contact-item:hover { transform: translateX(4px); }
  .contact-item .ic { width: 44px; height: 44px; background: var(--primary); color: #fff; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .contact-item .lbl { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); }
  .contact-item .val { font-weight: 600; color: var(--dark); font-size: 15px; }
  .contact-form {
    background: #fff; border-radius: 22px; padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
  }
  .contact-form h3 { font-family: 'Playfair Display', serif; font-size: 26px; margin-bottom: 6px; }
  .contact-form .sub { color: var(--gray); margin-bottom: 24px; font-size: 14px; }
  .field { margin-bottom: 16px; }
  .field label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; color: var(--dark); }
  .field input, .field select, .field textarea {
    width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 12px; font-family: inherit; font-size: 14px; transition: border-color .2s ease, box-shadow .2s ease; background: #fff;
  }
  .field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(11,61,145,0.12); }
  .field textarea { resize: vertical; min-height: 90px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

  /* Footer */
  footer { background: var(--dark); color: #b7c9e6; padding: 70px 0 24px; }
  .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
  footer h5 { color: #fff; font-family: 'Playfair Display', serif; font-size: 18px; margin-bottom: 18px; }
  footer ul { list-style: none; }
  footer ul li { margin-bottom: 10px; }
  footer ul a { font-size: 14px; color: #b7c9e6; transition: color .2s ease; }
  footer ul a:hover { color: var(--accent); }
  .footer-brand p { font-size: 14px; margin: 14px 0 20px; }
  .footer-social { display: flex; gap: 10px; }
  .footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: background .25s ease; color: #fff; }
  .footer-social a:hover { background: var(--accent); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 13px; }

  /* WA float */
  .wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 60px; height: 60px; border-radius: 999px; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 14px 30px -8px rgba(37,211,102,0.6); transition: transform .25s ease; }
  .wa-float:hover { transform: scale(1.08); }
  .wa-float::after { content: ''; position: absolute; inset: 0; border-radius: 999px; border: 2px solid #25D366; animation: pulse 1.8s infinite; }
  @keyframes pulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.6); opacity: 0; } }

  /* Toast */
  .toast { position: fixed; top: 100px; right: 22px; background: #0d1b2a; color: #fff; padding: 14px 22px; border-radius: 12px; box-shadow: var(--shadow-lg); transform: translateX(400px); transition: transform .35s ease; z-index: 100; font-size: 14px; }
  .toast.show { transform: translateX(0); }

  /* Mobile menu (hidden by default; only visible on small screens) */
  .mobile-menu { display: none; }
  .backdrop { display: none; }

  /* Reveal animations */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }

  /* Responsive */
  @media (max-width: 1024px) {
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .hero h1 { font-size: 46px; }
    .section-head h2, .about-content h2, .contact-info h3 { font-size: 34px; }
  }
  @media (max-width: 820px) {
    nav, .header-cta .btn { display: none; }
    .hamburger { display: block; }
    .brand-logo { height: 44px; }
    .hero { padding: 60px 0 80px; }
    .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero h1 { font-size: 36px; }
    .testimonials-grid, .why-grid, .footer-grid { grid-template-columns: 1fr; }
    .footer-grid { gap: 30px; }
    .stats-row { grid-template-columns: 1fr 1fr 1fr; }
    section { padding: 60px 0; }
    .hero-card, .hero-card2 { display: none; }
    .about-img-second { position: static; width: 100%; margin-top: 16px; border: none; }
    .strip-inner { justify-content: center; gap: 28px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 28px; }
    /* Mobile menu */
    .mobile-menu { display: block; position: fixed; top: 0; right: 0; bottom: 0; width: 80%; max-width: 320px; background: #fff; box-shadow: -20px 0 40px rgba(0,0,0,0.1); padding: 90px 30px 30px; transform: translateX(100%); transition: transform .3s ease; z-index: 70; }
    .mobile-menu.open { transform: translateX(0); }
    .mobile-menu ul { list-style: none; }
    .mobile-menu li { margin-bottom: 18px; }
    .mobile-menu a { font-size: 17px; font-weight: 500; }
    .mobile-menu .btn { width: 100%; justify-content: center; margin-top: 20px; }
    .backdrop { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 65; }
    .backdrop.show { display: block; }
  }
  @media (max-width: 560px) {
    .service-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-row { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 32px; }
    .topbar-info { justify-content: center; text-align: center; }
  }

/* ====== SUB-PAGE STYLES ====== */

/* Sub hero */
.subhero {
  background: linear-gradient(135deg, #f6f9ff 0%, #fff 60%);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.subhero::before {
  content: ''; position: absolute; top: -100px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,106,0,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.subhero .container { position: relative; z-index: 1; text-align: center; }
.subhero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px; line-height: 1.05; font-weight: 800; color: var(--dark);
  margin: 20px 0 14px;
}
.subhero p { color: var(--gray); font-size: 17px; max-width: 640px; margin: 0 auto 20px; }
.crumbs { display: inline-flex; align-items: center; gap: 10px; color: var(--gray); font-size: 14px; }
.crumbs a { color: var(--primary); font-weight: 600; }
.crumbs a:hover { color: var(--accent); }

/* Service link */
.service-link {
  display: inline-block; margin-top: 12px; color: var(--accent);
  font-weight: 600; font-size: 14px; transition: color .2s ease;
}
.service-link:hover { color: var(--primary); }

/* Mission section */
.mission { padding: 90px 0; background: var(--light); }
.mission-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.mission-grid h2 { font-family: 'Playfair Display', serif; font-size: 40px; line-height: 1.1; margin: 16px 0 20px; }
.mission-grid p { color: var(--gray); margin-bottom: 14px; }
.mission-values { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.value-card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 24px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.v-num { font-family: 'Playfair Display', serif; color: var(--accent); font-size: 26px; font-weight: 800; margin-bottom: 8px; }
.value-card h4 { font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 8px; }
.value-card p { color: var(--gray); font-size: 14px; }

/* Process */
.process { padding: 90px 0; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.process-card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 28px;
  position: relative; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease;
}
.process-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.p-num {
  font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 800;
  color: rgba(11, 36, 84, 0.10); line-height: 1; margin-bottom: 8px;
}
.process-card h4 { font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 6px; color: var(--dark); }
.process-card p { color: var(--gray); font-size: 14px; }

/* Area grid */
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.area-card {
  background: var(--light); border: 1px solid var(--border); border-radius: 16px; padding: 26px;
  transition: transform .3s ease, background .3s ease;
}
.area-card:hover { transform: translateY(-4px); background: #fff; box-shadow: var(--shadow); }
.area-card h4 { font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 8px; color: var(--primary); }
.area-card p { color: var(--gray); font-size: 14px; }

/* Pricing */
.pricing { padding: 90px 0; background: var(--light); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card {
  background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 32px;
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative; text-align: center;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.featured { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-6px); }
.p-tag {
  display: inline-block; padding: 4px 14px; border-radius: 999px;
  background: rgba(255,106,0,0.10); color: var(--accent);
  font-size: 12px; font-weight: 600; letter-spacing: 0.05em; margin-bottom: 14px;
}
.price-card h4 { font-family: 'Playfair Display', serif; font-size: 24px; margin-bottom: 8px; }
.price { font-family: 'Playfair Display', serif; font-size: 30px; color: var(--primary); font-weight: 800; margin-bottom: 20px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 22px; text-align: left; }
.price-card li {
  padding: 8px 0; padding-left: 26px; position: relative; color: var(--gray); font-size: 14px;
  border-bottom: 1px dashed var(--border);
}
.price-card li:last-child { border-bottom: none; }
.price-card li::before {
  content: '✓'; position: absolute; left: 0; top: 8px;
  color: var(--accent); font-weight: 800;
}
.price-card .btn { width: 100%; justify-content: center; }
.pricing-note { text-align: center; color: var(--gray); font-size: 13px; margin-top: 24px; }

/* CTA block */
.cta-block { padding: 60px 0; }
.cta-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-radius: 22px;
  padding: 44px 50px;
  display: grid; grid-template-columns: 1.4fr 1fr;
  align-items: center; gap: 30px;
  position: relative; overflow: hidden;
}
.cta-card::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,106,0,0.25) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-card h2 { font-family: 'Playfair Display', serif; font-size: 30px; line-height: 1.15; margin-bottom: 8px; }
.cta-card p { color: #b7c9e6; font-size: 15px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; z-index: 1; position: relative; }

/* Map + FAQ */
.mapblock { padding: 90px 0; background: var(--light); }
.map-wrap {
  border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 21/9; background: #eef2f8;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

.faq { padding: 90px 0; }
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 6px 22px;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.faq-item[open] { box-shadow: var(--shadow); border-color: rgba(11, 36, 84, 0.15); }
.faq-item summary {
  padding: 16px 0; cursor: pointer; font-weight: 600; color: var(--dark);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 10px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; color: var(--accent); font-size: 22px; font-weight: 400;
  transition: transform .3s ease;
}
.faq-item[open] summary::after { content: '−'; transform: rotate(0deg); }
.faq-item p { color: var(--gray); font-size: 14px; padding: 0 0 16px; }

/* Active nav */
nav a.active { color: var(--primary); }
nav a.active::after { right: 0; }

@media (max-width: 1024px) {
  .mission-values, .area-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .subhero h1 { font-size: 40px; }
  .mission-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .subhero { padding: 50px 0 40px; }
  .subhero h1 { font-size: 32px; }
  .mission-values, .area-grid, .process-grid { grid-template-columns: 1fr; }
  .cta-card { grid-template-columns: 1fr; padding: 32px 26px; text-align: center; }
  .cta-actions { justify-content: center; }
  .cta-card h2 { font-size: 24px; }
  .map-wrap { aspect-ratio: 4/3; }
}

