/* ============================================
   WOMTECH — Global Styles
   ============================================ */

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

:root {
    /* Fixed palette */
    --navy: #08233d;
    --amber: #c9a84c;
    --amber-dark: #a8872e;
    --silver: #a8b4c4;
    --white: #ffffff;

    /* Semantic theme vars — defaults: T2 Pure Noir */
    --bg:         #0a0a0a;
    --bg-nav:     #141414;
    --bg-hero:    #0c141d;
    --bg-dark:    #111111;
    --bg-section: #171717;
    --bg-card:    #1e1e1e;
    --bg-tag:     #252525;
    --fg:         #e0e0e0;
    --fg-muted:   #6a6a6a;
    --bd:         #282828;
}

/* ---- T1: Midnight Navy ---- */
body.t1 {
    --bg: #060e1a; --bg-nav: #0d1828; --bg-hero: #08101e; --bg-dark: #0a1828;
    --bg-section: #0d1c30; --bg-card: #112238; --bg-tag: #162a42;
    --fg: #b8ccde; --fg-muted: #567898; --bd: #1a3050;
}
/* ---- T2: Pure Noir ---- */
body.t2 {
    --bg: #0a0a0a; --bg-nav: #141414; --bg-hero: #0c141d; --bg-dark: #111111;
    --bg-section: #171717; --bg-card: #1e1e1e; --bg-tag: #252525;
    --fg: #e0e0e0; --fg-muted: #6a6a6a; --bd: #282828;
}
/* ---- T3: Gunmetal ---- */
body.t3 {
    --bg: #0e1318; --bg-nav: #1a2028; --bg-hero: #0c141d; --bg-dark: #141c26;
    --bg-section: #16202a; --bg-card: #1e2830; --bg-tag: #242e38;
    --fg: #ccd6e0; --fg-muted: #627888; --bd: #252e3a;
}
/* ---- T4: Carbon + Gold ---- */
body.t4 {
    --bg: #0f0d0a; --bg-nav: #1a1816; --bg-hero: #0c141d; --bg-dark: #161410;
    --bg-section: #1c1a16; --bg-card: #24201c; --bg-tag: #2c2824;
    --fg: #ddd4c0; --fg-muted: #7a7060; --bd: #302c24;
}
/* ---- T5: Deep Charcoal ---- */
body.t5 {
    --bg: #111214; --bg-nav: #1a1c1e; --bg-hero: #0c141d; --bg-dark: #161a1e;
    --bg-section: #1c2024; --bg-card: #24282c; --bg-tag: #2c3034;
    --fg: #d0d4da; --fg-muted: #687078; --bd: #2c3034;
}

/* ---- L1: Clean White ---- */
body.l1 {
    --bg: #f8f9fa; --bg-nav: #08233d; --bg-hero: #08233d; --bg-dark: #08233d;
    --bg-section: #eef0f4; --bg-card: #ffffff; --bg-tag: #e4e8ee;
    --fg: #1a2430; --fg-muted: #6a7a8a; --bd: #d4dae4;
}
/* ---- L2: Warm Paper ---- */
body.l2 {
    --bg: #f5f2ec; --bg-nav: #1a1612; --bg-hero: #0c141d; --bg-dark: #1a1208;
    --bg-section: #ece8de; --bg-card: #faf8f4; --bg-tag: #e0d8cc;
    --fg: #2a1e10; --fg-muted: #7a6a50; --bd: #d0c8b8;
}
/* ---- L3: Cool Slate ---- */
body.l3 {
    --bg: #f0f4f8; --bg-nav: #162030; --bg-hero: #0c141d; --bg-dark: #0f1e2e;
    --bg-section: #e2eaf2; --bg-card: #ffffff; --bg-tag: #d4e0ec;
    --fg: #182438; --fg-muted: #526878; --bd: #c4d4e4;
}

html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--fg);
    background: var(--bg);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */

.announcement-bar {
    background: var(--amber);
    color: #1a1000;
    text-align: center;
    padding: 10px 24px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 101;
}

.announcement-bar a {
    color: #1a1000;
    text-decoration: underline;
    opacity: 0.75;
}

/* ============================================
   NAV
   ============================================ */

.nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--bg-nav);
    border: 1px solid rgba(255,255,255,0.06);
    border-width: 1px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 60px;
    height: 100px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1100px;
}

.nav-logo {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    flex-shrink: 0;
}

