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

  :root {
    --bg: #0a0b0f;
    --bg2: #12141a;
    --bg3: #181b23;
    --amber: #f08428;
    --amber-bright: #fab040;
    --amber-deep: #c0341a;
    --gold: #fad044;
    --accent-text-solid: #face6e;
    --stat-text-solid: #f5cf6a;
    --white: #f0ede8;
    --muted: #a9a396;
    --muted-subtle: #87827c;
    --footer-meta: #949089;
    --border: rgba(240,237,232,0.08);
    --border-strong: rgba(240,237,232,0.14);
    --glow: rgba(240,132,40,0.18);
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  h1, h2, h3, h4 {
    font-family: 'Bricolage Grotesque', sans-serif;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 60px;
    background: rgba(10,11,15,0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    height: 72px;
    display: flex;
    align-items: center;
  }

  .nav-logo img {
    display: block;
    width: auto;
    height: auto;
    max-height: 72px;
    object-fit: contain;
  }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
  }

  .nav-links a:hover { color: var(--white); }

  .nav-links a::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    bottom: -6px;
    height: 1px;
    background: var(--amber);
    transform: scaleX(0);
    transition: transform 0.2s;
  }

  .nav-links a:hover::after { transform: scaleX(1); }

  .nav-cta {
    background: linear-gradient(135deg, var(--amber-bright) 0%, var(--amber) 100%);
    color: #0a0b0f;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Bricolage Grotesque', sans-serif;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(240,132,40,0.25);
  }

  .nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(240,132,40,0.4);
  }

  /*
   * Layout stability (CLS): admin bar + inner pages stacked below fixed nav.
   * Matches WordPress toolbar height when `--wp-admin--admin-bar--height` is set.
   */
  body.admin-bar {
    --admin-bar-h: var(--wp-admin--admin-bar--height, 32px);
  }

  body.admin-bar nav {
    top: var(--admin-bar-h);
  }

  .phoenix-stack {
    box-sizing: border-box;
    min-height: 60vh;
    padding: 160px 60px 80px;
  }

  body.admin-bar .phoenix-stack:not(.phoenix-stack--404) {
    padding-top: calc(160px + var(--admin-bar-h));
  }

  .phoenix-stack.phoenix-stack--404 {
    min-height: 60vh;
    padding: 200px 60px 100px;
    text-align: center;
  }

  body.admin-bar .phoenix-stack.phoenix-stack--404 {
    padding-top: calc(200px + var(--admin-bar-h));
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 60px 80px;
    position: relative;
    overflow: hidden;
  }

  body.admin-bar .hero {
    padding-top: calc(160px + var(--admin-bar-h));
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 50% 60% at 75% 40%, rgba(240,132,40,0.15) 0%, transparent 65%),
      radial-gradient(ellipse 40% 50% at 85% 30%, rgba(250,208,68,0.08) 0%, transparent 60%),
      radial-gradient(ellipse 30% 40% at 80% 70%, rgba(192,52,26,0.1) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(var(--border) 1px, transparent 1px),
      linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  }

  /* Decorative phoenix watermark */
  .hero > picture {
    display: contents;
  }

  .hero-watermark {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    box-sizing: content-box;
    width: clamp(140px, 28vw, 327px); /* capped at intrinsic 327px logical width → 2× raster on retina */
    height: auto;
    max-height: min(65vh, 437px);
    aspect-ratio: 327 / 437;
    object-fit: contain;
    opacity: 0.18;
    pointer-events: none;
    animation: floaty 8s ease-in-out infinite;
  }

  @keyframes floaty {
    0%, 100% { transform: translateY(-50%); }
    50%      { transform: translateY(calc(-50% - 12px)); }
  }

  .hero-content {
    max-width: 720px;
    position: relative;
    z-index: 1;
    animation: fadeUp 0.8s ease both;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(240,132,40,0.12);
    border: 1px solid rgba(240,132,40,0.3);
    color: var(--amber-bright);
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 28px;
    letter-spacing: 0.02em;
  }

  .hero-tag::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--amber-bright);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--amber-bright);
  }

  h1 {
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
  }

  h1 .accent {
    display: inline;
    color: var(--accent-text-solid);
  }

  .hero-stats .stat-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--stat-text-solid);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -1px;
  }

  .stat-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
  }

  .hero-sub {
    font-size: 18px;
    color: var(--muted);
    max-width: 540px;
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 300;
  }

  .hero-sub strong { color: var(--white); font-weight: 500; }

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

  .btn-primary {
    background: linear-gradient(135deg, var(--amber-bright) 0%, var(--amber) 100%);
    color: #0a0b0f;
    padding: 15px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 15px;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(240,132,40,0.25);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(240,132,40,0.4);
  }

  .btn-ghost {
    background: transparent;
    color: var(--white);
    padding: 15px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border: 1px solid var(--border-strong);
    transition: all 0.2s;
  }

  .btn-ghost:hover {
    border-color: var(--amber);
    background: rgba(240,132,40,0.05);
    color: var(--amber-bright);
  }

  .hero-stats {
    display: flex;
    gap: 56px;
    margin-top: 72px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
  }

  /* SECTIONS */
  section {
    padding: 120px 60px;
  }

  .section-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber-bright);
    margin-bottom: 16px;
    font-family: 'Bricolage Grotesque', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .section-tag::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--amber);
  }

  .section-title {
    font-size: clamp(34px, 4.5vw, 56px);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.05;
    margin-bottom: 20px;
  }

  .section-sub {
    color: var(--muted);
    font-size: 17px;
    max-width: 560px;
    margin-bottom: 64px;
    font-weight: 300;
    line-height: 1.7;
  }

  /* SERVICES */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg2);
  }

  .service-card {
    padding: 44px 32px 80px;
    border-right: 1px solid var(--border);
    position: relative;
    transition: background 0.3s;
    cursor: pointer;
  }

  .service-card:last-child { border-right: none; }

  .service-card:hover { background: rgba(240,132,40,0.04); }

  .service-tier {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber-bright);
    font-family: 'Bricolage Grotesque', sans-serif;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .service-tier::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--amber);
  }

  .service-icon {
    font-size: 32px;
    margin-bottom: 18px;
    display: block;
    filter: grayscale(0.2);
  }

  .service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.4px;
  }

  .service-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 28px;
  }

  .service-price {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--amber-bright);
  }

  .service-arrow {
    position: absolute;
    bottom: 32px;
    right: 32px;
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--muted);
    transition: all 0.25s;
  }

  .service-card:hover .service-arrow {
    border-color: var(--amber);
    color: var(--amber-bright);
    background: rgba(240,132,40,0.12);
    transform: rotate(-45deg);
  }

  /* CARE PLANS */
  .plans-section {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 50%, var(--bg) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }

  .plans-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(240,132,40,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
  }

  .plan-card {
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 44px 36px;
    background: var(--bg3);
    position: relative;
    transition: all 0.3s;
  }

  .plan-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong);
  }

  .plan-card.featured {
    border-color: var(--amber);
    background:
      linear-gradient(160deg, rgba(240,132,40,0.10) 0%, var(--bg3) 50%);
    box-shadow: 0 20px 60px rgba(240,132,40,0.12);
  }

  .plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
    color: #0a0b0f;
    font-size: 11px;
    font-weight: 800;
    font-family: 'Bricolage Grotesque', sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(240,132,40,0.3);
  }

  .plan-name {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
  }

  .plan-card.featured .plan-name { color: var(--amber-bright); }

  .plan-price {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1;
    margin-bottom: 4px;
  }

  .plan-price sup {
    font-size: 24px;
    vertical-align: top;
    margin-top: 10px;
    color: var(--muted);
  }

  .plan-period { font-size: 14px; color: var(--muted); margin-bottom: 32px; }

  .plan-features {
    list-style: none;
    margin-bottom: 36px;
  }

  .plan-features li {
    font-size: 14px;
    color: var(--muted);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .plan-features li:last-child { border-bottom: none; }

  .plan-features li::before {
    content: '✓';
    color: var(--amber-bright);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 13px;
    width: 18px;
    height: 18px;
    background: rgba(240,132,40,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .plan-features li.muted::before {
    content: '–';
    color: var(--muted-subtle);
    background: transparent;
  }

  .plan-features li.muted {
    opacity: 1;
    color: var(--muted-subtle);
  }

  .plan-btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s;
    border: 1px solid var(--border-strong);
    color: var(--white);
  }

  .plan-card.featured .plan-btn {
    background: linear-gradient(135deg, var(--amber-bright) 0%, var(--amber) 100%);
    color: #0a0b0f;
    border-color: var(--amber);
    box-shadow: 0 4px 14px rgba(240,132,40,0.25);
  }

  .plan-btn:hover { transform: translateY(-1px); }
  .plan-card:not(.featured) .plan-btn:hover {
    border-color: var(--amber);
    color: var(--amber-bright);
    background: rgba(240,132,40,0.05);
  }

  /* WHY US */
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .why-list {
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-top: 48px;
  }

  .why-item {
    display: flex;
    gap: 22px;
    align-items: flex-start;
  }

  .why-icon {
    width: 48px;
    height: 48px;
    background: rgba(240,132,40,0.1);
    border: 1px solid rgba(240,132,40,0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
  }

  .why-item .why-item-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .why-item p { font-size: 14px; color: var(--muted); line-height: 1.65; }

  .why-visual {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 44px;
    position: relative;
    overflow: hidden;
  }

  .why-visual::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 240px; height: 240px;
    background: radial-gradient(circle, rgba(240,132,40,0.18) 0%, transparent 70%);
    pointer-events: none;
  }

  .tech-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
  }

  .tech-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
  }

  .tech-item:hover {
    border-color: var(--amber);
    background: rgba(240,132,40,0.04);
  }

  .tech-badge {
    font-size: 11px;
    background: rgba(240,132,40,0.28);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 100px;
    font-weight: 700;
    font-family: 'Bricolage Grotesque', sans-serif;
    letter-spacing: 0.05em;
  }

  /* CTA */
  .cta-section {
    text-align: center;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 60% at 50% 50%, rgba(240,132,40,0.10) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 50% 70%, rgba(250,208,68,0.06) 0%, transparent 60%);
    pointer-events: none;
  }

  .cta-section h2 { margin-bottom: 16px; position: relative; z-index: 1; }

  .cta-section .cta-section-lead {
    color: var(--muted);
    font-size: 18px;
    margin-bottom: 40px;
    font-weight: 300;
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
  }

  .cta-form-wrap {
    position: relative;
    z-index: 1;
    max-width: 460px;
    margin: 0 auto 32px;
    text-align: left;
  }

  .cta-contact-form {
    margin: 0 0 28px;
  }

  .cta-field {
    margin: 0 0 18px;
  }

  .cta-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
  }

  .cta-label .required {
    color: var(--amber-bright);
    text-decoration: none;
    border-bottom: none;
  }

  .cta-input,
  .cta-textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--border-strong);
    background: rgba(10,11,15,0.65);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.45;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
  }

  .cta-input:focus,
  .cta-textarea:focus {
    outline: none;
    border-color: rgba(240,132,40,0.55);
    box-shadow: 0 0 0 3px rgba(240,132,40,0.12);
  }

  .cta-textarea { resize: vertical; min-height: 120px; }

  .cta-submit-row {
    margin-top: 8px;
    margin-bottom: 0;
  }

  .cta-submit-btn {
    border: none;
    cursor: pointer;
    width: 100%;
    justify-content: center;
  }

  .cta-honeypot {
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    overflow: hidden !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important;
    margin: -1px !important;
    padding: 0 !important;
    border: 0 !important;
  }

  .contact-form-feedback {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.55;
    padding: 14px 16px;
    border-radius: 12px;
    margin: 0 0 20px;
  }

  .contact-form-feedback--success {
    background: rgba(240,176,64,0.12);
    border: 1px solid rgba(240,176,64,0.35);
    color: var(--accent-text-solid);
  }

  .contact-form-feedback--error {
    background: rgba(240,132,40,0.08);
    border: 1px solid rgba(192,52,26,0.45);
    color: var(--muted);
  }

  .cta-mailto {
    text-align: center;
    margin: 0;
  }

  .cta-mailto-btn {
    margin: 0 auto;
  }

  .cta-section .btn-primary {
    position: relative;
    z-index: 1;
  }

  /* FOOTER */
  footer {
    padding: 60px 60px 32px;
    border-top: 1px solid var(--border);
    background: var(--bg);
  }

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

  /* Footer logo: core/plugins often set img { width:100% } — scope by wrapper so sizing survives class merges/filters */
  .footer-brand-logo {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin-bottom: 20px;
    line-height: 0;
  }

  .footer-brand-logo > a {
    display: block;
    width: fit-content;
    max-width: 100%;
    line-height: 0;
    text-decoration: none;
    color: inherit;
  }

  .footer-brand-logo img {
    width: auto !important;
    height: auto !important;
    max-height: 60px !important;
    max-width: min(100%, 260px) !important;
    margin: 0;
    display: block;
    box-sizing: border-box;
    object-fit: contain;
  }

  .footer-brand p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 320px;
  }

  footer .footer-heading {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber-bright);
    margin-bottom: 18px;
  }

  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-col a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
  }

  .footer-col a:hover { color: var(--amber-bright); }

  .footer-bottom {
    padding-top: 28px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-bottom p {
    font-size: 13px;
    color: var(--muted);
  }

  .footer-bottom .footer-note {
    font-size: 12px;
    color: var(--footer-meta);
    margin-top: 0;
  }

  /* SCROLL ANIMATIONS */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    nav { padding: 12px 24px; }
    .nav-links { display: none; }
    .nav-logo { height: 56px; }
    .nav-logo img { max-height: 56px; }
    section { padding: 70px 24px; }
    .hero { padding: 110px 24px 60px; }
    body.admin-bar .hero {
      padding-top: calc(110px + var(--admin-bar-h));
    }
    .phoenix-stack:not(.phoenix-stack--404) {
      padding: 110px 24px 60px;
    }
    body.admin-bar .phoenix-stack:not(.phoenix-stack--404) {
      padding-top: calc(110px + var(--admin-bar-h));
    }
    .phoenix-stack.phoenix-stack--404 {
      padding: 160px 24px 80px;
    }
    body.admin-bar .phoenix-stack.phoenix-stack--404 {
      padding-top: calc(160px + var(--admin-bar-h));
    }
    .hero-watermark {
      width: clamp(100px, 42vw, 280px);
      max-height: min(50vh, 400px);
      right: -8%;
      opacity: 0.10;
    }
    h1 { letter-spacing: -1.5px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .plans-grid { grid-template-columns: 1fr; max-width: 420px; }
    .why-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-stats { gap: 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
  }

  @media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-ghost { text-align: center; justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; }
  }