:root {
    --bg: #f6f4ee;
    --bg-2: #ece8df;
    --surface: rgba(255,255,255,0.72);
    --surface-strong: rgba(255,255,255,0.9);
    --text: #162317;
    --muted: #617067;
    --line: rgba(22,35,23,0.10);
    --green: #245a3c;
    --green-soft: #d9e8dc;
    --gold: #b08a47;
    --leaf: #6c8f72;
    --shadow: 0 20px 60px rgba(36, 90, 60, 0.10);
    --shadow-soft: 0 14px 35px rgba(36, 90, 60, 0.08);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --max: 1220px;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #f7f5ef 0%, #f3efe7 100%);
    line-height: 1.65;
    overflow-x: hidden;
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(rgba(22,35,23,0.022) 1px, transparent 1px),
      linear-gradient(90deg, rgba(22,35,23,0.022) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
    pointer-events: none;
    z-index: -2;
  }

  a { color: inherit; text-decoration: none; }
  img, svg { max-width: 100%; display: block; }

  .container {
    width: min(92%, var(--max));
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .section { padding: 110px 0; position: relative; overflow: hidden; }
  .section > .container { position: relative; z-index: 2; }

  .section-hero {
    background:
      radial-gradient(circle at 10% 18%, rgba(217,232,220,0.9), transparent 22%),
      radial-gradient(circle at 88% 14%, rgba(176,138,71,0.10), transparent 18%),
      linear-gradient(180deg, #f7f5ef 0%, #f2eee5 100%);
  }

  .section-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(247,245,239,0) 0%, rgba(237,245,239,0.65) 100%);
    z-index: 1;
    pointer-events: none;
  }

  .section-services {
    background:
      radial-gradient(circle at 85% 15%, rgba(36,90,60,0.08), transparent 18%),
      radial-gradient(circle at 12% 82%, rgba(108,143,114,0.10), transparent 22%),
      linear-gradient(180deg, #edf4ef 0%, #e7efe8 100%);
  }

  .section-services::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent 45%);
    z-index: 1;
    pointer-events: none;
  }

  .section-about {
    background:
      radial-gradient(circle at 14% 18%, rgba(255,255,255,0.55), transparent 20%),
      radial-gradient(circle at 82% 72%, rgba(176,138,71,0.10), transparent 20%),
      linear-gradient(180deg, #f5f1e8 0%, #efe8db 100%);
  }

  .section-about::before {
    content: "";
    position: absolute;
    right: -80px;
    top: 40px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(176,138,71,0.12), transparent 68%);
    z-index: 1;
    pointer-events: none;
  }

  .section-process {
    background:
      radial-gradient(circle at 85% 18%, rgba(217,232,220,0.55), transparent 18%),
      radial-gradient(circle at 20% 78%, rgba(36,90,60,0.06), transparent 22%),
      linear-gradient(180deg, #eef3f0 0%, #e6edeb 100%);
  }

  .section-process::after {
    content: "";
    position: absolute;
    left: -60px;
    bottom: -40px;
    width: 260px;
    height: 260px;
    border-radius: 40px;
    transform: rotate(18deg);
    background: linear-gradient(135deg, rgba(36,90,60,0.06), rgba(255,255,255,0.12));
    z-index: 1;
    pointer-events: none;
  }

  .section-cta {
    background:
      radial-gradient(circle at 16% 24%, rgba(176,138,71,0.10), transparent 20%),
      radial-gradient(circle at 80% 24%, rgba(217,232,220,0.75), transparent 24%),
      linear-gradient(180deg, #f2ede4 0%, #ece6da 100%);
  }

  .section-contact {
    background:
      radial-gradient(circle at 88% 18%, rgba(36,90,60,0.08), transparent 18%),
      radial-gradient(circle at 10% 86%, rgba(108,143,114,0.10), transparent 22%),
      linear-gradient(180deg, #edf3ef 0%, #e7eeea 100%);
  }

  .section-contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.10), transparent 40%);
    z-index: 1;
    pointer-events: none;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.64);
    border: 1px solid rgba(36,90,60,0.10);
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
  }

  .eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--green));
    box-shadow: 0 0 0 6px rgba(176,138,71,0.10);
  }

  .section-head {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: end;
    margin-bottom: 52px;
    flex-wrap: wrap;
  }

  .section-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    max-width: 760px;
    font-weight: 700;
  }

  .section-head p {
    max-width: 520px;
    color: var(--muted);
    font-size: 17px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 15px;
    transition: 0.28s ease;
    cursor: pointer;
  }

  .btn-primary {
    background: linear-gradient(135deg, #214f36 0%, #2d6a47 100%);
    color: #fff;
    box-shadow: 0 18px 34px rgba(36,90,60,0.16);
  }

  .btn-primary:hover { transform: translateY(-2px); }

  .btn-secondary {
    background: rgba(255,255,255,0.72);
    border-color: rgba(36,90,60,0.12);
    color: var(--green);
    backdrop-filter: blur(12px);
  }

  .btn-secondary:hover {
    background: rgba(255,255,255,0.92);
    border-color: rgba(36,90,60,0.18);
  }

  header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(246,244,238,0.72);
    border-bottom: 1px solid rgba(36,90,60,0.08);
    backdrop-filter: blur(16px);
  }

  .nav {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -0.03em;
    color: var(--green);
  }

  .logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #d8e6db, #f6eee0);
    border: 1px solid rgba(36,90,60,0.10);
    box-shadow: var(--shadow-soft);
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--green);
  }

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

  .nav-links a {
    color: #2f4134;
    font-weight: 600;
    font-size: 15px;
    position: relative;
  }

  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 1.8px;
    background: linear-gradient(90deg, var(--gold), var(--green));
    transition: 0.25s ease;
  }

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

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(36,90,60,0.12);
    background: rgba(255,255,255,0.78);
    box-shadow: var(--shadow-soft);
    padding: 0;
    cursor: pointer;
    position: relative;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--green);
    border-radius: 999px;
    transition: 0.25s ease;
    display: block;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(246,244,238,0.96);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(36,90,60,0.08);
  }

  .mobile-menu.open {
    max-height: 420px;
  }

  .mobile-menu-inner {
    display: grid;
    gap: 10px;
    padding: 18px 0 22px;
  }

  .mobile-menu a {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(36,90,60,0.08);
    color: #2f4134;
    font-weight: 600;
  }

  .mobile-menu-btn {
    margin-top: 6px;
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 78px 0 60px;
    position: relative;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 36px;
    align-items: center;
  }

  .hero-copy {
    min-width: 0;
    position: relative;
    z-index: 3;
  }

  .hero-copy h1 {
    margin: 20px 0 20px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(50px, 7vw, 88px);
    line-height: 0.95;
    letter-spacing: -0.05em;
    font-weight: 700;
    max-width: 760px;
    text-wrap: balance;
  }

  .hero-copy h1 span {
    color: var(--green);
    position: relative;
  }

  .hero-copy h1 span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 100%;
    height: 12px;
    background: rgba(176,138,71,0.20);
    z-index: -1;
    border-radius: 999px;
  }

  .hero-copy p {
    color: var(--muted);
    font-size: 18px;
    max-width: 620px;
    margin-bottom: 30px;
  }

  .hero-trust-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 8px;
    max-width: 640px;
  }

  .hero-mini-card {
    padding: 18px 18px;
    border-radius: 22px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(36,90,60,0.08);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
  }

  .hero-mini-card strong {
    display: block;
    color: var(--green);
    font-size: 15px;
    margin-bottom: 6px;
  }

  .hero-mini-card span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
  }

  .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
  }

  .hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-tags span {
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(36,90,60,0.10);
    color: #314236;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-soft);
  }

  .hero-visual {
    position: relative;
    min-height: 640px;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    border-radius: 42px;
  }

  .hero-showcase {
    isolation: isolate;
  }

  .hero-frame {
    position: absolute;
    inset: 18px;
    border-radius: 42px;
    background: linear-gradient(145deg, rgba(255,255,255,0.58), rgba(255,255,255,0.20));
    border: 1px solid rgba(255,255,255,0.55);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
    z-index: 1;
  }

  .hero-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
    z-index: 0;
    pointer-events: none;
  }

  .hero-orb-1 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(217,232,220,0.95), rgba(217,232,220,0));
    top: -10px;
    right: 20px;
  }

  .hero-orb-2 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(176,138,71,0.18), rgba(176,138,71,0));
    bottom: 30px;
    left: -10px;
  }

  .hero-orb-3 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(108,143,114,0.28), rgba(108,143,114,0));
    top: 180px;
    left: 40px;
  }

  .hero-glass-card {
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(255,255,255,0.65);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
  }

  .hero-main-card {
    position: absolute;
    left: 42px;
    right: 42px;
    top: 52px;
    padding: 28px;
    border-radius: 30px;
    z-index: 2;
  }

  .hero-card-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
  }

  .hero-card-top small,
  .hero-floating-card small {
    display: inline-block;
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .hero-card-top h3 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    line-height: 1.08;
    color: #1f3025;
    max-width: 440px;
  }

  .hero-chip {
    white-space: nowrap;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(245,241,232,0.92);
    color: var(--green);
    border: 1px solid rgba(36,90,60,0.10);
    font-size: 12px;
    font-weight: 700;
  }

  .hero-main-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 16px;
  }

  .hero-chart-card,
  .hero-metric-card,
  .hero-floating-card {
    border-radius: 24px;
    background: rgba(248,248,244,0.82);
    border: 1px solid rgba(36,90,60,0.08);
  }

  .hero-chart-card {
    padding: 20px;
  }

  .hero-chart-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 12px;
    margin-bottom: 18px;
  }

  .hero-chart-head span {
    color: #314136;
    font-size: 14px;
    font-weight: 600;
  }

  .hero-chart-head strong {
    color: var(--green);
    font-size: 28px;
    line-height: 1;
  }

  .hero-bars {
    display: grid;
    gap: 14px;
  }

  .hero-bar-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
    gap: 12px;
  }

  .hero-bar-row label {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
  }

  .hero-bar {
    height: 10px;
    border-radius: 999px;
    background: rgba(36,90,60,0.08);
    overflow: hidden;
  }

  .hero-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #8ead92, #245a3c);
  }

  .hero-metric-stack {
    display: grid;
    gap: 12px;
  }

  .hero-metric-card {
    padding: 16px;
  }

  .hero-metric-card strong {
    display: block;
    color: var(--green);
    font-size: 28px;
    line-height: 1;
    margin-bottom: 6px;
  }

  .hero-metric-card span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
  }

  .hero-floating-card {
    position: absolute;
    padding: 16px 18px;
    max-width: 220px;
    z-index: 3;
  }

  .hero-floating-card p {
    color: #314136;
    font-size: 13px;
    line-height: 1.55;
  }

  .hero-floating-left {
    left: 0;
    bottom: 48px;
  }

  .hero-floating-right {
    right: 6px;
    top: 110px;
  }

  .shape-bg {
    display: none;
  }

  .hero-panel {
    display: none;
  }

  

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

  .service-card {
    position: relative;
    padding: 30px;
    border-radius: 28px;
    background: rgba(255,255,255,0.74);
    border: 1px solid rgba(36,90,60,0.09);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
  }

  .service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(217,232,220,0.22), transparent 40%);
    pointer-events: none;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(36,90,60,0.12);
  }

  .service-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: linear-gradient(135deg, #e2efe4, #f6efe1);
    color: var(--green);
    border: 1px solid rgba(36,90,60,0.08);
    margin-bottom: 18px;
    box-shadow: var(--shadow-soft);
    padding: 14px;
  }

  .service-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .service-card h3 {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #203226;
  }

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

  .about-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 24px;
    align-items: stretch;
  }

  .about-card,
  .about-card-soft {
    padding: 34px;
    border-radius: 30px;
    background: rgba(255,255,255,0.74);
    border: 1px solid rgba(36,90,60,0.08);
    box-shadow: var(--shadow-soft);
  }

  .about-card-soft {
    background:
      radial-gradient(circle at 10% 10%, rgba(217,232,220,0.85), transparent 30%),
      linear-gradient(145deg, rgba(255,255,255,0.86), rgba(247,244,236,0.9));
  }

  .about-card h3,
  .about-card-soft h3 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    line-height: 1.1;
    margin-bottom: 14px;
    color: #1f3025;
  }

  .about-card p,
  .about-card-soft p {
    color: var(--muted);
    margin-bottom: 18px;
  }

  .feature-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-top: 20px;
  }

  .feature-list li {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(248,248,244,0.86);
    border: 1px solid rgba(36,90,60,0.08);
    color: #2d4032;
    font-weight: 600;
  }

  .stats-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 26px;
  }

  .stat-card {
    text-align: center;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(36,90,60,0.08);
    box-shadow: var(--shadow-soft);
  }

  .stat-card strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    line-height: 1;
    color: var(--green);
    margin-bottom: 6px;
  }

  .stat-card span {
    color: var(--muted);
    font-weight: 600;
    font-size: 14px;
  }

  .process-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .process-card {
    position: relative;
    padding: 30px;
    border-radius: 28px;
    background: rgba(255,255,255,0.74);
    border: 1px solid rgba(36,90,60,0.08);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
  }

  .process-number {
    position: absolute;
    top: 14px;
    right: 18px;
    font-family: 'Playfair Display', serif;
    font-size: 74px;
    line-height: 1;
    color: rgba(36,90,60,0.08);
  }

  .process-card h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #203226;
    position: relative;
    z-index: 1;
  }

  .process-card p {
    color: var(--muted);
    position: relative;
    z-index: 1;
  }

  .cta-shell {
    padding: 12px;
    border-radius: 38px;
    background: linear-gradient(135deg, rgba(36,90,60,0.18), rgba(176,138,71,0.15), rgba(217,232,220,0.3));
    box-shadow: var(--shadow);
  }

  .cta-box {
    padding: 44px;
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(246,243,236,0.92));
    border: 1px solid rgba(36,90,60,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }

  .cta-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.06;
    margin-bottom: 8px;
    max-width: 760px;
    color: #1f3025;
  }

  .cta-box p {
    color: var(--muted);
    max-width: 720px;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
  }

  .contact-card,
  .contact-form {
    padding: 34px;
    border-radius: 30px;
    background: rgba(255,255,255,0.74);
    border: 1px solid rgba(36,90,60,0.08);
    box-shadow: var(--shadow-soft);
  }

  .contact-card h3,
  .contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    line-height: 1.1;
    margin-bottom: 10px;
    color: #1f3025;
  }

  .contact-card p,
  .contact-form p {
    color: var(--muted);
  }

  .contact-list {
    list-style: none;
    display: grid;
    gap: 16px;
    margin-top: 24px;
  }

  .contact-list li {
    padding: 18px;
    border-radius: 20px;
    background: rgba(248,248,244,0.9);
    border: 1px solid rgba(36,90,60,0.08);
  }

  .contact-list strong {
    display: block;
    margin-bottom: 6px;
    color: var(--green);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .contact-list span { color: #314136; }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .field { margin-top: 18px; }

  .field label {
    display: block;
    margin-bottom: 8px;
    color: #24372a;
    font-weight: 700;
    font-size: 14px;
  }

  .field input,
  .field textarea,
  .field select {
    width: 100%;
    padding: 15px 16px;
    border-radius: 18px;
    border: 1px solid rgba(36,90,60,0.10);
    background: rgba(255,255,255,0.86);
    color: var(--text);
    font: inherit;
    outline: none;
    transition: 0.25s ease;
  }

  .field input:focus,
  .field textarea:focus,
  .field select:focus {
    border-color: rgba(36,90,60,0.25);
    box-shadow: 0 0 0 5px rgba(217,232,220,0.55);
    background: rgba(255,255,255,0.98);
  }

  .field select {
    appearance: none;
    cursor: pointer;
  }

  .field textarea {
    min-height: 145px;
    resize: vertical;
  }

  .form-status {
    display: none;
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
  }

  .form-status.success {
    display: block;
    background: rgba(217,232,220,0.85);
    color: var(--green);
    border: 1px solid rgba(36,90,60,0.12);
  }

  .form-status.error {
    display: block;
    background: rgba(255,244,230,0.9);
    color: #8a5a16;
    border: 1px solid rgba(176,138,71,0.20);
  }

  footer {
    padding: 28px 0 50px;
    color: var(--muted);
    background: linear-gradient(180deg, #e7eeea 0%, #e0e8e3 100%);
  }

  .footer-wrap {
    padding-top: 24px;
    border-top: 1px solid rgba(36,90,60,0.08);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }

  .footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
  }

  .footer-links a:hover { color: var(--green); }

  .whatsapp-container{
    position:fixed;
    bottom:24px;
    right:24px;
    z-index:999;
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:8px;
    }
    
    .whatsapp-tooltip{
    background:white;
    color:#333;
    padding:8px 12px;
    border-radius:8px;
    font-size:13px;
    box-shadow:0 6px 18px rgba(0,0,0,0.15);
    animation:fadeInUp 0.6s ease;
    }
    
    .whatsapp-float{
    width:60px;
    height:60px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
    transition:0.3s;
    }
    
    .whatsapp-float svg{
    width:28px;
    height:28px;
    fill:white;
    }
    
    .whatsapp-float:hover{
    transform:scale(1.1);
    }
    
    @keyframes fadeInUp{
    from{
    opacity:0;
    transform:translateY(10px);
    }
    to{
    opacity:1;
    transform:translateY(0);
    }
    }

  @media (max-width: 1100px) {
    .hero-grid,
    .about-grid,
    .contact-grid {
      grid-template-columns: 1fr;
    }

    .services-grid,
    .process-wrap { grid-template-columns: repeat(2, 1fr); }
    .stats-band { grid-template-columns: repeat(2, 1fr); }

    .hero-visual {
      min-height: 560px;
      max-width: 100%;
      margin: 0 auto;
    }

    .hero-main-card {
      left: 28px;
      right: 28px;
      top: 36px;
    }

    .hero-floating-left {
      left: 12px;
      bottom: 18px;
    }

    .hero-floating-right {
      right: 16px;
      top: auto;
      bottom: 18px;
    }
  

    .services-grid,
    .process-wrap { grid-template-columns: repeat(2, 1fr); }
    .stats-band { grid-template-columns: repeat(2, 1fr); }
    .hero-visual { min-height: 520px; max-width: 680px; margin: 0 auto; }
    .floating-note { left: 24px; bottom: 18px; }
  }

  @media (max-width: 768px) {
    .nav-links,
    .nav-cta { display: none; }
    .menu-toggle { display: inline-flex; }
    .section { padding: 80px 0; }
    .hero { padding: 48px 0 40px; }
    .services-grid,
    .process-wrap,
    .stats-band,
    .form-grid { grid-template-columns: 1fr; }
    .hero-grid { gap: 28px; }
    .hero-copy h1 {
      font-size: clamp(40px, 12vw, 58px);
      line-height: 0.98;
      margin: 16px 0 16px;
    }
    .hero-copy p {
      font-size: 16px;
      margin-bottom: 24px;
    }
    .hero-actions {
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
    }
    .hero-actions .btn { width: 100%; }

    .hero-trust-row {
      grid-template-columns: 1fr;
    }

    .hero-visual {
      min-height: auto;
      border-radius: 28px;
    }

    .hero-frame {
      inset: 0;
      border-radius: 28px;
    }

    .hero-main-card {
      position: relative;
      left: auto;
      right: auto;
      top: auto;
      margin: 16px;
      padding: 22px;
      border-radius: 24px;
    }

    .hero-card-top {
      flex-direction: column;
      align-items: flex-start;
    }

    .hero-card-top h3 {
      font-size: 24px;
      max-width: none;
    }

    .hero-main-grid {
      grid-template-columns: 1fr;
    }

    .hero-bar-row {
      grid-template-columns: 1fr;
      gap: 8px;
    }

    .hero-floating-card {
      position: relative;
      left: auto;
      right: auto;
      top: auto;
      bottom: auto;
      max-width: none;
      margin: 0 16px 16px;
    }
    .section { padding: 80px 0; }
    .hero { padding: 48px 0 40px; }
    .services-grid,
    .process-wrap,
    .stats-band,
    .form-grid { grid-template-columns: 1fr; }
    .hero-grid { gap: 24px; }
    .hero-copy h1 {
      font-size: clamp(40px, 12vw, 58px);
      line-height: 0.98;
      margin: 16px 0 16px;
    }
    .hero-copy p {
      font-size: 16px;
      margin-bottom: 24px;
    }
    .hero-actions {
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
    }
    .hero-actions .btn {
      width: 100%;
    }
    .hero-tags {
      gap: 10px;
    }
    .hero-tags span {
      width: 100%;
      text-align: center;
      padding: 11px 14px;
    }
    .hero-visual {
      min-height: auto;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .shape-bg {
      inset: 0;
      border-radius: 28px;
      min-height: 390px;
    }
    .hero-panel {
      position: relative;
      inset: auto;
      padding: 18px;
      min-height: 390px;
    }
    .dashboard {
      max-width: 100%;
      border-radius: 24px;
      padding: 18px;
    }
    .dashboard-head {
      flex-direction: column;
      align-items: flex-start;
      margin-bottom: 18px;
    }
    .dashboard-title h3 {
      font-size: 20px;
    }
    .insight-grid {
      grid-template-columns: 1fr;
    }
    .panel-box,
    .metric,
    .service-card,
    .about-card,
    .about-card-soft,
    .process-card,
    .contact-card,
    .contact-form,
    .cta-box { padding: 22px; }
    .floating-note {
      position: relative;
      left: auto;
      bottom: auto;
      max-width: none;
      margin: 0;
      width: 100%;
    }
  }

  @media (max-width: 480px) {
    .container { width: min(94%, var(--max)); }
    .section { padding: 70px 0; }
    .hero { padding: 38px 0 34px; }
    .hero-copy h1 {
      font-size: clamp(34px, 11vw, 46px);
    }
    .hero-copy h1 span::after {
      height: 9px;
      bottom: 5px;
    }
    .hero-copy p {
      font-size: 15px;
    }
    .eyebrow {
      font-size: 11px;
      padding: 10px 14px;
    }
    .hero-main-card {
      margin: 12px;
      padding: 18px;
    }
    .hero-card-top h3 {
      font-size: 21px;
    }
    .hero-chart-card,
    .hero-metric-card,
    .hero-floating-card {
      border-radius: 18px;
    }
    .hero-metric-card strong {
      font-size: 24px;
    }
    .service-icon {
      width: 56px;
      height: 56px;
      padding: 12px;
    }
  }