/* ============================================================
   ARES ENERGY — HOME PAGE VISUAL ENHANCEMENT
   Comprehensive UI beautification for all sections
   ============================================================ */

/* ── GLOBAL ANIMATION KEYFRAMES ─────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes shimmerPulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(243, 139, 42, 0.3), 0 0 40px rgba(243, 139, 42, 0.1);
    }

    50% {
        box-shadow: 0 0 40px rgba(243, 139, 42, 0.5), 0 0 80px rgba(243, 139, 42, 0.2);
    }
}

@keyframes lineGrow {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-12px) rotate(1deg);
    }

    66% {
        transform: translateY(-6px) rotate(-1deg);
    }
}

@keyframes dotBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}


/* ── TOP BAR ─────────────────────────────────────────────── */
.top-bar {
    background: linear-gradient(90deg, #0b1c2e 0%, #0d2340 50%, #0b1c2e 100%);
    border-bottom: 1px solid rgba(243, 139, 42, 0.2);
}

.top-bar a {
    background: linear-gradient(90deg, #f38b2a, #f5a855);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.top-bar a:hover {
    text-decoration: none;
    filter: brightness(1.15);
}

/* ── HEADER ──────────────────────────────────────────────── */
.main-header {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.main-header.scrolled {
    box-shadow: 0 4px 30px rgba(11, 28, 46, 0.1), 0 1px 0 rgba(0, 0, 0, 0.06);
}

/* Logo icon — orange gradient */
.logo-icon {
    background: linear-gradient(135deg, #f38b2a 0%, #e8750f 100%);
    box-shadow: 0 4px 12px rgba(243, 139, 42, 0.3);
    border-radius: 10px;
    width: 44px;
    height: 44px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-area:hover .logo-icon {
    transform: rotate(-8deg) scale(1.08);
    box-shadow: 0 6px 18px rgba(243, 139, 42, 0.45);
}

/* CTA button — gradient */
.cta-btn {
    background: linear-gradient(135deg, #f38b2a 0%, #e8750f 100%);
    box-shadow: 0 4px 14px rgba(243, 139, 42, 0.35);
    letter-spacing: 0.01em;
    font-size: 0.875rem;
    transition: all 0.25s ease;
}

.cta-btn:hover {
    background: linear-gradient(135deg, #f5a032 0%, #f38b2a 100%);
    box-shadow: 0 6px 20px rgba(243, 139, 42, 0.5);
    transform: translateY(-2px);
}

/* ── HERO SECTION ────────────────────────────────────────── */
/* ── HERO SECTION ────────────────────────────────────────── */
.hero-section {
    background:
        radial-gradient(ellipse at 70% 30%, rgba(243, 139, 42, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 10% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 0%, rgba(243, 139, 42, 0.04) 0%, transparent 60%),
        linear-gradient(160deg, #ffffff 0%, #fdfbf7 45%, #f4f8fe 100%);
    background-size: auto;
    padding: 6rem 0 7rem;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(243, 139, 42, 0.1);
    color: var(--color-primary);
}

/* Remove the dark vignette overlay from style.css */
.hero-section::after {
    display: none;
}

/* Ensure canvas doesn't break overflow */
#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 1;
    /* Full opacity on light background */
}

/* Make sure container sits above canvas */
.hero-container {
    position: relative;
    z-index: 1;
}

.hero-section .text-orange {
    text-shadow: none;
    color: var(--color-accent);
}

/* Hero badge — on light bg */
.hero-badge {
    background: rgba(243, 139, 42, 0.08);
    border: 1px solid rgba(243, 139, 42, 0.3);
    color: #c05f00;
    padding: 0.5rem 1.25rem;
    animation: fadeIn 0.8s ease forwards;
}

.hero-badge .dot {
    background: #f38b2a;
    animation: dotBlink 2s ease infinite;
    box-shadow: 0 0 6px rgba(243, 139, 42, 0.6);
}

/* Hero h1 — dark on light bg */
.hero-section h1 {
    font-size: clamp(2.5rem, 4.5vw, 4.25rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.035em;
    color: var(--color-primary);
    animation: fadeUp 0.8s 0.15s ease both;
}

.hero-description {
    animation: fadeUp 0.8s 0.3s ease both;
    font-size: 1.15rem;
    color: #4b5563;
    max-width: 520px;
}

.hero-actions {
    animation: fadeUp 0.8s 0.45s ease both;
}

/* Primary button — gradient + glow */
.btn-primary {
    background: linear-gradient(135deg, #f38b2a 0%, #e8750f 100%);
    border: none;
    box-shadow: 0 6px 20px rgba(243, 139, 42, 0.4), 0 2px 6px rgba(0, 0, 0, 0.2);
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
    transition: all 0.25s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f5a032 0%, #f38b2a 100%);
    box-shadow: 0 10px 30px rgba(243, 139, 42, 0.55), 0 4px 10px rgba(0, 0, 0, 0.25);
    transform: translateY(-3px);
}

.btn-primary svg {
    transition: transform 0.25s ease;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

/* Secondary button — dark text on light hero bg */
.btn-secondary {
    border: 1.5px solid rgba(11, 28, 46, 0.2);
    color: var(--color-primary);
    background: rgba(11, 28, 46, 0.04);
    font-size: 0.9375rem;
    transition: all 0.25s ease;
}

.btn-secondary:hover {
    background: rgba(11, 28, 46, 0.08);
    border-color: rgba(11, 28, 46, 0.3);
    transform: translateY(-2px);
}

/* Trust badges — visible on light hero bg */
.hero-trust-badges {
    animation: fadeUp 0.8s 0.6s ease both;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(11, 28, 46, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
    color: var(--color-text-dark);
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(243, 139, 42, 0.3);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.trust-badge svg {
    width: 16px;
    height: 16px;
}

/* Hero responsive image with background aesthetic effect */
.hero-image-wrapper {
    position: relative;
    animation: fadeIn 1s 0.3s ease both;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Aesthetic glowing background shape behind image */
.hero-image-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(243, 139, 42, 0.15), rgba(59, 130, 246, 0.1));
    border-radius: 24px;
    transform: rotate(-3deg) scale(1.05);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: -1;
}

.hero-image-wrapper:hover::before {
    transform: rotate(0deg) scale(1.02);
}

.hero-img {
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
    box-shadow:
        0 0 0 1px rgba(243, 139, 42, 0.12),
        0 30px 70px rgba(11, 28, 46, 0.18),
        0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-image-wrapper:hover .hero-img {
    transform: scale(1.02) translateY(-4px);
}

.hero-img-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(243, 139, 42, 0.12) 0%, transparent 60%);
    z-index: -2;
    pointer-events: none;
}


/* ── DIFFERENCE SECTION ──────────────────────────────────── */
.difference-section {
    padding: 7rem 0;
    background: #ffffff;
    background-image:
        radial-gradient(ellipse at 50% 0%, rgba(243, 139, 42, 0.04) 0%, transparent 60%),
        linear-gradient(to right, #f1f5f9 1px, transparent 1px),
        linear-gradient(to bottom, #f1f5f9 1px, transparent 1px);
    background-size: auto, 64px 64px, 64px 64px;
    position: relative;
}

.difference-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(243, 139, 42, 0.4), transparent);
}

.badge-pill {
    background: linear-gradient(135deg, #fff7ed, #fef3e2);
    border: 1px solid rgba(243, 139, 42, 0.25);
    color: #c9680f;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    box-shadow: 0 2px 8px rgba(243, 139, 42, 0.15);
    text-transform: uppercase;
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-pill svg {
    width: 13px;
    height: 13px;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.text-grad {
    background: linear-gradient(135deg, #64748b 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.highlight-yellow {
    background: linear-gradient(to bottom, transparent 55%, #fde68a 55%);
    padding: 0 0.15rem;
    font-weight: 700;
    color: #92400e;
    border-radius: 2px;
}

.link-cta {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.25s ease;
    border-bottom: 2px solid rgba(243, 139, 42, 0.25);
    padding-bottom: 2px;
}

.link-cta:hover {
    gap: 1.25rem;
    border-bottom-color: var(--color-accent);
}

.circle-icon {
    background: linear-gradient(135deg, #fff7ed, #fef3e2);
    border-radius: 50%;
    padding: 5px;
    width: 28px;
    height: 28px;
    transition: all 0.25s ease;
    border: 1px solid rgba(243, 139, 42, 0.2);
}

.link-cta:hover .circle-icon {
    background: var(--color-accent);
    color: white;
    transform: rotate(-45deg) scale(1.1);
    border-color: var(--color-accent);
}

/* ── COMPLETE ENERGY SERVICES ────────────────────────────── */
.complete-services-section {
    padding: 3rem 0 6rem;
    background: #fafbfc;
    background-image: radial-gradient(ellipse at 100% 0%, rgba(243, 139, 42, 0.03) 0%, transparent 50%);
}

.services-title {
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.025em;
}

.btn-pill-outline {
    border: 1.5px solid #e5e7eb;
    border-radius: 9999px;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-pill-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: #fff7ed;
    box-shadow: 0 4px 12px rgba(243, 139, 42, 0.15);
    transform: translateY(-1px);
}

.btn-pill-outline svg {
    width: 15px;
    height: 15px;
    transition: transform 0.25s ease;
}

.btn-pill-outline:hover svg {
    transform: translateX(3px);
}

/* ── SERVICE PHOTO CARDS ─────────────────────────────────── */
.service-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0,0,0,0.06);
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.13), 0 8px 20px rgba(0, 0, 0, 0.07);
    border-color: transparent;
}

/* Photo area */
.svc-photo {
    position: relative;
    height: 195px;
    width: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.svc-photo-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .svc-photo-inner {
    transform: scale(1.07);
}

.svc-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,18,40,0.08) 0%, rgba(10,18,40,0.52) 100%);
    z-index: 1;
}

/* Accent tag on photo */
.svc-tag {
    position: absolute;
    bottom: 14px;
    left: 16px;
    z-index: 2;
    background: rgba(243, 139, 42, 0.92);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

/* Orange bottom border that appears on hover */
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f38b2a, #fbbf24);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    z-index: 2;
}

.service-card:hover::after {
    transform: scaleX(1);
}

/* Content body */
.svc-body {
    padding: 1.5rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bg-yellow-light {
    background: linear-gradient(135deg, #fff7ed, #feecd7);
}

.bg-blue-light {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.bg-purple-light {
    background: linear-gradient(135deg, #faf5ff, #ede9fe);
}

.bg-teal-light {
    background: linear-gradient(135deg, #f0fdfa, #ccfbf1);
}

.bg-red-light {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
}

.bg-green-light {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.svc-body h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}

.svc-body p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.65;
    margin-bottom: auto;
    padding-bottom: 1.25rem;
}

.card-learn-more {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.2s ease;
    letter-spacing: 0.01em;
    margin-top: 1rem;
    border-top: 1px solid #f0f0f0;
    padding-top: 1rem;
}

.service-card:hover .card-learn-more {
    gap: 0.8rem;
}

.card-learn-more svg {
    width: 15px;
    height: 15px;
    transition: transform 0.2s ease;
}

.service-card:hover .card-learn-more svg {
    transform: translateX(3px);
}

.card-learn-more:hover svg {
    transform: translateX(3px);
}

/* ── WHY CHOOSE ARES ─────────────────────────────────────── */
.why-choose-section {
    padding: 7rem 0;
    background: #050b14;
    background-image:
        radial-gradient(ellipse at 0% 50%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 50%, rgba(243, 139, 42, 0.06) 0%, transparent 50%),
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: auto, auto, 48px 48px, 48px 48px;
    overflow: hidden;
}

.why-title {
    font-size: clamp(1.875rem, 3vw, 2.625rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    letter-spacing: -0.025em;
    color: #ffffff;
}

/* Why choose section — all text white on dark bg */
.why-choose-section p,
.why-choose-section span:not(.check-icon *) {
    color: rgba(255, 255, 255, 0.75);
}

.why-choose-section h2,
.why-choose-section h3 {
    color: #ffffff;
}

.why-list li {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.82);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: padding-left 0.2s ease;
}

.why-list li:last-child {
    border-bottom: none;
}

.why-list li:hover {
    padding-left: 4px;
}

.check-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, rgba(243, 139, 42, 0.2), rgba(243, 139, 42, 0.1));
    border: 1px solid rgba(243, 139, 42, 0.3);
    border-radius: 50%;
    flex-shrink: 0;
}

.check-icon svg {
    width: 13px;
    height: 13px;
    color: #f38b2a;
    stroke-width: 3;
}

.why-quote {
    border-left: 3px solid var(--color-accent);
    padding: 1.25rem 1.5rem;
    background: rgba(243, 139, 42, 0.05);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #9ca3af;
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-top: 0.5rem;
    position: relative;
}

.why-quote::before {
    content: '"';
    position: absolute;
    top: -1.5rem;
    left: 1rem;
    font-size: 4rem;
    line-height: 1;
    color: rgba(243, 139, 42, 0.15);
    font-style: normal;
    font-weight: 900;
}

/* Why image */
.why-image-wrapper {
    width: 100%;
    height: 100%;
    min-height: 460px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 10px 20px rgba(0, 0, 0, 0.3);
}

.why-img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    object-position: 70% top;
    display: block;
    border-radius: 24px;
    transition: transform 0.5s ease;
}

.why-image-wrapper:hover .why-img {
    transform: scale(1.03);
}

/* ── HIDDEN DANGERS SECTION ──────────────────────────────── */
.hidden-dangers-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, #fffbf7 0%, #ffffff 60%, #f8faff 100%);
    position: relative;
    overflow: hidden;
}

.hidden-dangers-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243, 139, 42, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.pill-red {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #dc2626;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.1);
}

.danger-list li {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #374151;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: padding-left 0.2s ease;
}

.danger-list li:last-child {
    border-bottom: none;
}

.danger-list li:hover {
    padding-left: 4px;
}

.x-icon {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.12);
}

.x-icon svg {
    width: 15px;
    height: 15px;
    stroke-width: 3;
}

.btn-dark-solid {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.25s ease;
}

.btn-dark-solid:hover {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.btn-dark-solid svg {
    transition: transform 0.25s ease;
}

.btn-dark-solid:hover svg {
    transform: translateX(4px);
}

/* Feature cards (dangers grid) */
.feature-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 24px;
    padding: 2.75rem 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    gap: 1.25rem;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.feature-card span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.01em;
}

/* ── PROCESS SECTION ─────────────────────────────────────── */
.process-section {
    padding: 7rem 0;
    background: #f8fafc;
    background-image:
        radial-gradient(ellipse at 50% 100%, rgba(243, 139, 42, 0.04) 0%, transparent 60%);
}

.process-section .section-title {
    font-size: clamp(1.875rem, 3vw, 2.75rem);
    margin-bottom: 1rem;
}

/* Section title helper for process */
.process-section>.container>.section-title.text-center::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #f38b2a, #fbbf24);
    border-radius: 99px;
    margin: 1.25rem auto 0;
}

.process-steps {
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 1rem;
}

.process-line {
    top: 50px;
    height: 2px;
    background: linear-gradient(90deg, #fde68a 0%, #f38b2a 50%, #fde68a 100%);
    opacity: 0.6;
    border-radius: 2px;
}

.step-icon-wrapper {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border: 5px solid #f8fafc;
    margin-bottom: -44px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 3;
}

.process-step:hover .step-icon-wrapper {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.bg-orange-solid {
    background: linear-gradient(135deg, #f38b2a, #e8750f);
}

.bg-dark-solid {
    background: linear-gradient(135deg, #1f2937, #111827);
}

.step-icon-wrapper svg {
    width: 34px;
    height: 34px;
    stroke-width: 1.75;
}

.step-card {
    background: #ffffff;
    border: 1px solid #f0f2f5;
    border-radius: 24px;
    padding: 4rem 2rem 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05), 0 1px 4px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: 1.5px solid transparent;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(135deg, rgba(243, 139, 42, 0.2), transparent) border-box;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.process-step:hover .step-card {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.process-step:hover .step-card::before {
    opacity: 1;
}

/* Ensure content sits above the ::before gradient overlay */
.step-card>* {
    position: relative;
    z-index: 1;
}

.step-number {
    position: relative;
    /* Override absolute position from style.css */
    top: auto;
    right: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #fff7ed, #fef3e2);
    color: var(--color-accent);
    border: 1px solid rgba(243, 139, 42, 0.2);
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    box-shadow: none;
    /* Override style.css shadow */
}

.step-card h3 {
    font-size: 1.1875rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 0.875rem;
}

.step-card p {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.65;
}

/* ── REAL WORLD RESULTS ──────────────────────────────────── */
.results-section {
    padding: 7rem 0;
    background: #ffffff;
    background-image: radial-gradient(ellipse at 50% 0%, rgba(11, 28, 46, 0.03) 0%, transparent 60%);
}

.results-header {
    margin-bottom: 3.5rem;
    align-items: flex-end;
    gap: 2rem;
}

.results-header .section-title {
    font-size: clamp(1.875rem, 3vw, 2.75rem);
}

.results-header .section-desc {
    font-size: 1.05rem;
    margin-bottom: 0;
    color: #6b7280;
}

/* Case cards */
.case-card {
    background: #f9fafb;
    border-radius: 24px;
    padding: 2.25rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
}

.case-badge {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #9ca3af;
    padding: 0.3rem 0.875rem;
    text-transform: uppercase;
}

.case-link {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.2s ease;
}

.case-link:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    transform: scale(1.1) rotate(-10deg);
}

.case-title {
    font-size: 1.4375rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.case-detail-box {
    background: #ffffff;
    border-radius: 14px;
    padding: 1.125rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 0.875rem;
    transition: border-color 0.2s ease;
}

.case-card:hover .case-detail-box {
    border-color: rgba(0, 0, 0, 0.1);
}

.detail-label {
    font-size: 0.6rem;
    font-weight: 800;
    color: #9ca3af;
    letter-spacing: 0.1em;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.detail-row p {
    font-size: 0.9375rem;
    color: #374151;
    font-weight: 500;
    line-height: 1.5;
}

.case-result-footer {
    background: linear-gradient(135deg, #050b14 0%, #0d1f35 100%);
    border-radius: 14px;
    padding: 1.125rem 1.25rem;
    margin-top: 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.result-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #10b981;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    flex-shrink: 0;
}

.result-icon svg {
    width: 13px;
    height: 13px;
    stroke-width: 3;
}

.result-label {
    font-size: 0.6rem;
    font-weight: 800;
    color: rgba(156, 163, 175, 0.7);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.result-text {
    font-weight: 700;
    font-size: 0.9375rem;
    color: #f3f4f6;
}

/* ── AUSTRALIAN STANDARDS SECTION ───────────────────────── */
.standards-section {
    padding: 7rem 0;
    background: #050b14;
    background-image:
        radial-gradient(ellipse at 0% 100%, rgba(59, 130, 246, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 0%, rgba(243, 139, 42, 0.08) 0%, transparent 50%),
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: auto, auto, 48px 48px, 48px 48px;
    overflow: hidden;
    position: relative;
}

.standards-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(243, 139, 42, 0.3), transparent);
}

.pill-gold {
    background: linear-gradient(135deg, rgba(243, 139, 42, 0.12), rgba(243, 139, 42, 0.06));
    border: 1px solid rgba(243, 139, 42, 0.3);
    color: #f5a855;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    box-shadow: 0 2px 10px rgba(243, 139, 42, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
}

.pill-gold svg {
    width: 13px;
    height: 13px;
    color: #f38b2a;
}

.standards-title {
    font-size: clamp(1.875rem, 3vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 1.5rem 0 1.25rem;
    letter-spacing: -0.025em;
    color: white;
}

.standards-desc {
    font-size: 1.05rem;
    color: #9ca3af;
    line-height: 1.7;
    max-width: 480px;
}

/* Standards grid cards */
.std-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.375rem 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #e2e8f0;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    cursor: default;
    backdrop-filter: blur(4px);
}

.std-card svg {
    color: var(--color-accent);
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.std-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(243, 139, 42, 0.35);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(243, 139, 42, 0.2);
}

.std-card:hover svg {
    transform: scale(1.15) rotate(-10deg);
}

/* ── FAQ SECTION ─────────────────────────────────────────── */
.faq-section {
    padding: 7rem 0;
    background: #f8fafc;
    background-image:
        radial-gradient(ellipse at 50% 50%, rgba(243, 139, 42, 0.03) 0%, transparent 60%);
}

.faq-section .section-title {
    font-size: clamp(1.875rem, 3vw, 2.75rem);
}

.faq-section .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #f38b2a, #fbbf24);
    border-radius: 99px;
    margin: 1.25rem auto 0;
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
    gap: 10px;
    display: flex;
    flex-direction: column;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    position: relative;
}

.faq-item:hover {
    border-color: rgba(243, 139, 42, 0.3);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}

.faq-item.active,
.faq-item.open {
    border-color: #f38b2a;
    box-shadow: 0 8px 24px rgba(243, 139, 42, 0.12);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    min-height: 52px;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.01em;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease, color 0.2s ease;
}

.faq-question:hover {
    background: #fff8f0;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: #9ca3af;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), color 0.2s ease;
}

.faq-item.active .faq-question,
.faq-item.open .faq-question {
    color: #f38b2a;
    background: #fff8f0;
}

.faq-item.active .faq-question svg,
.faq-item.open .faq-question svg {
    transform: rotate(180deg);
    color: #f38b2a;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1), padding 0.2s ease, opacity 0.25s ease;
    opacity: 0;
}

.faq-item.active .faq-answer,
.faq-item.open .faq-answer {
    max-height: 1000px;
    padding-bottom: 1.5rem;
    opacity: 1;
}

.faq-answer p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
    border-top: 1px solid #f3f4f6;
    padding: 1rem 0 1.2rem 0;
    margin: 0;
}

/* ── FAQ — <details>/<summary> accordion style ──────────── */
/* Used on battery/AC sub-pages that render native details elements */
details.faq-details,
.container details,
.bi-why-section details {
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 10px !important;
    overflow: hidden;
    margin-bottom: 10px !important;
    padding: 0 !important;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

.container details:hover,
.bi-why-section details:hover {
    border-color: rgba(243, 139, 42, 0.3) !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.container details[open],
.bi-why-section details[open] {
    border-color: #f38b2a !important;
    box-shadow: 0 4px 16px rgba(243, 139, 42, 0.1);
}

.container details > summary,
.bi-why-section details > summary {
    list-style: none !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 1.125rem 1.5rem !important;
    min-height: 52px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    color: #0f172a !important;
    cursor: pointer !important;
    background: none !important;
    transition: background 0.2s ease, color 0.2s ease;
    line-height: 1.4;
}

.container details > summary::-webkit-details-marker,
.bi-why-section details > summary::-webkit-details-marker {
    display: none;
}

.container details > summary::marker,
.bi-why-section details > summary::marker {
    content: none;
}

.container details > summary:hover,
.bi-why-section details > summary:hover {
    background: #fff8f0 !important;
}

.container details[open] > summary,
.bi-why-section details[open] > summary {
    color: #f38b2a !important;
    background: #fff8f0 !important;
}

/* The + span inside summary */
.container details > summary > span,
.bi-why-section details > summary > span {
    flex-shrink: 0;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 28px !important;
    height: 28px !important;
    background: #fff3e6 !important;
    border-radius: 50% !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #f38b2a !important;
    transition: background 0.2s ease, transform 0.3s ease;
    line-height: 1 !important;
}

.container details[open] > summary > span,
.bi-why-section details[open] > summary > span {
    background: #f38b2a !important;
    color: #fff !important;
    transform: rotate(45deg);
}

.container details > p,
.bi-why-section details > p {
    margin: 0 !important;
    padding: 0 1.5rem 1.25rem 1.5rem !important;
    color: #475569 !important;
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
    border-top: 1px solid #f3f4f6;
}

/* Mobile adjustments for details FAQ */
@media (max-width: 480px) {
    .container details > summary,
    .bi-why-section details > summary {
        font-size: 0.9rem !important;
        padding: 0.9rem 1.125rem !important;
    }

    .container details > p,
    .bi-why-section details > p {
        padding: 0 1.125rem 1rem 1.125rem !important;
        font-size: 0.875rem !important;
    }
}

/* ── CONTACT SECTION ─────────────────────────────────────── */
.contact-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 50%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243, 139, 42, 0.06), transparent 70%);
    pointer-events: none;
}

.badge-pill.pill-gold {
    margin-bottom: 1.25rem;
}

.contact-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--color-primary);
    margin: 1.25rem 0 1.25rem;
}

.contact-desc {
    font-size: 1.0625rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 440px;
}

/* Call Widget */
.call-widget {
    background: white;
    border: 1.5px solid #e8ecf0;
    border-radius: 20px;
    padding: 1.5rem 2rem;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    min-width: 280px;
    margin-bottom: 2rem;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.call-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f38b2a, #fbbf24);
}

.call-widget:hover {
    border-color: rgba(243, 139, 42, 0.3);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.call-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    font-weight: 800;
    color: #9ca3af;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.call-header svg {
    width: 14px;
    height: 14px;
    color: var(--color-accent);
}

.call-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 0.375rem;
    transition: color 0.2s ease;
}

.call-number:hover {
    color: var(--color-accent);
}

.call-hours {
    font-size: 0.8125rem;
    color: #64748b;
    font-weight: 500;
}

.trust-checks {
    gap: 0.875rem;
    display: flex;
    flex-direction: column;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.9375rem;
    color: #374151;
}

.check-item svg {
    width: 20px;
    height: 20px;
    color: #10b981;
    flex-shrink: 0;
}

/* Form Card */
.form-card {
    background: white;
    border-radius: 28px;
    padding: 3rem 3rem 2.5rem;
    border-top: 5px solid transparent;
    border-image: linear-gradient(90deg, #f38b2a, #fbbf24) 1;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.1),
        0 8px 20px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-radius: 28px;
    position: relative;
    overflow: hidden;
}

/* Gradient top border via pseudo-element (border-image can't work with border-radius) */
.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #f38b2a, #fbbf24, #f38b2a);
    border-radius: 28px 28px 0 0;
}

.form-card {
    border-top: none;
}

.form-card h3 {
    font-size: 1.625rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 2rem;
    letter-spacing: -0.025em;
}

/* Form inputs */
.form-group label {
    font-size: 0.65rem;
    font-weight: 800;
    color: #9ca3af;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #f9fafb;
    border: 1.5px solid #e8ecf0;
    border-radius: 10px;
    padding: 0.875rem 1.125rem;
    font-size: 0.9375rem;
    color: #1f2937;
    font-family: inherit;
    font-weight: 500;
    transition: all 0.2s ease;
    width: 100%;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #cbd5e1;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(243, 139, 42, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #c0cad4;
    font-weight: 400;
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-group select {
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239ca3af' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 2.5rem;
}

.btn-dark-full {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    padding: 1.0625rem;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    width: 100%;
    margin-top: 0.5rem;
}

.btn-dark-full:hover {
    background: linear-gradient(135deg, #1e293b, #111827);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.btn-dark-full svg {
    width: 16px;
    height: 16px;
    transition: transform 0.25s ease;
}

.btn-dark-full:hover svg {
    transform: translateX(4px);
}

.form-note {
    font-size: 0.8rem;
    color: #9ca3af;
    text-align: center;
    margin-top: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.form-note::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
}



/* ── MOBILE BOTTOM BAR ───────────────────────────────────── */
.btn-primary-full {
    background: linear-gradient(135deg, #f38b2a, #e8750f);
    box-shadow: 0 4px 12px rgba(243, 139, 42, 0.35);
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
    transition: all 0.2s ease;
}

.btn-primary-full:active {
    transform: scale(0.98);
    box-shadow: 0 2px 6px rgba(243, 139, 42, 0.25);
}

.btn-secondary-full {
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.875rem;
    gap: 0.4rem;
    transition: all 0.2s ease;
}

.btn-secondary-full:active {
    background: rgba(255, 255, 255, 0.1);
}

/* ── RESPONSIVE REFINEMENTS ──────────────────────────────── */
@media (max-width: 1024px) {
    .hero-section {
        padding: 4.5rem 0 5.5rem;
    }

}

@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0 5rem;
    }

    .hero-section h1 {
        font-size: clamp(2rem, 7vw, 2.75rem);
    }

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .difference-section,
    .complete-services-section,
    .why-choose-section,
    .hidden-dangers-section,
    .process-section,
    .results-section,
    .standards-section,
    .faq-section,
    .contact-section {
        padding: 4.5rem 0;
    }

    .section-title {
        font-size: clamp(1.75rem, 5.5vw, 2.25rem);
    }

    .services-title {
        font-size: 1.625rem;
    }

    .why-title {
        font-size: 1.75rem;
    }

    .standards-title {
        font-size: 1.875rem;
    }

    .contact-title {
        font-size: 2rem;
    }

    .step-card {
        padding: 3.5rem 1.5rem 2rem;
    }

    .step-icon-wrapper {
        width: 72px;
        height: 72px;
        margin-bottom: -36px;
    }

    .step-icon-wrapper svg {
        width: 28px;
        height: 28px;
    }

    .form-card {
        padding: 2rem 1.75rem;
        border-radius: 20px;
    }

    .form-card h3 {
        font-size: 1.375rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-desc {
        max-width: 100%;
    }

    .results-header {
        flex-direction: column;
        align-items: flex-start;
    }

    /* FAQ mobile — 768px */
    .faq-list {
        max-width: 100%;
        gap: 8px;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 1rem 1.125rem;
    }

    .faq-header h2 {
        font-size: 1.6rem;
    }

    .rae-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-trust-badges {
        flex-direction: column;
        gap: 0.5rem;
    }

    .trust-badge {
        justify-content: center;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .std-card {
        padding: 1rem 1.25rem;
        font-size: 0.875rem;
    }

    .std-card svg {
        width: 18px;
        height: 18px;
    }

    .call-widget {
        min-width: unset;
        width: 100%;
    }

    .call-number {
        font-size: 1.875rem;
    }

    .form-card {
        padding: 1.5rem 1.25rem;
    }

    /* FAQ mobile — 480px */
    .faq-question {
        font-size: 0.9rem;
        padding: 0.875rem 1rem;
    }

    .faq-answer {
        padding: 0 1rem;
    }

    .faq-item.active .faq-answer,
    .faq-item.open .faq-answer {
        padding: 0 1rem 1rem 1rem;
    }

    .faq-answer p,
    .faq-answer-inner {
        font-size: 0.875rem;
    }

    .faq-header h2 {
        font-size: 1.4rem;
    }
}