.nav-logo img {
    width: auto;
    height: 70px;
    object-fit: contain;
    margin-left: -12px;
}

.nav-logo span {
    color: var(--amber);
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s ease;
}

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

.nav-links .nav-cta {
    background: var(--amber);
    color: var(--navy);
    padding: 8px 20px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.nav-links .nav-cta:hover {
    background: var(--amber-dark);
    color: var(--navy);
}

/* ============================================
   HERO
   ============================================ */

.hero {
    background: var(--bg-hero);
    padding: 160px 60px 100px;
    /* min-height: 80vh; */
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            rgba(255,255,255,0.025) 0px,
            rgba(255,255,255,0.025) 1px,
            transparent 1px,
            transparent 40px
        );
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--bg-hero));
    pointer-events: none;
}

/* --- Sun (5 versions, toggled by .sun-v# on .hero) --- */
.hero-sun, .hero-sun::before, .hero-sun::after {
    content: '';
    border-radius: 50%;
    pointer-events: none;
}
.hero-sun {
    position: absolute;
    z-index: 1;
    animation: sun-bloom 5s ease-in-out infinite;
}
.hero-sun::before, .hero-sun::after {
    content: '';
    position: absolute;
}

/* Solar Corona */
.hero.sun-v3 .hero-sun {
    top: -1110px;
    right: -690px;
    width: 2000px;
    height: 2000px;
    background: radial-gradient(circle,
        #fff 0%, #fff 8%,
        #fff5aa 14%, rgba(255,200,0,0.72) 20%,
        rgba(255,140,0,0.38) 32%,
        rgba(255,80,0,0.1) 46%,
        transparent 58%
    );
}
.hero.sun-v3 .hero-sun::before {
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 4000px; height: 4000px;
    background: radial-gradient(circle,
        rgba(255,180,40,0.2) 0%,
        rgba(255,100,0,0.07) 38%,
        rgba(255,60,0,0.02) 58%,
        transparent 70%
    );
    animation: sun-bloom 7s ease-in-out infinite reverse;
}
.hero.sun-v3 .hero-sun::after { display: none; }

@keyframes sun-bloom {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.88; }
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    max-width: 700px;
}

.hero h1 em {
    font-style: normal;
    color: var(--amber);
}

.hero p {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    max-width: 540px;
    margin-bottom: 44px;
    line-height: 1.75;
}

.hero .hero-eyebrow {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-weight: 500;
}

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--amber);
    color: var(--navy);
}

.btn-primary:hover {
    background: var(--amber-dark);
    color: var(--navy);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.05);
}

.hero-stats {
    margin-top: 60px;
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 32px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--amber);
    letter-spacing: 0.5px;
}

.hero-stat-label {
    font-size: .75rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ============================================
   SECTION LAYOUT
   ============================================ */

section {
    padding: 90px 60px;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--amber);
    font-weight: 600;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--fg);
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1rem;
    color: var(--fg-muted);
    max-width: 560px;
    line-height: 1.75;
    margin-bottom: 50px;
}

/* ============================================
   SERVICES
   ============================================ */

.services {
    background: var(--bg-section);
}

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

.service-card {
    background: var(--bg-card);
    padding: 44px 36px;
    border-top: 3px solid transparent;
    transition: border-color 0.2s ease;
}

.service-card:hover {
    border-top-color: var(--amber);
}

.service-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--amber);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--fg);
}

.service-card p {
    font-size: .9rem;
    color: var(--fg-muted);
    line-height: 1.7;
}

/* ============================================
   DEVICES / EQUIPMENT
   ============================================ */

.devices {
    background: var(--bg-card);
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.device-card {
    border: 1px solid var(--bd);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.device-card:hover {
    border-color: var(--amber);
    box-shadow: 0 4px 24px rgba(232,160,32,0.08);
}

.device-manufacturer {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--amber);
    font-weight: 600;
}

.device-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--fg);
}

.device-card p {
    font-size: .9rem;
    color: var(--fg-muted);
    line-height: 1.7;
}

.device-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.tag {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    background: var(--bg-tag);
    color: var(--fg-muted);
    border: 1px solid var(--bd);
}

/* ============================================
   WHY SECTION
   ============================================ */

.why {
    background: var(--bg-dark);
    padding: 90px 60px;
}

.why .section-title {
    color: var(--white);
}

