  :root {
    --orange: #E8650A;
    --orange-light: #FF7A1A;
    --dark: #1A1A1A;
    --darker: #111111;
    --darkest: #0A0A0A;
    --logo-bg: #45423f;
    --nav-h: 110px;
    --gray: #2A2A2A;
    --gray-mid: #3A3A3A;
    --text-muted: #888;
    --text-light: #CCC;
    --white: #F5F5F5;
    --font-display: 'Bebas Neue', sans-serif;
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
  }

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

  html { scroll-behavior: smooth; background: var(--darkest); overflow-x: hidden; }

  body {
    background: var(--darkest);
    color: var(--white);
    font-family: var(--font-body);
    min-height: 100vh;
  }

  /* ─── SCROLLBAR ─── */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--darkest); }
  ::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 6px 60px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
    background: var(--logo-bg);
    border-bottom: 1px solid rgba(0,0,0,0.25);
    transition: box-shadow 0.3s;
  }
  .nav-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 17px 28px;
    min-width: 176px;
    min-height: 100px;
    background: #3a3835;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s, box-shadow 0.35s ease;
    transform-origin: center center;
  }
  .nav-logo:hover {
    transform: scale(1.5);
    border-color: rgba(232, 101, 10, 0.5);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45), 0 0 28px rgba(232, 101, 10, 0.2);
    z-index: 10;
  }
  .nav-logo img {
    display: block;
    width: 114px;
    height: auto;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
  .nav-links a {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
    white-space: nowrap;
  }
  .nav-links a:hover { color: var(--orange); }
  .nav-cta {
    background: var(--orange) !important;
    color: var(--darkest) !important;
    padding: 10px 20px;
    border-radius: 2px;
    font-weight: 700 !important;
  }
  .nav-cta:hover { background: var(--orange-light) !important; color: var(--darkest) !important; }

  .nav-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white);
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    cursor: pointer;
    flex-shrink: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0;
    border-radius: 2px;
    position: relative;
    z-index: 3;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .nav-toggle:hover { border-color: var(--orange); color: var(--orange); }

  .nav-mobile {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--logo-bg);
    border-bottom: 1px solid rgba(232,101,10,0.2);
    padding: 16px 24px 24px;
    z-index: 1001;
    flex-direction: column;
    gap: 4px;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
    box-shadow: 0 12px 40px rgba(0,0,0,0.45);
  }
  .nav-mobile.open {
    display: flex;
  }
  .nav-mobile[aria-hidden="true"] {
    display: none;
  }
  body.nav-open { overflow: hidden; }
  .nav-mobile a {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-mobile a:hover { color: var(--orange); }
  .nav-mobile .nav-cta {
    text-align: center;
    margin-top: 12px;
    border: none;
  }

  /* ─── HERO ─── */
  #hero {
    min-height: 100vh;
    display: flex; align-items: center;
    position: relative;
    overflow: hidden;
    padding: calc(var(--nav-h) + 48px) 60px 80px;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at 60% 50%, rgba(232,101,10,0.08) 0%, transparent 70%),
                radial-gradient(ellipse 40% 40% at 20% 80%, rgba(232,101,10,0.04) 0%, transparent 60%),
                var(--darkest);
  }
  .hero-grid-lines {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(232,101,10,0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(232,101,10,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridPulse 8s ease-in-out infinite;
  }
  @keyframes gridPulse {
    0%,100% { opacity: 0.5; }
    50% { opacity: 1; }
  }
  .hero-content {
    position: relative; z-index: 3;
    max-width: 720px;
  }
  .hero-eyebrow {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 24px;
    display: flex; align-items: center; gap: 12px;
  }
  .hero-eyebrow::before {
    content: '';
    display: block; width: 40px; height: 1px;
    background: var(--orange);
  }
  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(52px, 7vw, 96px);
    line-height: 0.92;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 32px;
  }
  .hero-title .accent { color: var(--orange); }
  .hero-sub {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 540px;
    margin-bottom: 48px;
    font-weight: 300;
  }
  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--orange);
    color: var(--darkest);
    padding: 16px 36px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none; cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    transition: all 0.3s;
    display: inline-block;
  }
  .btn-primary:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(232,101,10,0.4);
  }
  .btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 16px 36px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
  }
  .btn-secondary:hover {
    border-color: var(--orange);
    color: var(--orange);
  }
  .hero-stats {
    position: absolute; right: 60px; bottom: 80px;
    display: flex; flex-direction: column; gap: 32px;
    z-index: 2;
  }
  .stat-item { text-align: right; }
  .stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--white);
    line-height: 1;
  }
  .stat-number span { color: var(--orange); }
  .stat-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-family: var(--font-heading);
  }
  .floating-badge {
    position: absolute;
    background: linear-gradient(145deg, rgba(48, 46, 43, 0.97) 0%, rgba(28, 27, 25, 0.98) 100%);
    border: 1px solid rgba(232, 101, 10, 0.5);
    padding: 18px 26px;
    border-radius: 10px;
    z-index: 1;
    box-shadow:
      0 12px 40px rgba(0, 0, 0, 0.45),
      0 0 24px rgba(232, 101, 10, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: border-color 0.3s, box-shadow 0.3s;
  }
  .floating-badge:hover {
    border-color: rgba(232, 101, 10, 0.75);
    box-shadow:
      0 16px 48px rgba(0, 0, 0, 0.5),
      0 0 32px rgba(232, 101, 10, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  #hero > .floating-badge:nth-child(3) {
    top: 26%;
    right: 11%;
    animation: floatBadge1 7s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  }
  #hero > .floating-badge:nth-child(4) {
    top: 40%;
    right: 13%;
    animation: floatBadge2 8.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: -2s;
  }
  #hero > .floating-badge:nth-child(5) {
    top: 54%;
    right: 10%;
    animation: floatBadge3 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: -4.5s;
  }
  @keyframes floatBadge1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-6px, -16px) rotate(-0.5deg); }
    50% { transform: translate(4px, -22px) rotate(0.3deg); }
    75% { transform: translate(-3px, -10px) rotate(-0.2deg); }
  }
  @keyframes floatBadge2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    30% { transform: translate(8px, -14px) rotate(0.4deg); }
    60% { transform: translate(-5px, -24px) rotate(-0.3deg); }
    85% { transform: translate(3px, -8px) rotate(0.2deg); }
  }
  @keyframes floatBadge3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    20% { transform: translate(-7px, -12px) rotate(-0.4deg); }
    45% { transform: translate(5px, -20px) rotate(0.5deg); }
    70% { transform: translate(-4px, -26px) rotate(-0.2deg); }
    90% { transform: translate(2px, -6px) rotate(0.1deg); }
  }
  .badge-label {
    font-size: 11px;
    letter-spacing: 2.5px;
    color: var(--orange);
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 600;
  }
  .badge-value {
    font-size: 19px;
    font-weight: 700;
    color: var(--white);
    margin-top: 6px;
    letter-spacing: 0.3px;
  }

  /* ─── SECTION COMMON ─── */
  section { padding: 100px 60px; }
  .section-eyebrow {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 64px);
    line-height: 1;
    color: var(--white);
    margin-bottom: 24px;
  }
  .section-title .accent { color: var(--orange); }
  .divider {
    width: 60px; height: 2px;
    background: var(--orange);
    margin-bottom: 48px;
  }

  /* ─── SERVICES ─── */
  #servicos { background: var(--darker); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 60px;
  }
  .service-card {
    background: var(--dark);
    padding: 48px 40px;
    border-top: 2px solid transparent;
    transition: all 0.4s;
    cursor: default;
    position: relative;
    overflow: hidden;
  }
  .service-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--orange);
    transition: width 0.4s;
  }
  .service-card:hover { background: #222; border-top-color: var(--orange); }
  .service-card:hover::after { width: 100%; }
  .service-icon {
    width: 52px; height: 52px;
    border: 1px solid rgba(232,101,10,0.4);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 28px;
    font-size: 22px;
    color: var(--orange);
    transition: all 0.3s;
  }
  .service-card:hover .service-icon {
    background: var(--orange);
    color: var(--darkest);
  }
  .service-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--white);
  }
  .service-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
  }

  /* ─── HOW IT WORKS ─── */
  #metodo { background: var(--darkest); }
  .method-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
  }
  .method-steps { display: flex; flex-direction: column; gap: 0; }
  .method-step {
    display: flex; gap: 28px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s;
    cursor: default;
  }
  .method-step:hover .step-num { color: var(--orange); }
  .step-num {
    font-family: var(--font-display);
    font-size: 56px;
    line-height: 1;
    color: rgba(255,255,255,0.08);
    min-width: 60px;
    transition: color 0.3s;
  }
  .step-content {}
  .step-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 8px;
  }
  .step-desc { font-size: 14px; line-height: 1.7; color: var(--text-muted); }
  .method-visual {
    position: relative;
    background: var(--gray);
    border: 1px solid rgba(232,101,10,0.2);
    padding: 48px;
    display: flex; flex-direction: column; gap: 20px;
  }
  .metric-row {
    display: flex; align-items: center; gap: 16px;
  }
  .metric-label { font-size: 12px; color: var(--text-muted); width: 120px; font-family: var(--font-heading); letter-spacing: 1px; }
  .metric-bar {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 3px;
    overflow: hidden;
  }
  .metric-fill {
    height: 100%;
    background: var(--orange);
    border-radius: 3px;
    animation: barGrow 2s ease forwards;
  }
  @keyframes barGrow { from { width: 0; } }
  .metric-val { font-size: 14px; color: var(--white); font-weight: 600; width: 40px; text-align: right; }

  /* ─── CEO / SOBRE ─── */
  #sobre { background: var(--darker); }
  .about-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 60px;
  }
  .ceo-photo-wrapper {
    position: relative;
  }
  .ceo-photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  .ceo-photo-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
  }
  .ceo-frame {
    position: absolute; inset: 0;
    border: 2px solid var(--orange);
    transform: translate(12px, 12px);
    pointer-events: none;
    z-index: 0;
  }
  .ceo-photo-wrapper > *:not(.ceo-frame) { position: relative; z-index: 1; }
  .ceo-tag {
    position: absolute;
    bottom: -16px; left: -16px;
    background: var(--orange);
    color: var(--darkest);
    padding: 14px 20px;
    z-index: 2;
  }
  .ceo-tag-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
  }
  .ceo-tag-role { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.8; margin-top: 2px; }
  .about-text {}
  .about-intro {
    font-size: 22px;
    line-height: 1.5;
    color: var(--white);
    font-weight: 300;
    margin-bottom: 32px;
  }
  .about-body {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
  }
  .credentials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .credential {
    display: flex; gap: 12px; align-items: flex-start;
    padding: 16px;
    background: var(--dark);
    border-left: 2px solid var(--orange);
  }
  .credential-text { font-size: 13px; color: var(--text-light); line-height: 1.5; }
  .credential-text strong { display: block; color: var(--white); margin-bottom: 2px; font-family: var(--font-heading); font-size: 15px; }

  /* ─── LEAD CAPTURE / AGENDAMENTO ─── */
  #agendar {
    background: var(--darkest);
    position: relative;
    overflow: hidden;
  }
  #agendar::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(232,101,10,0.06) 0%, transparent 70%);
  }
  .schedule-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative; z-index: 1;
    margin-top: 60px;
  }
  .schedule-promise { }
  .promise-item {
    display: flex; gap: 16px; align-items: flex-start;
    margin-bottom: 28px;
  }
  .promise-icon {
    width: 36px; height: 36px;
    background: rgba(232,101,10,0.15);
    border: 1px solid rgba(232,101,10,0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--orange);
    font-size: 16px;
    flex-shrink: 0;
  }
  .promise-text { font-size: 14px; line-height: 1.6; color: var(--text-light); }
  .promise-text strong { color: var(--white); display: block; margin-bottom: 2px; font-family: var(--font-heading); font-size: 16px; }
  .lead-form {
    background: var(--dark);
    border: 1px solid rgba(232,101,10,0.2);
    padding: 48px;
  }
  .form-title {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--white);
    margin-bottom: 8px;
  }
  .form-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 36px; }
  .form-group { margin-bottom: 20px; }
  .form-label {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 8px;
  }
  .form-input {
    width: 100%;
    background: var(--gray);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--white);
    padding: 14px 18px;
    font-size: 14px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.3s;
    border-radius: 0;
  }
  .form-input:focus { border-color: var(--orange); }
  .form-input.invalid { border-color: #ff6b6b; }
  .form-input.valid { border-color: #00C864; }
  .form-error {
    display: none;
    font-size: 12px;
    color: #ff6b6b;
    margin-top: 6px;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
  }
  .form-error.visible { display: block; }
  .form-input::placeholder { color: var(--text-muted); }
  .form-submit {
    width: 100%;
    background: var(--orange);
    color: var(--darkest);
    border: none;
    padding: 18px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
  }
  .form-submit:hover {
    background: var(--orange-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(232,101,10,0.4);
  }
  .form-privacy { font-size: 11px; color: var(--text-muted); text-align: center; margin-top: 16px; line-height: 1.5; }

  /* ─── FAQ ─── */
  #faq { background: var(--darker); }
  .faq-list { max-width: 800px; margin-top: 60px; }
  .faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
  }
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--white);
    text-align: left;
    padding: 28px 0;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    gap: 24px;
    transition: color 0.3s;
  }
  .faq-question:hover { color: var(--orange); }
  .faq-icon {
    width: 28px; height: 28px;
    border: 1px solid rgba(232,101,10,0.4);
    display: flex; align-items: center; justify-content: center;
    color: var(--orange);
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.3s;
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
  }
  .faq-item.open .faq-answer {
    max-height: 200px;
    padding-bottom: 24px;
  }
  .faq-item.open .faq-icon { transform: rotate(45deg); }

  /* ─── AREA DO CLIENTE ─── */
  #cliente { background: var(--darkest); }
  .client-area-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 60px;
  }
  .client-feature {
    background: var(--dark);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
  }
  .client-feature:hover { background: #1f1f1f; }
  .client-feature-num {
    font-family: var(--font-display);
    font-size: 80px;
    color: rgba(232,101,10,0.06);
    position: absolute; top: -10px; right: 20px;
    line-height: 1;
    pointer-events: none;
  }
  .client-feature-icon { font-size: 28px; margin-bottom: 20px; }
  .client-feature-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
  }
  .client-feature-desc { font-size: 14px; line-height: 1.7; color: var(--text-muted); }
  .client-access-cta {
    margin-top: 48px;
    background: var(--gray);
    border: 1px solid rgba(232,101,10,0.2);
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
  .client-access-text {}
  .access-title { font-family: var(--font-heading); font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
  .access-sub { font-size: 14px; color: var(--text-muted); }

  /* ─── CTA FINAL ─── */
  #cta-final {
    background: var(--orange);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  #cta-final::before {
    content: 'MBEL';
    position: absolute;
    font-family: var(--font-display);
    font-size: 280px;
    color: rgba(0,0,0,0.1);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    line-height: 1;
  }
  .cta-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 72px);
    color: var(--darkest);
    margin-bottom: 16px;
    position: relative; z-index: 1;
  }
  .cta-sub { font-size: 16px; color: rgba(0,0,0,0.6); margin-bottom: 40px; position: relative; z-index: 1; }
  .btn-dark {
    background: var(--darkest);
    color: var(--white);
    padding: 18px 48px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border: none; cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    position: relative; z-index: 1;
  }
  .btn-dark:hover { background: #111; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }

  /* ─── FOOTER ─── */
  footer {
    background: var(--darkest);
    border-top: 1px solid rgba(232,101,10,0.15);
    padding: 60px 60px 40px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
  }
  .footer-brand {}
  .footer-logo {
    display: inline-block;
    margin-bottom: 16px;
    text-decoration: none;
    padding: 10px 18px;
    background: #3a3835;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    line-height: 0;
  }
  .footer-logo img {
    height: 52px;
    width: auto;
    display: block;
    border-radius: 8px;
  }
  .footer-tagline {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-family: var(--font-heading);
  }
  .footer-desc { font-size: 13px; line-height: 1.7; color: var(--text-muted); max-width: 300px; }
  .footer-col-title {
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
  .footer-links a:hover { color: var(--white); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
  }

  /* ─── MODAL LEAD ─── */
  .modal-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 2000;
    align-items: center; justify-content: center;
    backdrop-filter: blur(8px);
  }
  .modal-overlay.active { display: flex; }
  .modal-box {
    background: var(--dark);
    border: 1px solid rgba(232,101,10,0.3);
    padding: 56px 48px;
    max-width: 480px;
    width: 90%;
    position: relative;
    animation: modalIn 0.3s ease;
  }
  @keyframes modalIn { from { transform: translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }
  .modal-close {
    position: absolute; top: 20px; right: 20px;
    background: none; border: none;
    color: var(--text-muted); font-size: 20px; cursor: pointer;
  }
  .modal-close:hover { color: var(--orange); }
  .modal-title { font-family: var(--font-display); font-size: 36px; color: var(--white); margin-bottom: 8px; }
  .modal-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }
  .success-msg {
    display: none;
    text-align: center;
    padding: 24px;
  }
  .success-icon { font-size: 48px; margin-bottom: 16px; }
  .success-title { font-family: var(--font-heading); font-size: 24px; color: var(--orange); margin-bottom: 8px; }
  .success-text { font-size: 14px; color: var(--text-muted); }

  /* ─── ADMIN PANEL ─── */
  #admin-panel {
    display: none;
    position: fixed; inset: 0;
    background: var(--darkest);
    z-index: 3000;
    overflow-y: auto;
  }
  .admin-header {
    background: var(--dark);
    padding: 20px 40px;
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid rgba(232,101,10,0.2);
    position: sticky; top: 0; z-index: 10;
  }
  .admin-logo { font-family: var(--font-display); font-size: 24px; color: var(--white); }
  .admin-logo span { color: var(--orange); }
  .admin-close {
    background: none; border: 1px solid rgba(255,255,255,0.2);
    color: var(--white); padding: 8px 20px;
    font-family: var(--font-heading); font-size: 13px;
    cursor: pointer; letter-spacing: 1px;
    transition: all 0.3s;
  }
  .admin-close:hover { border-color: var(--orange); color: var(--orange); }
  .admin-body { padding: 40px; display: grid; grid-template-columns: 240px 1fr; gap: 32px; }
  .admin-sidebar {}
  .admin-nav { list-style: none; }
  .admin-nav li {
    padding: 12px 16px;
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--text-muted);
    cursor: pointer;
    border-left: 2px solid transparent;
    transition: all 0.3s;
    margin-bottom: 4px;
  }
  .admin-nav li:hover, .admin-nav li.active { color: var(--orange); border-left-color: var(--orange); }
  .admin-content {}
  .admin-section { display: none; }
  .admin-section.active { display: block; }
  .admin-table-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
  }
  table { width: 100%; border-collapse: collapse; }
  th {
    text-align: left;
    padding: 12px 16px;
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    border-bottom: 1px solid rgba(232,101,10,0.2);
  }
  td {
    padding: 16px;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  tr:hover td { background: rgba(255,255,255,0.02); }
  .status-badge {
    padding: 4px 12px;
    font-size: 11px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    border-radius: 2px;
    font-weight: 600;
  }
  .status-new { background: rgba(232,101,10,0.15); color: var(--orange); }
  .status-contact { background: rgba(255,200,0,0.1); color: #FFC800; }
  .status-closed { background: rgba(0,200,100,0.1); color: #00C864; }
  .funnel-stage {
    display: flex; gap: 8px; flex-wrap: wrap;
    margin-bottom: 32px;
  }
  .funnel-card {
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 20px 24px;
    flex: 1; min-width: 140px;
    text-align: center;
    border-top: 2px solid var(--orange);
  }
  .funnel-count { font-family: var(--font-display); font-size: 36px; color: var(--white); }
  .funnel-label { font-size: 11px; color: var(--text-muted); letter-spacing: 1px; margin-top: 4px; font-family: var(--font-heading); }

  /* ─── CLIENT LOGIN ─── */
  #client-login-modal {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 2500;
    align-items: center; justify-content: center;
    backdrop-filter: blur(12px);
  }
  #client-login-modal.active { display: flex; }
  .client-login-box {
    background: var(--dark);
    border: 1px solid rgba(232,101,10,0.3);
    padding: 56px 48px;
    max-width: 440px;
    width: 90%;
    text-align: center;
    position: relative;
  }
  .client-login-box .modal-close { position: absolute; top: 16px; right: 16px; }
  .client-tabs { display: flex; margin-bottom: 32px; }
  .client-tab {
    flex: 1;
    padding: 12px;
    background: none;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
  }
  .client-tab.active { color: var(--orange); border-bottom-color: var(--orange); }
  .client-tab-content { display: none; }
  .client-tab-content.active { display: block; }
  /* dashboard placeholder */
  .dashboard-panels { display: none; }
  .dashboard-panels.active { display: block; }

  /* ─── SCROLL ANIMATIONS ─── */
  .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-up.visible { opacity: 1; transform: none; }

  /* ─── WHATSAPP FLOAT ─── */
  .wa-float {
    position: fixed;
    bottom: 32px; right: 32px;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    z-index: 999;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(37,211,102,0.4);
    transition: transform 0.3s;
    animation: waPulse 2s ease-in-out infinite;
  }
  @keyframes waPulse {
    0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 48px rgba(37,211,102,0.7); }
  }
  .wa-float:hover { transform: scale(1.1); }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    :root { --nav-h: 110px; }
    nav {
      display: grid;
      grid-template-columns: 44px 1fr 44px;
      padding: 8px 16px;
      align-items: center;
    }
    .nav-logo {
      grid-column: 1 / -1;
      grid-row: 1;
      justify-self: center;
      position: relative;
      z-index: 1;
      padding: 12px 28px;
      min-width: unset;
      max-width: calc(100vw - 80px);
      min-height: unset;
      margin: 0;
      pointer-events: auto;
      border-radius: 10px;
    }
    .nav-logo img { width: 140px; max-width: 100%; }
    .nav-right {
      grid-column: 3;
      grid-row: 1;
      justify-self: end;
      align-self: center;
      position: relative;
      z-index: 2;
    }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    section { padding: 70px 24px; }
    #hero { padding: calc(var(--nav-h) + 32px) 24px 60px; }
    .hero-stats { display: none; }
    .floating-badge { display: none; }
    .services-grid, .about-layout, .schedule-layout, .method-layout,
    .client-area-grid, .footer-grid { grid-template-columns: 1fr; }
    .about-layout { gap: 40px; }
    .admin-body { grid-template-columns: 1fr; }
    .admin-sidebar { display: none; }
    .client-access-cta { flex-direction: column; }
  }
