/*
Theme Name: EcoFrame Group Child
Theme URI: https://ecoframegroup.com
Author: EcoFrame Group
Template: hello-elementor
Description: EcoFrame Group child theme — works with Elementor
Version: 1.0.0
Text Domain: ecoframe-child
*/

  :root {
    --forest: #1A3D2B;
    --forest-mid: #2A5940;
    --forest-light: #3D7A55;
    --gold: #C9943A;
    --gold-light: #E8B96A;
    --cream: #F5F0E8;
    --cream-dark: #EDE6D8;
    --slate: #1C2530;
    --slate-mid: #3A4A5C;
    --slate-light: #6B7C93;
    --white: #FFFFFF;
    --orange: #E05C20;
    --teal: #2A7D8C;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Karla', sans-serif;
    background: var(--cream);
    color: var(--slate);
    overflow-x: hidden;
  }

  /* TOP BAR */
  .topbar {
    background: var(--slate);
    color: rgba(255,255,255,0.75);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    padding: 0.6rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .topbar-left { display: flex; gap: 2rem; align-items: center; }
  .topbar-left a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
  .topbar-left a:hover { color: var(--gold-light); }
  .topbar-right { display: flex; gap: 1rem; align-items: center; }
  .topbar-right a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
  .topbar-right a:hover { color: var(--gold-light); }
  .topbar-badge {
    background: var(--gold);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  /* NAVIGATION */
  nav {
    background: var(--white);
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(26,61,43,0.1);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
  }

  .logo-wrap {
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  .logo-icon {
    width: 48px;
    height: 48px;
  }
  .logo-text-wrap { line-height: 1.1; }
  .logo-name {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--slate);
    letter-spacing: -0.01em;
  }
  .logo-name span { color: var(--forest); }
  .logo-tag {
    font-family: 'Karla', sans-serif;
    font-size: 0.68rem;
    color: var(--teal);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .nav-links {
    display: flex;
    gap: 0.2rem;
    list-style: none;
  }
  .nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--slate-mid);
    text-decoration: none;
    padding: 0.5rem 0.9rem;
    border-radius: 4px;
    transition: all 0.2s;
    letter-spacing: 0.02em;
  }
  .nav-links a:hover { color: var(--forest); background: rgba(26,61,43,0.06); }

  .nav-ctas { display: flex; gap: 0.7rem; }
  .btn-outline {
    border: 1.5px solid var(--forest);
    color: var(--forest);
    background: transparent;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    font-family: 'Karla', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
    letter-spacing: 0.03em;
  }
  .btn-outline:hover { background: var(--forest); color: var(--white); }
  .btn-filled {
    background: var(--gold);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    border: none;
    font-family: 'Karla', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
    letter-spacing: 0.03em;
  }
  .btn-filled:hover { background: #B8832A; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(201,148,58,0.35); }

  /* HERO */
  .hero {
    min-height: 92vh;
    background: var(--forest);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(ellipse at 70% 50%, rgba(61,122,85,0.3) 0%, transparent 60%),
      radial-gradient(ellipse at 10% 80%, rgba(201,148,58,0.15) 0%, transparent 50%);
  }

  .hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
  }

  .hero-leaf {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    opacity: 0.07;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .hero-left { animation: fadeUp 0.9s ease both; }
  .hero-right { animation: fadeUp 0.9s 0.2s ease both; }

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

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(201,148,58,0.15);
    border: 1px solid rgba(201,148,58,0.4);
    border-radius: 100px;
    padding: 0.35rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }
  .hero-eyebrow-dot { width: 6px; height: 6px; background: var(--gold-light); border-radius: 50%; }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
  }
  .hero-title em {
    font-style: italic;
    color: var(--gold-light);
  }

  .hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 480px;
  }

  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-hero-primary {
    background: var(--gold);
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 5px;
    border: none;
    font-family: 'Karla', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
    letter-spacing: 0.03em;
  }
  .btn-hero-primary:hover { background: #B8832A; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,148,58,0.4); }
  .btn-hero-ghost {
    background: transparent;
    color: rgba(255,255,255,0.85);
    padding: 0.9rem 2rem;
    border-radius: 5px;
    border: 1.5px solid rgba(255,255,255,0.3);
    font-family: 'Karla', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
  }
  .btn-hero-ghost:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); }

  .hero-right-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 2.5rem;
  }
  .hero-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
  }
  .hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .hero-stat { border-left: 2px solid var(--gold); padding-left: 1rem; }
  .hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
  }
  .hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-top: 0.3rem; font-weight: 400; }
  .hero-cert-strip {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    gap: 1rem;
    align-items: center;
  }
  .hero-cert-badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    padding: 0.5rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.06em;
  }
  .hero-cert-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); }

  /* TRUST STRIP */
  .trust-strip {
    background: var(--slate);
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
  }
  .trust-label { font-size: 0.75rem; color: rgba(255,255,255,0.45); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; }
  .trust-items { display: flex; gap: 2.5rem; align-items: center; }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.65);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
  }
  .trust-item svg { color: var(--gold); }

  /* SECTION SHARED */
  section { padding: 6rem 2.5rem; }
  .container { max-width: 1200px; margin: 0 auto; }
  .section-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--forest-light);
    margin-bottom: 0.8rem;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.5vw, 2.9rem);
    font-weight: 800;
    color: var(--slate);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.2rem;
  }
  .section-lead {
    font-size: 1.05rem;
    color: var(--slate-mid);
    line-height: 1.75;
    font-weight: 300;
    max-width: 600px;
  }

  /* ABOUT */
  .about { background: var(--cream); }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: stretch;
  }
  .about-image-wrap {
    position: relative;
    min-height: 0;
    border-radius: 8px;
    overflow: hidden;
  }
  .about-img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    display: block;
    object-fit: cover;
    object-position: center 30%;
  }
  .about-accent-box {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--forest);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    color: var(--white);
    box-shadow: 0 12px 40px rgba(26,61,43,0.3);
  }
  .about-accent-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
  }
  .about-accent-label { font-size: 0.75rem; color: rgba(255,255,255,0.7); margin-top: 0.3rem; }
  .about-text { padding: 1rem 0; }
  .about-body { font-size: 1rem; color: var(--slate-mid); line-height: 1.8; margin-bottom: 2rem; font-weight: 300; }
  .about-pillars { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
  .about-pillar {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 1.2rem;
    background: var(--white);
    border-radius: 6px;
    border-left: 3px solid var(--forest-light);
    transition: all 0.25s;
  }
  .about-pillar:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); transform: translateX(4px); }
  .about-pillar-icon { font-size: 1.3rem; flex-shrink: 0; }
  .about-pillar-title { font-size: 0.88rem; font-weight: 700; color: var(--slate); margin-bottom: 0.2rem; }
  .about-pillar-desc { font-size: 0.82rem; color: var(--slate-light); line-height: 1.5; }

  /* SERVICES */
  .services { background: var(--white); }
  .services-header { text-align: center; margin-bottom: 3.5rem; }
  .services-header .section-lead { margin: 0 auto; }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .service-card {
    background: var(--cream);
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid rgba(26,61,43,0.08);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--forest), var(--gold));
    transform: scaleX(0);
    transition: transform 0.3s;
  }
  .service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(26,61,43,0.12); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon {
    width: 52px; height: 52px;
    background: rgba(26,61,43,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
  }
  .service-card.featured { background: var(--forest); }
  .service-card.featured .service-title { color: var(--white); }
  .service-card.featured .service-desc { color: rgba(255,255,255,0.7); }
  .service-card.featured .service-icon { background: rgba(255,255,255,0.12); }
  .service-card.featured .service-link { color: var(--gold-light); }
  .service-card.featured::before { background: var(--gold); }
  .service-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--forest-light);
    margin-bottom: 0.5rem;
  }
  .service-card.featured .service-tag { color: var(--gold-light); }
  .service-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--slate); margin-bottom: 0.7rem; line-height: 1.3; }
  .service-desc { font-size: 0.88rem; color: var(--slate-mid); line-height: 1.65; margin-bottom: 1.2rem; font-weight: 300; }
  .service-link { font-size: 0.82rem; font-weight: 700; color: var(--forest); text-decoration: none; letter-spacing: 0.04em; display: inline-flex; align-items: center; gap: 0.3rem; transition: gap 0.2s; }
  .service-link:hover { gap: 0.6rem; }

  /* PROCESS */
  .process { background: var(--forest); }
  .process-header { text-align: center; margin-bottom: 4rem; }
  .process-header .section-title { color: var(--white); }
  .process-header .section-eyebrow { color: var(--gold-light); }
  .process-header .section-lead { color: rgba(255,255,255,0.65); margin: 0 auto; }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 2.2rem;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,148,58,0.5) 20%, rgba(201,148,58,0.5) 80%, transparent);
    z-index: 0;
  }
  .process-step { text-align: center; padding: 0 1.5rem; position: relative; z-index: 1; }
  .process-num {
    width: 48px; height: 48px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 16px rgba(201,148,58,0.4);
  }
  .process-step-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.6rem; }
  .process-step-desc { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.6; font-weight: 300; }

  /* UPGRADES */
  .upgrades { background: var(--cream); }
  .upgrades-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .upgrades-visual {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid rgba(26,61,43,0.1);
  }
  .upgrade-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(26,61,43,0.08);
  }
  .upgrade-item:last-child { border-bottom: none; }
  .upgrade-icon-wrap {
    width: 48px; height: 48px;
    background: var(--forest);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
  }
  .upgrade-title { font-size: 0.95rem; font-weight: 700; color: var(--slate); margin-bottom: 0.2rem; }
  .upgrade-desc { font-size: 0.8rem; color: var(--slate-light); line-height: 1.4; }
  .upgrade-badge {
    margin-left: auto;
    background: rgba(61,122,85,0.1);
    color: var(--forest);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    letter-spacing: 0.08em;
    flex-shrink: 0;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }
  .upgrade-badge:hover {
    background: var(--forest);
    color: var(--white);
  }

  /* CONTACT */
  .contact { background: var(--white); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
  .contact-form-wrap {
    background: var(--cream);
    border-radius: 12px;
    padding: 2.5rem;
  }
  .form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--slate);
    margin-bottom: 0.5rem;
  }
  .form-sub { font-size: 0.88rem; color: var(--slate-light); margin-bottom: 2rem; }
  .form-group { margin-bottom: 1.2rem; }
  .form-label { font-size: 0.78rem; font-weight: 700; color: var(--slate); letter-spacing: 0.05em; display: block; margin-bottom: 0.4rem; }
  .form-input, .form-select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid rgba(26,61,43,0.15);
    border-radius: 6px;
    background: var(--white);
    font-family: 'Karla', sans-serif;
    font-size: 0.9rem;
    color: var(--slate);
    transition: border-color 0.2s;
    outline: none;
    -webkit-appearance: none;
  }
  .form-input:focus, .form-select:focus { border-color: var(--forest); }
  .form-select { cursor: pointer; }
  .btn-submit {
    width: 100%;
    background: var(--forest);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 6px;
    font-family: 'Karla', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: all 0.25s;
    margin-top: 0.5rem;
  }
  .btn-submit:hover { background: var(--forest-mid); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,61,43,0.3); }

  .contact-info { padding: 1rem 0; }
  .contact-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 2rem;
  }
  .contact-icon {
    width: 44px; height: 44px;
    background: rgba(26,61,43,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
  }
  .contact-detail-title { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate-light); margin-bottom: 0.3rem; }
  .contact-detail-val { font-size: 1rem; font-weight: 500; color: var(--slate); }
  .contact-detail-val a { color: var(--forest); text-decoration: none; }

  .compliance-note {
    background: rgba(26,61,43,0.05);
    border-left: 3px solid var(--forest-light);
    padding: 1rem 1.2rem;
    border-radius: 0 6px 6px 0;
    font-size: 0.8rem;
    color: var(--slate-light);
    line-height: 1.6;
    margin-top: 2rem;
  }

  /* FOOTER */
  footer {
    background: var(--slate);
    color: rgba(255,255,255,0.7);
    padding: 4rem 2.5rem 2rem;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 2rem;
  }
  .footer-brand { }
  .footer-logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.3rem;
  }
  .footer-logo-name span { color: var(--gold-light); }
  .footer-tag { font-size: 0.72rem; color: var(--teal); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
  .footer-desc { font-size: 0.85rem; line-height: 1.7; margin-bottom: 1.5rem; }
  .footer-heading { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); margin-bottom: 1rem; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
  .footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
  .footer-links a:hover { color: var(--gold-light); }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-legal { display: flex; gap: 1.5rem; }
  .footer-legal a { color: rgba(255,255,255,0.35); text-decoration: none; }
  .footer-legal a:hover { color: rgba(255,255,255,0.6); }

  /* SCROLL REVEAL */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* DIVIDER */
  .wave-divider { line-height: 0; }
  .wave-divider svg { display: block; width: 100%; }


/* ═══════════════════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 1024 px)
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 0 1.5rem; }
  .nav-links a { padding: 0.5rem 0.6rem; font-size: 0.82rem; }

  .hero-content { gap: 2rem; padding: 0 1.5rem; }
  .hero-title   { font-size: 2.4rem; }

  .about-grid   { gap: 3rem; }

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

  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .process-steps::before { display: none; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 768 px)
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Topbar ── */
  .topbar { display: none; }

  /* ── Nav ── */
  nav { padding: 0 1.2rem; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px; left: 0; right: 0;
    background: var(--white);
    padding: 0.5rem 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(26,61,43,0.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 999;
    list-style: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-links li  { width: 100%; }
  .nav-links a   { display: block; padding: 0.9rem 0; border-bottom: 1px solid rgba(26,61,43,0.06); border-radius: 0; font-size: 0.95rem; }

  .nav-ctas { display: none; }

  /* ── Hamburger ── */
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    margin-left: auto;
  }
  .nav-hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--slate);
    border-radius: 2px;
    transition: all 0.3s;
  }
  .nav-hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* ── Hero ── */
  .hero { min-height: auto; padding: 3.5rem 0; }
  .hero-content  { grid-template-columns: 1fr; gap: 2rem; padding: 0 1.2rem; }
  .hero-right    { display: none; }
  .hero-title    { font-size: 2rem; }
  .hero-sub      { font-size: 0.9rem; }
  .hero-actions  { flex-direction: column; }
  .btn-hero-primary,
  .btn-hero-ghost { width: 100%; text-align: center; justify-content: center; }

  /* ── Trust strip ── */
  .trust-strip  { padding: 1.5rem 1.2rem; gap: 1rem; flex-direction: column; align-items: flex-start; }
  .trust-items  { flex-wrap: wrap; gap: 0.8rem; }

  /* ── Sections ── */
  section { padding: 3.5rem 1.2rem; }
  footer  { padding: 3rem 1.2rem 1.5rem; }

  /* ── About ── */
  .about-grid       { grid-template-columns: 1fr; gap: 2rem; align-items: start; }
  .about-image-wrap { min-height: 260px; }

  /* ── Services ── */
  .services-grid { grid-template-columns: 1fr; }

  /* ── Process ── */
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-steps::before { display: none; }
  .process-step  { padding: 0 0.8rem; }

  /* ── Upgrades ── */
  .upgrades-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* ── Certs / qualifications ── */
  .certs-grid,
  .quals-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }

  /* ── Contact ── */
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* ── Footer ── */
  .footer-top    { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  (≤ 480 px)
═══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-title    { font-size: 1.75rem; }
  .section-title { font-size: 1.6rem !important; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-top    { grid-template-columns: 1fr; }
  .trust-items   { flex-direction: column; }
  .hero-eyebrow  { font-size: 0.68rem; }
  .about-image-wrap { min-height: 220px; }
  .upgrades-visual  { padding: 1.5rem; }
  .contact-form-wrap { padding: 1.5rem; }
}