.why .section-sub {
    color: rgba(255,255,255,0.55);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.why-item {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 28px;
}

.why-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.why-item p {
    font-size: .875rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}

/* ============================================
   CONTACT
   ============================================ */

.contact {
    background: var(--bg-section);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--amber);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-item-label {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--fg-muted);
    margin-bottom: 4px;
}

.contact-item-value {
    font-size: .95rem;
    color: var(--fg);
    font-weight: 500;
}

.contact-item-value a {
    color: var(--fg);
    transition: color 0.2s ease;
}

.contact-item-value a:hover {
    color: var(--amber-dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--fg-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 14px;
    border: 1px solid var(--bd);
    background: var(--bg-card);
    font-family: inherit;
    font-size: .9rem;
    color: var(--fg);
    transition: border-color 0.2s ease;
    appearance: none;
    border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--amber);
}

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

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    pointer-events: none;
    tab-index: -1;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--bg-dark);
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
}

.footer-logo img {
    height: 60px;
}

.footer-logo span { color: var(--amber); }

.footer-info {
    font-size: .8rem;
    color: rgba(255,255,255,0.35);
    text-align: right;
}

/* ============================================
   SERVICE PLAN PAGE
   ============================================ */

.about-body .wtsp-list li {
    color: var(--fg);
}

.about-body .wtsp-list li::before {
    background: var(--amber);
}

.sp-faq {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 40px;
}

.sp-faq-item {
    padding: 28px 0;
    border-bottom: 1px solid var(--bd);
}

.sp-faq-item:first-child {
    border-top: 1px solid var(--bd);
}

.sp-faq-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--fg);
    margin-bottom: 10px;
}

.sp-faq-item p {
    font-size: .9rem;
    color: var(--fg-muted);
    line-height: 1.75;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-hero {
    background: var(--bg-dark);
    padding: 60px 60px 80px;
    position: relative;
    overflow: hidden;
}

.about-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: center;
}

.about-hero-photo {
    height: 400px;
    overflow: hidden;
}

.about-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: brightness(0.88);
}

.about-hero .section-label { margin-bottom: 14px; }

/* Hero canvas backgrounds — shared positioning */
canvas[data-hero-stars] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Ensure inner content sits above all hero canvases */
.about-hero-inner,
.hero-inner {
    position: relative;
    z-index: 1;
}

/* Xenon lamp pulse */
.lamp-pulse {
    animation: lamp-glow-pulse 3s ease-in-out infinite;
}
@keyframes lamp-glow-pulse {
    0%, 100% { opacity: 0.55; }
    50%       { opacity: 1.0; }
}

/* Sample carousel slow rotation */
.carousel-spin {
    transform-box: fill-box;
    transform-origin: center;
    animation: carousel-rotate 50s linear infinite;
}
@keyframes carousel-rotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Fast particles inside chamber viewport */
.chamber-particle {
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
@keyframes chamber-pa {
    0%   { transform: translate(0,0);          opacity: 0; }
    8%   { opacity: 0.95; }
    30%  { transform: translate(14px,-20px);   }
    58%  { transform: translate(-18px,12px);   }
    82%  { transform: translate(9px,16px);     }
    92%  { opacity: 0.95; }
    100% { transform: translate(0,0);          opacity: 0; }
}
@keyframes chamber-pb {
    0%   { transform: translate(0,0);          opacity: 0; }
    10%  { opacity: 0.9; }
    25%  { transform: translate(-16px,14px);   }
    50%  { transform: translate(20px,-10px);   }
    75%  { transform: translate(-7px,-18px);   }
    90%  { opacity: 0.9; }
    100% { transform: translate(0,0);          opacity: 0; }
}
@keyframes chamber-pc {
    0%   { transform: translate(0,0);          opacity: 0; }
    12%  { opacity: 0.85; }
    35%  { transform: translate(22px,8px);     }
    62%  { transform: translate(-12px,-22px);  }
    88%  { transform: translate(15px,14px);    }
    93%  { opacity: 0.85; }
    100% { transform: translate(0,0);          opacity: 0; }
}
@keyframes chamber-pd {
    0%   { transform: translate(0,0);          opacity: 0; }
    6%   { opacity: 1; }
    28%  { transform: translate(-20px,-10px);  }
    52%  { transform: translate(12px,20px);    }
    76%  { transform: translate(18px,-14px);   }
    94%  { opacity: 1; }
    100% { transform: translate(0,0);          opacity: 0; }
}

.hero-loop-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-loop-graphic svg {
    width: 100%;
    max-width: 320px;
}

.loop-spin-slow {
    animation: loop-rotate-ease 40s ease-in-out infinite;
    transform-origin: 150px 150px;
}

.loop-spin-med {
    animation: loop-rotate-ease 25s ease-in-out infinite;
    transform-origin: 150px 150px;
}

.loop-spin-slow-rev {
    animation: loop-rotate-ease 35s ease-in-out infinite reverse;
    transform-origin: 150px 150px;
}

.loop-spin-med-rev {
    animation: loop-rotate-ease 18s ease-in-out infinite reverse;
    transform-origin: 150px 150px;
}

@keyframes loop-rotate-ease {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.about-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    max-width: 600px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    max-width: 560px;
    line-height: 1.75;
}

.about-body {
    background: var(--bg-card);
    padding: 90px 60px;
}

.about-body-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-text h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 20px;
}

.about-text p {
    font-size: .95rem;
    color: var(--fg-muted);
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--bd);
}

.stat-box {
    background: var(--bg-card);
    padding: 32px;
    text-align: center;
}

.stat-box .stat-num {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-box .stat-label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--fg-muted);
}

/* ============================================
   ABOUT PHOTOS
   ============================================ */

.about-photos {
    background: var(--bg-dark);
    padding: 0;
}

.about-photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 300px 260px;
    gap: 3px;
    max-width: 85%;
    margin: 0 auto;
}

.about-photo-wide {
    grid-column: 1 / 3;
}

.about-photo-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.about-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.75);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.about-photo-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-photo-overlay span {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    font-weight: 600;
    border-bottom: 2px solid var(--amber);
    padding-bottom: 3px;
}

.about-photo-item:hover img {
    transform: scale(1.04);
    filter: brightness(0.9);
}

.about-photo-item:hover .about-photo-overlay {
    opacity: 1;
}

/* ============================================
   PREVENTATIVE SERVICES
   ============================================ */

.prev-services {
    background: var(--bg-section);
}

.pm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pm-card {
    background: var(--bg-card);
    border: 1px solid var(--bd);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.pm-card:hover {
    border-color: var(--amber);
    box-shadow: 0 4px 24px rgba(232,160,32,0.08);
}

.pm-card-photo {
    margin: -40px -40px 8px;
    height: 200px;
    overflow: hidden;
}

.pm-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.88);
    transition: transform 0.5s ease;
}

.pm-card:hover .pm-card-photo img {
    transform: scale(1.04);
}

/* ============================================
   PHOTO BREAK
   ============================================ */

.photo-break {
    padding: 0;
    height: 260px;
    position: relative;
    overflow: hidden;
}

.photo-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.5);
    display: block;
}

.pm-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pm-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--amber);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pm-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--fg);
}

.pm-card p {
    font-size: .9rem;
    color: var(--fg-muted);
    line-height: 1.75;
}

/* ============================================
   PARTS & CONSUMABLES
   ============================================ */

.parts {
    background: var(--bg-card);
}

.parts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-top: 50px;
    background: var(--bd);
    max-width: 640px;
}

.part-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-card);
    padding: 22px 28px;
    font-size: .95rem;
    font-weight: 500;
    color: var(--fg);
    transition: background 0.15s ease;
}

.part-item:hover {
    background: var(--bg-tag);
}

.part-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--amber);
    flex-shrink: 0;
}

/* ============================================
   REVIEWS
   ============================================ */

.reviews-section {
    background: var(--bg-section);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.review-card {
    background: var(--bg-card);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-bottom: 3px solid transparent;
    transition: border-color 0.2s ease;
}

.review-card:hover {
    border-bottom-color: var(--amber);
}

.review-card-mark {
    font-size: 4rem;
    line-height: 1;
    color: var(--amber);
    font-family: Georgia, serif;
    margin-bottom: -8px;
}

.review-card p {
    font-size: 1rem;
    color: var(--fg);
    line-height: 1.75;
    flex: 1;
}

.review-card-footer {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 16px;
    border-top: 1px solid var(--bd);
}

.review-card-stars {
    color: var(--amber);
    font-size: 1rem;
    letter-spacing: 2px;
}

.review-card cite {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--fg-muted);
    font-style: normal;
}

/* ============================================
   WOMTECH SERVICE PLAN
   ============================================ */

.wtsp {
    background: var(--bg-dark);
    padding: 90px 60px;
}

.wtsp-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 60px;
}

.wtsp-left h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--white);
    margin: 14px 0 20px;
    line-height: 1.2;
}

.wtsp-left p {
    font-size: .95rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    margin-bottom: 36px;
}

.wtsp-includes-label {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--amber);
    font-weight: 600;
    margin-bottom: 20px;
}

.wtsp-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.wtsp-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: .9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

.wtsp-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--amber);
    flex-shrink: 0;
    margin-top: 6px;
}

/* ============================================
   HAMBURGER
   ============================================ */

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   MOBILE
   ============================================ */

@media (max-width: 768px) {
    .nav { padding: 0 24px; }
    .nav-hamburger { display: flex; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100px;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border-top: 1px solid rgba(255,255,255,0.08);
        z-index: 99;
    }

    .nav-links.nav-open { display: flex; }

    .nav-links > a {
        padding: 16px 24px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        font-size: .85rem;
    }

    .nav-links .nav-cta {
        margin: 16px 24px;
        text-align: center;
        border-bottom: none;
        border-radius: 0;
    }

    /* Hide desktop mega trigger, show mobile accordion */
    .nav-mega-wrap { display: none; }
    .nav-mega-panel { display: none !important; }
    .nav-mobile-services-section { display: block; }

    .hero { padding: 100px 24px 80px; }
    .hero h1 { font-size: 1.8rem; }
    .hero p { font-size: 0.9rem; }
    .hero.sun-v3 .hero-sun { 
        top: -1130px;
        left: -560px;
        width: 2000px;
        height: 2000px;}
    .hero.sun-v3 .hero-sun::before { width: 1720px; height: 1720px; }
    section { padding: 60px 24px; }


    .about-photos-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .about-photo-wide { grid-column: 1 / 3; height: 220px; }
    .about-photo-item { height: 160px; }
    .about-photo-overlay { opacity: 1; }

    .services-grid { grid-template-columns: 1fr; gap: 2px; }
    .devices-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; gap: 28px; }
    .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }

    footer { padding: 30px 24px; }
    .footer-info { text-align: left; }

    .pm-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .photo-break { height: 180px; }
    .parts-grid { grid-template-columns: 1fr; max-width: 100%; }
    .wtsp-card { grid-template-columns: 1fr; gap: 40px; padding: 36px 24px; }
    .wtsp { padding: 60px 24px; }

    .about-body-inner { grid-template-columns: 1fr; gap: 40px; }
    .about-hero { padding: 40px 24px 50px; }
    .about-hero-inner { grid-template-columns: 1fr; }
    .about-hero-photo { display: none; }
    .hero-loop-graphic { display: none; }
    .about-hero p:not(.section-label) { display: none; }
    .about-hero h1 { font-size: clamp(1.75rem, 6.5vw, 2.4rem); margin-bottom: 24px; }
    .about-body { padding: 60px 24px; }
    .about-stats { grid-template-columns: 1fr; }
    .stat-box { padding: 20px 24px; text-align: left; }
    .stat-box .stat-num { font-size: 1.6rem; }
}

@media (max-width: 600px) {
    .hero-stats { gap: 24px; }
}

/* ============================================
   REVIEWS
   ============================================ */

.reviews {
    background: var(--bg-dark);
    text-align: center;
}

.reviews-stars {
    color: var(--amber);
    font-size: 1.6rem;
    letter-spacing: 4px;
    margin-bottom: 32px;
}

.reviews-track {
    position: relative;
    min-height: 120px;
    max-width: 720px;
    margin: 0 auto;
}

.review {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.review.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.review p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.review cite {
    font-size: .8rem;
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-style: normal;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.rdot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: background 0.2s;
}

.rdot.active { background: var(--amber); }

/* ============================================
   SLIDESHOW
   ============================================ */

.slideshow {
    position: relative;
    width: 100%;
    height: 520px;
    background: var(--navy);
    overflow: hidden;
}


.slideshow-track {
    width: 100%;
    height: 100%;
}

.slideshow .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.slideshow .slide.active {
    opacity: 1;
}

.slideshow .slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    z-index: 1;
}

.slide-headline {
    position: relative;
    z-index: 2;
    padding: 0 80px;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-align: center;
    width: 100%;
    margin-bottom: 32px;
}

.slide-headline::before {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background: var(--amber);
    margin: 0 auto 14px;
}


.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s;
}

.slide-btn svg {
    width: 20px;
    height: 20px;
}

.slide-prev svg { transform: translateX(-1px); }
.slide-next svg { transform: translateX(1px); }

.slide-btn:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}
.slide-prev { left: 16px; }
.slide-next { right: 16px; }

.slide-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.slide-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.2s;
}

.slide-dots .dot.active { background: #fff; }

@media (max-width: 600px) {
    .slideshow { height: 420px; }
    .slide-headline { padding: 0 70px; font-size: 1rem; margin-bottom: 0; }
}

/* ============================================
   MEGA MENU — DESKTOP
   ============================================ */

.nav-mega-wrap {
    position: static;
}

.nav-mega-trigger {
    background: none;
    border: none;
    cursor: pointer;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.6);
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    transition: color 0.2s ease;
}

.nav-mega-trigger:hover,
.nav-mega-trigger[aria-expanded="true"] {
    color: var(--white);
}

.nav-mega-trigger svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s ease;
}

.nav-mega-trigger[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.nav-mega-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--bg-nav);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 3px solid var(--amber);
    z-index: 98;
    box-shadow: 0 24px 60px rgba(0,0,0,0.55);
}

.nav-mega-panel.mega-open {
    display: block;
}

.nav-mega-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 44px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 260px;
    gap: 0;
}

.nav-mega-group {
    padding-right: 36px;
    margin-right: 36px;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.nav-mega-group-label {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--amber);
    font-weight: 600;
    margin-bottom: 20px;
}

.nav-mega-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    text-decoration: none;
    transition: all 0.15s ease;
}

.nav-mega-item:last-child {
    border-bottom: none;
}

.nav-mega-item-icon {
    width: 36px;
    height: 36px;
    background: rgba(232,160,32,0.08);
    border: 1px solid rgba(232,160,32,0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.nav-mega-item-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--amber);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-mega-item-text h4 {
    font-size: .85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    margin-bottom: 3px;
    line-height: 1.2;
    transition: color 0.15s ease;
}

.nav-mega-item-text p {
    font-size: .74rem;
    color: var(--fg-muted);
    line-height: 1.45;
    margin: 0;
}

.nav-mega-item:hover .nav-mega-item-text h4 {
    color: var(--amber);
}

.nav-mega-item:hover .nav-mega-item-icon {
    background: rgba(232,160,32,0.15);
    border-color: rgba(232,160,32,0.3);
}

/* Featured service plan panel */
.nav-mega-feature {
    padding-left: 36px;
    border-left: 1px solid rgba(255,255,255,0.06);
}

.nav-mega-feature-card {
    background: rgba(232,160,32,0.05);
    border: 1px solid rgba(232,160,32,0.18);
    padding: 26px 22px;
    margin-top: 28px;
}

.nav-mega-feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.2;
}

.nav-mega-feature-card p {
    font-size: .78rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    margin-bottom: 18px;
}

/* Hide mobile section on desktop */
.nav-mobile-services-section {
    display: none;
}

/* ============================================
   MOBILE SERVICES ACCORDION
   ============================================ */

.nav-mobile-services-toggle {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.6);
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: .85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: color 0.2s;
}

.nav-mobile-services-toggle:hover,
.nav-mobile-services-toggle[aria-expanded="true"] {
    color: var(--white);
}

.nav-mobile-services-toggle svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.nav-mobile-services-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.nav-mobile-services {
    display: none;
    background: rgba(0,0,0,0.25);
}

.nav-mobile-services.open {
    display: block;
}

.nav-mobile-service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px 12px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.5);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: color 0.2s, background 0.2s;
    text-decoration: none;
}

.nav-mobile-service-item:last-child {
    border-bottom: none;
}

.nav-mobile-service-item:hover {
    color: var(--amber);
    background: rgba(232,160,32,0.04);
}

.nav-mobile-service-icon {
    width: 28px;
    height: 28px;
    background: rgba(232,160,32,0.08);
    border: 1px solid rgba(232,160,32,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-mobile-service-icon svg {
    width: 13px;
    height: 13px;
    stroke: var(--amber);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-mobile-service-featured {
    color: rgba(232,160,32,0.8) !important;
    border-top: 1px solid rgba(232,160,32,0.1);
    margin-top: 4px;
}
