/* ============================================
   DIANA LIGHTING AND CONTROLS INC.
   ============================================ */

:root {
    --purple: #A3238E;
    --purple-dark: #7d1a6d;
    --purple-light: #FAEAF8;
    --teal: #23967F;
    --teal-dark: #1a7362;
    --navy: #2A0925;
    --dark: #1A191A;
    --text: #333333;
    --text-light: #666065;
    --gray: #828282;
    --border: #E0E0E0;
    --bg-light: #F3F2F3;
    --white: #ffffff;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius: 8px;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --container: 1200px;
}

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

html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font);
    font-size: 16px;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

main p,
main li {
    font-size: 16px !important;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; transition: color 0.2s; }

ul { list-style: none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.2s;
}

.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.1); }

.site-header .container {
    max-width: 1440px;
    padding: 0 32px;
}

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

.nav-logo { flex-shrink: 0; padding: 20px 24px 12px 48px; }
.nav-logo img { height: 62px; width: auto; }

.nav-right-group {
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
}

.nav-links > li { position: relative; }

.nav-links > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 2px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    border-radius: 6px;
    white-space: nowrap;
    position: relative;
    transition: background 0.15s, color 0.15s;
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 7px;
    right: 7px;
    height: 2px;
    background: var(--purple);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
    border-radius: 2px;
}

.nav-links > li > a:hover {
    color: var(--purple);
    background: transparent;
}
.nav-links > li > a:hover::after { transform: scaleX(1); }
.nav-links > li > a.active {
    color: var(--purple);
    background: transparent;
}
.nav-links > li > a.active::after { transform: scaleX(1); }

.nav-links .chevron {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    transition: transform 0.2s;
    stroke: currentColor;
}

/* Dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: 8px 0;
    z-index: 100;
    /* invisible bridge so mouse can travel from link to menu without losing hover */
    margin-top: 0;
}

.nav-links > li::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 8px;
}

.nav-links > li:hover .dropdown-menu { display: block; }
.nav-links > li:hover .chevron { transform: rotate(180deg); }

/* Submenu */
.has-submenu { position: relative; }
.has-submenu > a .chevron { transform: rotate(-90deg); }
.submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 4px;
}
.has-submenu:hover .submenu { display: block; }
.has-submenu:hover > a .chevron { transform: rotate(-90deg); }

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    color: var(--text);
    transition: background 0.15s, color 0.15s;
}

.dropdown-menu a:hover { background: var(--purple-light); color: var(--purple); }
.dropdown-menu a.active {
    color: var(--purple);
    background: var(--purple-light);
    font-weight: 700;
}

.nav-right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: 20px;
}

.nav-phone {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
}

.nav-phone:hover { color: var(--purple); }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s;
    border-radius: 2px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    text-decoration: none;
}

.btn-teal {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
}
.btn-teal:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(35,150,127,0.35); }

.btn-outline {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--dark); transform: translateY(-1px); }

.btn-purple {
    background: var(--purple);
    border-color: var(--purple);
    color: var(--white);
}
.btn-purple:hover { background: var(--purple-dark); border-color: var(--purple-dark); color: var(--white); transform: translateY(-1px); }

.btn-outline-purple {
    background: transparent;
    border-color: var(--purple);
    color: var(--purple);
}
.btn-outline-purple:hover { background: var(--purple); color: var(--white); transform: translateY(-1px); }

.btn-outline-white {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--dark); }

.btn-sm { padding: 9px 18px; font-size: 13px; }
.nav-cta { padding: 8px 14px; font-size: 14px; }

/* ============================================
   HEADINGS — Raleway
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero {
    background: var(--dark);
    overflow: hidden;
    position: relative;
}

.hero-slider {
    position: relative;
    height: calc(100vh - 80px);
    min-height: 560px;
}

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 56px;
    left: 80px;
    display: flex;
    gap: 8px;
    align-items: center;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}

.hero-dot.active {
    background: var(--teal);
    width: 28px;
    border-radius: 5px;
}

/* Slides — all absolute, fade transition */
.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* Full-bleed background image */
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* Gradient overlay: dark purple left → transparent right */
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(26, 6, 22, 0.96) 0%,
        rgba(26, 6, 22, 0.88) 35%,
        rgba(26, 6, 22, 0.5) 58%,
        rgba(26, 6, 22, 0.05) 80%,
        transparent 100%
    );
    z-index: 1;
}

.hero-left {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 0 48px 0 80px;
    max-width: 980px;
    width: 70%;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 22px;
    font-family: var(--font);
}

.hero-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--teal);
    flex-shrink: 0;
}

.hero-left h1 {
    font-size: clamp(34px, 4.08vw, 58px);
    font-weight: 800;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-left p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    max-width: 460px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 40px;
}


/* ============================================
   INTRO TEXT SECTION
   ============================================ */
.intro-section {
    background: var(--white);
    padding: 56px 0;
    border-top: 1px solid var(--border);
}

.intro-section p {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
    background: var(--bg-light);
    padding: 72px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.video-inner {
    position: relative;
    z-index: 1;
}

.video-embed {
    max-width: 1048px;
    margin: 0 auto 32px;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/9;
    position: relative;
    background: var(--navy);
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-embed::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg, rgba(193,45,169,0.86) 0%, rgba(163,35,142,0.78) 42%, rgba(42,9,37,0.84) 100%);
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    color: var(--white);
    pointer-events: none;
    padding: 24px;
}

.video-play-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-icon::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid var(--purple);
    margin-left: 3px;
}

.video-overlay p {
    max-width: 420px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.18;
}

/* ============================================
   WHY CHOOSE DIANA
   ============================================ */
.why-section {
    padding: 80px 0;
    background: var(--white);
}

.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.why-content h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 32px;
}

.why-block { margin-bottom: 32px; }

.why-block h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.why-block p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-light);
}

.why-photo img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* ============================================
   CUSTOM LIGHTING SOLUTIONS
   ============================================ */
.products-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.products-grid .product-card:nth-child(4),
.products-grid .product-card:nth-child(5) {
    grid-column: auto;
}

/* Center last 2 cards in a row of 3 */
.products-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 816px;
    margin: 24px auto 0;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.product-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--border);
}

.product-card-body {
    padding: 20px;
}

.product-card-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.product-card-body p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 16px;
}

.learn-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--purple);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.learn-more:hover { color: var(--purple-dark); gap: 8px; }

/* ============================================
   OUR SERVICES (DARK)
   ============================================ */
.services-section {
    padding: 64px 0;
    background:
        linear-gradient(90deg, rgba(42,9,37,0.98) 0%, rgba(88,12,74,0.88) 40%, rgba(42,9,37,0.28) 74%, rgba(42,9,37,0.12) 100%),
        url('../images/linear-lightning-scaled.jpg') center / cover no-repeat;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(163,35,142,0.18) 0%, transparent 58%);
    pointer-events: none;
}

.services-inner {
    display: block;
    position: relative;
    z-index: 1;
}

.services-content {
    max-width: 520px;
}

.services-content .section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #CD88C2;
    margin-bottom: 16px;
}

.services-content h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.services-content > p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255,255,255,0.75);
    margin-bottom: 24px;
}

.services-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin-bottom: 12px;
}

.services-list {
    margin-bottom: 32px;
}

.services-list li {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.services-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
}

.services-photo { display: none; }

/* ============================================
   WHAT SETS US APART
   ============================================ */
.apart-section {
    padding: 80px 0;
    background: var(--white);
}

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

.apart-card {
    text-align: center;
    padding: 0 16px;
}

.apart-icon {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--purple-light);
    border: 2px solid #E8C8E3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
}

.apart-icon svg {
    width: 44px;
    height: 44px;
    stroke: var(--purple);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.apart-icon .maple-leaf-icon {
    width: 52px;
    height: 52px;
    fill: var(--purple);
    stroke: none;
}

.apart-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.apart-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}

/* ============================================
   BLOG
   ============================================ */
.blog-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.blog-card-thumb {
    width: 100%;
    height: 160px;
    object-fit: cover;
    background: var(--purple-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-body { padding: 20px; }

.blog-card-body h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.45;
}

.blog-card-body p {
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-light);
    margin-bottom: 14px;
}

.read-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--purple);
}

.read-more:hover { color: var(--purple-dark); }

.blog-section-action {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.page-hero {
    background: var(--navy);
    padding: 88px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(163,35,142,0.34) 0%, rgba(42,9,37,0.92) 62%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero .section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 700;
    color: #CD88C2;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 20px;
}

.page-hero .section-label::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--teal);
}

.page-hero h1 {
    max-width: 760px;
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 22px;
}

.page-hero p {
    max-width: 640px;
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255,255,255,0.74);
}

.blog-archive-section {
    background: var(--white);
}

.blog-archive-grid .blog-card-thumb {
    height: 190px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-main {
    background: var(--bg-light);
}

.contact-section {
    padding: 40px 0 36px;
}

.contact-intro {
    max-width: 680px;
    margin: 0 auto 34px;
    text-align: center;
}

.contact-intro h1 {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    color: #101a2d;
    margin-bottom: 16px;
}

.contact-intro p {
    font-size: 15px;
    line-height: 1.65;
    color: #1e293b;
}

.contact-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1240px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
}

.contact-form {
    padding: 30px 32px 32px;
    background: var(--white);
}

.contact-form h2,
.contact-info h2 {
    font-size: 19px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-form h2 {
    color: #101a2d;
}

.contact-form > p,
.contact-info-intro {
    font-size: 13px;
    line-height: 1.45;
    margin-bottom: 18px;
}

.contact-form > p {
    color: #1e293b;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px 14px;
    margin-bottom: 14px;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 500;
    color: #101a2d;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid #D7D9DE;
    background: var(--white);
    border-radius: 2px;
    color: var(--text);
    font: inherit;
    font-size: 13px;
}

.contact-form input,
.contact-form select {
    height: 32px;
    padding: 0 10px;
}

.contact-form textarea {
    height: 82px;
    min-height: 82px;
    padding: 8px 10px;
    resize: vertical;
}

.contact-form select {
    color: #8A8F99;
}

.contact-submit {
    margin-top: 14px;
    padding: 9px 15px;
    font-size: 13px;
    border-radius: 3px;
}

.contact-info {
    background: #0E1A2E;
    color: var(--white);
    padding: 30px 32px;
}

.contact-info h2 {
    color: var(--white);
}

.contact-info-intro {
    color: rgba(255,255,255,0.86);
}

.contact-info-item {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 14px;
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.13);
}

.contact-info-item:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.contact-info-item svg {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    stroke: rgba(255,255,255,0.84);
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-info-item h3 {
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.contact-info-item a,
.contact-info-item p {
    display: block;
    font-size: 12px;
    line-height: 1.45;
    color: rgba(255,255,255,0.82);
}

.contact-info-item a:hover {
    color: #CD88C2;
}

.contact-help-section {
    padding: 0 0 56px;
    background: var(--bg-light);
}

.contact-help-section h2 {
    text-align: center;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 800;
    color: #101a2d;
    margin-bottom: 28px;
}

.help-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.help-card {
    background: var(--white);
    padding: 28px 28px 30px;
    min-height: 208px;
}

.help-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
}

.help-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--purple);
    fill: none;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.help-card h3 {
    font-size: 18px;
    line-height: 1.25;
    font-weight: 500;
    color: #101a2d;
    margin-bottom: 14px;
}

.help-card p {
    min-height: 58px;
    font-size: 13px;
    line-height: 1.55;
    color: #1e293b;
    margin-bottom: 18px;
}

.help-link {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 12px;
    border-radius: 2px;
    background: #F5C5EC;
    color: var(--purple);
    font-size: 13px;
    font-weight: 500;
}

.help-link:hover {
    background: var(--purple);
    color: var(--white);
}

.thank-you-section {
    min-height: 520px;
    padding: 88px 0;
    display: flex;
    align-items: center;
    background: var(--bg-light);
}

.thank-you-card {
    max-width: 640px;
    margin: 0 auto;
    padding: 48px;
    background: var(--white);
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}

.thank-you-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--purple-light);
    border: 2px solid #E8C8E3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-icon svg {
    width: 34px;
    height: 34px;
    stroke: var(--purple);
    fill: none;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.thank-you-card h1 {
    font-size: 36px;
    font-weight: 800;
    color: #101a2d;
    margin-bottom: 14px;
}

.thank-you-card p {
    max-width: 460px;
    margin: 0 auto 30px;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-light);
}

.thank-you-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-main {
    background: var(--bg-light);
}

.legal-section {
    padding: 64px 0;
}

.legal-content {
    max-width: 880px;
    margin: 0 auto;
    padding: 52px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.legal-header {
    padding-bottom: 28px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.legal-header h1 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.15;
    color: #101a2d;
    margin-bottom: 10px;
}

.legal-header p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

.legal-content h2 {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
    color: #101a2d;
    margin: 34px 0 12px;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 18px;
}

.legal-content ul {
    list-style: disc;
    padding-left: 22px;
    margin: 0 0 22px;
}

.legal-content li {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 6px;
}

.legal-content a {
    color: var(--purple);
    font-weight: 600;
}

.legal-content a:hover {
    color: var(--purple-dark);
}

.sitemap-content {
    max-width: 1100px;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 56px;
}

.sitemap-group h2 {
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.sitemap-group ul {
    margin-bottom: 0;
}

.sitemap-group li {
    margin-bottom: 8px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-main {
    background: var(--white);
    color: #101a2d;
}

.about-hero {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(18,16,24,0.92) 0%, rgba(34,18,30,0.7) 43%, rgba(34,18,30,0.18) 100%);
}

.about-hero .container {
    position: relative;
    z-index: 1;
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
}

.about-hero-content {
    margin-left: clamp(190px, 14vw, 230px);
    padding-left: 0;
    max-width: 680px;
}

.about-hero h1 {
    max-width: 760px;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.12;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 26px;
}

.about-hero h1 span {
    display: block;
}

.about-hero h1 > span:first-child {
    color: #D43BC1;
}

.about-hero-title-line {
    color: var(--white);
    white-space: nowrap;
}

.about-hero p {
    max-width: 620px;
    font-size: 16px;
    line-height: 1.55;
    color: rgba(255,255,255,0.9);
    margin-bottom: 34px;
}

.about-hero-badges {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.about-hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 8px 18px;
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    color: var(--white);
    font-size: 15px;
    backdrop-filter: blur(8px);
}

.about-hero-badges svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-story {
    padding: 108px 0 100px;
}

.about-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--purple);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.about-kicker span {
    width: 52px;
    height: 4px;
    background: var(--purple);
}

.about-story h2,
.credentials-intro h2 {
    font-size: 36px;
    line-height: 1.15;
    font-weight: 800;
    color: #101a2d;
    margin-bottom: 28px;
}

.about-story h2 span,
.credentials-intro h2 span,
.about-values h2 span {
    color: var(--purple);
}

.about-copy p {
    font-size: 18px;
    line-height: 1.62;
    color: #182235;
    margin-bottom: 24px;
}

.about-values {
    padding: 100px 0;
    background: var(--bg-light);
}

.about-values h2,
.about-projects h2 {
    text-align: center;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    color: #101a2d;
    margin-bottom: 48px;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 980px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
}

.mission-card,
.vision-card {
    padding: 62px;
}

.mission-card {
    background: var(--white);
}

.vision-card {
    background: #0E1A2E;
    color: var(--white);
}

.card-label {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 24px;
}

.mission-card .card-label {
    color: #101a2d;
}

.vision-card .card-label {
    color: rgba(255,255,255,0.92);
}

.mission-card h3,
.vision-card h3 {
    font-size: 28px;
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 24px;
}

.mission-card p,
.vision-card p {
    font-size: 18px;
    line-height: 1.55;
}

.mission-card p {
    color: #182235;
}

.vision-card p {
    color: rgba(255,255,255,0.92);
}

.about-credentials {
    padding: 112px 0;
}

.credentials-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 88px;
    align-items: start;
}

.credentials-intro {
    max-width: 480px;
}

.credentials-intro h2 {
    font-size: 42px;
}

.credentials-intro p {
    font-size: 18px;
    line-height: 1.62;
    color: #182235;
}

.credentials-diploma {
    margin-top: 34px;
    max-width: 360px;
}

.diploma-sheet {
    position: relative;
    min-height: 220px;
    padding: 34px 34px 32px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(250,234,248,0.92), rgba(255,255,255,0.98) 52%),
        var(--white);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.diploma-sheet::before,
.diploma-sheet::after {
    content: '';
    position: absolute;
    border: 1px solid rgba(163,35,142,0.16);
    pointer-events: none;
}

.diploma-sheet::before {
    inset: 14px;
    border-radius: 5px;
}

.diploma-sheet::after {
    inset: 24px;
    border-radius: 3px;
}

.diploma-seal {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 28px;
    border-radius: 50%;
    background: var(--purple-light);
    color: var(--purple);
}

.diploma-seal svg {
    width: 36px;
    height: 36px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.diploma-line {
    position: relative;
    z-index: 1;
    display: block;
    width: 72%;
    height: 9px;
    margin: 12px auto 0;
    border-radius: 999px;
    background: rgba(163,35,142,0.12);
}

.diploma-line-wide {
    width: 86%;
    height: 12px;
    background: rgba(42,9,37,0.12);
}

.diploma-line-short {
    width: 54%;
}

.credential-list {
    display: grid;
    gap: 28px;
}

.credential-card {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 24px;
    padding: 36px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--white);
}

.credential-icon {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    background: var(--purple-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.credential-icon svg {
    width: 42px;
    height: 42px;
    stroke: var(--purple);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.credential-card h3 {
    font-size: 23px;
    line-height: 1.25;
    font-weight: 800;
    color: #101a2d;
    margin-bottom: 14px;
}

.credential-card p {
    font-size: 18px;
    line-height: 1.55;
    color: #182235;
}

.about-projects {
    padding: 104px 0;
    background: var(--bg-light);
}

.about-project-carousel {
    position: relative;
}

.about-project-viewport {
    overflow: hidden;
}

.about-project-track {
    --project-gap: 40px;
    --project-visible: 3;
    display: flex;
    gap: var(--project-gap);
    transform: translateX(0);
    transition: transform 0.35s ease;
}

.about-project-card {
    flex: 0 0 calc((100% - (var(--project-gap) * (var(--project-visible) - 1))) / var(--project-visible));
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.about-project-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.about-project-card div {
    padding: 34px 36px 38px;
}

.about-project-card span {
    display: inline-flex;
    margin-bottom: 24px;
    padding: 10px 14px;
    border-radius: 4px;
    background: var(--purple-light);
    color: var(--purple);
    font-size: 16px;
    text-transform: uppercase;
}

.about-project-card h3 {
    font-size: 28px;
    line-height: 1.24;
    font-weight: 500;
    color: #101a2d;
    margin-bottom: 20px;
}

.about-project-card p {
    font-size: 18px;
    line-height: 1.48;
    color: #182235;
    margin-bottom: 18px;
}

.about-project-card .project-meta {
    color: var(--text-light);
    margin-bottom: 0;
}

.project-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    transform: translateY(-50%);
    transition: background 0.2s, color 0.2s, opacity 0.2s;
}

.project-nav:hover {
    background: var(--purple);
    color: var(--white);
}

.project-nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.project-nav svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.project-nav-prev {
    left: -22px;
}

.project-nav-next {
    right: -22px;
}

.project-dots {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 48px;
}

.project-dots button {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 0;
    background: #D9D9D9;
    cursor: pointer;
    padding: 0;
}

.project-dots button.active {
    background: var(--purple);
}

.about-cta {
    position: relative;
    padding: 72px 0;
    text-align: center;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(130,19,107,0.9), rgba(180,37,157,0.78), rgba(130,19,107,0.9)),
        url('../images/slider/under-cabinet-led-lighting-slider.jpg') center / cover no-repeat;
}

.about-cta h2 {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 12px;
}

.about-cta p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 26px;
}

/* ============================================
   LIGHTING SERVICES PAGE
   ============================================ */
.services-page-main {
    background: var(--white);
    color: #101a2d;
}

.consulting-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}

.consulting-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.consulting-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(42,9,37,0.96) 0%, rgba(82,14,69,0.82) 45%, rgba(42,9,37,0.24) 100%);
}

.consulting-hero .container {
    position: relative;
    z-index: 1;
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
}

.consulting-hero-content {
    margin-left: clamp(190px, 14vw, 230px);
    max-width: 690px;
}

.consulting-hero .section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #CD88C2;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.consulting-hero .section-label::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--teal);
}

.consulting-hero h1 {
    font-size: clamp(36px, 4.2vw, 60px);
    line-height: 1.08;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
}

.consulting-hero p {
    max-width: 620px;
    line-height: 1.75;
    color: rgba(255,255,255,0.86);
    margin-bottom: 34px;
}

.consulting-intro {
    padding: 86px 0;
    background: var(--white);
}

.consulting-intro-grid {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    gap: 64px;
    align-items: center;
}

.consulting-intro-copy h2 {
    max-width: 760px;
    font-size: 36px;
    line-height: 1.18;
    font-weight: 800;
    color: #101a2d;
}

.consulting-intro-card {
    padding: 34px;
    border-radius: 8px;
    background: var(--purple-light);
    border: 1px solid #E8C8E3;
}

.consulting-intro-card p {
    line-height: 1.65;
    color: #182235;
    margin-bottom: 24px;
}

.consulting-offerings {
    padding: 92px 0;
    background: var(--bg-light);
}

.consulting-offering-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.consulting-card {
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.consulting-card-wide {
    grid-column: 1 / -1;
}

.consulting-icon {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    background: var(--purple-light);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.consulting-icon svg {
    width: 34px;
    height: 34px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.consulting-card h3 {
    font-size: 24px;
    line-height: 1.24;
    font-weight: 800;
    color: #101a2d;
    margin-bottom: 14px;
}

.consulting-card p {
    line-height: 1.72;
    color: #182235;
}

.consulting-cta {
    position: relative;
    padding: 82px 0;
    text-align: center;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(130,19,107,0.92), rgba(180,37,157,0.8), rgba(42,9,37,0.9)),
        url('../images/linear-lightning-scaled.jpg') center / cover no-repeat;
}

.consulting-cta h2 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 12px;
}

.consulting-cta p {
    max-width: 720px;
    margin: 0 auto 28px;
    color: rgba(255,255,255,0.88);
    line-height: 1.65;
}

/* ============================================
   PRODUCT DETAIL PAGES
   ============================================ */
.product-main {
    background: var(--white);
}

.product-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.product-hero-under-cabinet {
    background-image: url('../images/slider/under-cabinet-led-lighting-slider.jpg');
}

.product-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(26,16,27,0.96) 0%, rgba(42,9,37,0.88) 40%, rgba(42,9,37,0.28) 68%, rgba(42,9,37,0.08) 100%),
        linear-gradient(0deg, rgba(0,0,0,0.16), rgba(0,0,0,0.16));
}

.product-hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1440px;
    padding: 0 50px;
}

.product-hero-content {
    max-width: 920px;
    padding: 88px 0;
}

.product-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 3.8vw, 52px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 22px;
    max-width: 780px;
}

.product-hero p {
    max-width: 840px;
    color: rgba(255,255,255,0.9);
    line-height: 1.68;
    margin-bottom: 24px;
}

.spec-button-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    max-width: none;
}

.spec-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 8px 10px;
    border-radius: 4px;
    background: rgba(255,255,255,0.92);
    color: #172033;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 1px 6px rgba(0,0,0,0.16);
    transition: transform 0.15s ease, background 0.15s ease;
}

.spec-button:hover {
    background: var(--white);
    transform: translateY(-1px);
    color: var(--purple);
}

.spec-button svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-section {
    padding: 88px 0;
}

.product-section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    color: #182235;
    text-align: center;
    margin-bottom: 34px;
}

.product-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-feature-card {
    min-height: 230px;
    padding: 34px 30px;
    background: #f1eff1;
    border-radius: 0;
    border: 1px solid #ebe8eb;
}

.product-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    margin-bottom: 28px;
    color: var(--purple);
}

.product-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-feature-card h3,
.product-image-card h3 {
    font-family: var(--font-heading);
    color: #182235;
    font-weight: 800;
}

.product-feature-card h3 {
    font-size: 24px;
    line-height: 1.18;
    margin-bottom: 12px;
}

.product-feature-card p {
    color: #283145;
    line-height: 1.55;
}

.product-gallery-section {
    background: var(--purple-light);
}

.product-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-gallery-grid img {
    width: 100%;
    aspect-ratio: 1.7 / 1;
    object-fit: cover;
    border-radius: 6px;
}

.product-gallery-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
}

.product-gallery-dots span {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #d7d7d7;
}

.product-gallery-dots .active {
    background: var(--purple);
}

.product-applications-section {
    background: var(--white);
}

.product-components-section {
    background: #f1eff1;
}

.product-card-grid {
    display: grid;
    gap: 22px;
}

.product-card-grid-four {
    grid-template-columns: repeat(4, 1fr);
}

.product-image-card {
    min-width: 0;
}

.product-image-card img {
    width: 100%;
    aspect-ratio: 1.45 / 1;
    object-fit: cover;
    border-radius: 2px;
    margin-bottom: 18px;
}

.product-image-card h3 {
    font-size: 19px;
    line-height: 1.25;
    margin-bottom: 8px;
}

.product-image-card p {
    color: #283145;
    line-height: 1.45;
    margin-bottom: 8px;
}

.product-image-card a {
    color: var(--purple);
    font-size: 14px;
    font-weight: 800;
}

.product-image-card a:hover {
    color: var(--purple-dark);
}

.product-faq-section {
    background: var(--white);
}

.product-faq-list {
    max-width: 1320px;
    margin: 0 auto;
}

.product-faq-list details {
    border-radius: 6px;
    background: #f1eff1;
    color: #1d2638;
    overflow: hidden;
    margin-bottom: 14px;
}

.product-faq-list details[open] {
    background: var(--purple-light);
}

.product-faq-list summary {
    cursor: pointer;
    list-style: none;
    padding: 16px 20px;
    font-weight: 800;
    color: #182235;
}

.product-faq-list summary::-webkit-details-marker {
    display: none;
}

.product-faq-list p {
    padding: 0 20px 18px;
    line-height: 1.55;
    color: #273044;
}

/* ============================================
   WHO WE SERVE DETAIL PAGES
   ============================================ */
.serve-main {
    background: var(--white);
}

.serve-hero {
    position: relative;
    min-height: 610px;
    display: flex;
    align-items: center;
    color: var(--white);
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.serve-hero-homeowners {
    background-image: url('../images/modern-lightning-clean-kitchen.jpg');
}

.serve-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(26,16,27,0.92) 0%, rgba(42,9,37,0.78) 45%, rgba(42,9,37,0.18) 100%),
        linear-gradient(0deg, rgba(0,0,0,0.16), rgba(0,0,0,0.16));
}

.serve-hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.serve-hero-content {
    max-width: 680px;
    padding: 96px 0;
}

.serve-kicker,
.serve-eyebrow {
    display: inline-block;
    color: var(--purple);
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

.serve-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4.2vw, 52px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 18px;
}

.serve-hero p {
    color: rgba(255,255,255,0.92);
    line-height: 1.65;
    margin-bottom: 12px;
}

.serve-hero-actions,
.serve-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.serve-section {
    padding: 86px 0;
}

.serve-section-title {
    font-family: var(--font-heading);
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
    color: #182235;
    text-align: center;
    margin-bottom: 30px;
}

.serve-section-lead {
    max-width: 920px;
    margin: -14px auto 28px;
    text-align: center;
    color: #4a5366;
    line-height: 1.6;
}

.serve-card-grid {
    display: grid;
    gap: 18px;
}

.serve-card-grid.six {
    grid-template-columns: repeat(3, 1fr);
}

.serve-use-card {
    background: #f1eff1;
    padding: 30px 26px;
    min-height: 250px;
    border: 1px solid #e8e3e8;
}

.serve-icon {
    display: inline-flex;
    width: 38px;
    height: 38px;
    margin-bottom: 22px;
    color: var(--purple);
}

.serve-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.serve-use-card h3,
.serve-category-grid h3,
.serve-overlay-panel h3,
.serve-process-grid h3,
.serve-reason-list h3 {
    font-family: var(--font-heading);
    color: #182235;
    font-weight: 800;
}

.serve-use-card h3 {
    font-size: 21px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.serve-use-card p {
    color: #313b4e;
    line-height: 1.52;
}

.serve-why {
    background: #e9fbf7;
}

.serve-why-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    gap: 60px;
    align-items: start;
}

.serve-why-intro h2,
.serve-smart h2 {
    font-family: var(--font-heading);
    color: #182235;
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.serve-why-intro p,
.serve-smart p {
    line-height: 1.68;
    color: #243145;
    margin-bottom: 16px;
}

.serve-why-intro img {
    width: 100%;
    aspect-ratio: 1.35 / 1;
    object-fit: cover;
    margin-top: 24px;
}

.serve-reason-list {
    display: grid;
    gap: 26px;
}

.serve-reason-list article {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(35,150,127,0.22);
}

.serve-reason-list span,
.serve-process-grid span {
    display: block;
    color: var(--purple);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 8px;
}

.serve-reason-list h3 {
    font-size: 18px;
    line-height: 1.25;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.serve-reason-list p {
    color: #243145;
    line-height: 1.6;
}

.serve-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.serve-category-grid article {
    background: var(--purple-light);
    padding: 28px 24px;
}

.serve-category-grid h3 {
    font-size: 19px;
    line-height: 1.25;
    margin-bottom: 10px;
}

.serve-category-grid p {
    line-height: 1.55;
    color: #283145;
}

.serve-fixture-categories {
    padding: 92px 0;
    background:
        linear-gradient(90deg, rgba(78,15,68,0.96), rgba(163,35,142,0.55), rgba(42,9,37,0.42)),
        url('../images/modern-lightning-clean-kitchen.jpg') center / cover no-repeat;
    color: var(--white);
}

.serve-overlay-panel {
    max-width: 860px;
}

.serve-overlay-panel h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    line-height: 1.18;
    font-weight: 800;
    margin-bottom: 10px;
}

.serve-overlay-panel > p {
    color: rgba(255,255,255,0.86);
    line-height: 1.6;
    margin-bottom: 18px;
}

.serve-overlay-panel article {
    background: rgba(42,9,37,0.72);
    border-left: 3px solid rgba(255,255,255,0.24);
    padding: 22px 24px;
    margin-top: 12px;
}

.serve-overlay-panel h3 {
    color: var(--white);
    font-size: 19px;
    margin-bottom: 8px;
}

.serve-overlay-panel article p {
    color: rgba(255,255,255,0.82);
    line-height: 1.55;
}

.serve-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid #e5e1e6;
    border-left: 1px solid #e5e1e6;
}

.serve-process-grid article {
    padding: 30px 24px;
    border-right: 1px solid #e5e1e6;
    border-bottom: 1px solid #e5e1e6;
}

.serve-process-grid h3 {
    font-size: 17px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.serve-process-grid p {
    color: #394356;
    line-height: 1.55;
}

.serve-smart {
    background: #f1eff1;
    padding: 42px 0;
}

.serve-smart-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.serve-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.serve-tags span {
    display: inline-flex;
    padding: 8px 12px;
    background: var(--purple-light);
    color: var(--purple);
    font-size: 13px;
    font-weight: 700;
}

.serve-faq .product-faq-list {
    max-width: 860px;
}

.serve-cta {
    background:
        linear-gradient(90deg, rgba(130,19,107,0.95), rgba(180,37,157,0.72), rgba(42,9,37,0.92)),
        url('../images/linear-lightning-scaled.jpg') center / cover no-repeat;
}

.serve-cta .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.serve-cta .btn-outline {
    border-color: rgba(255,255,255,0.76);
}

/* ============================================
   CTA STRIP
   ============================================ */
.cta-strip {
    padding: 72px 0;
    background: var(--purple);
    text-align: center;
}

.cta-strip h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-strip p {
    font-size: 16px;
    color: rgba(255,255,255,0.82);
    margin-bottom: 32px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--dark);
    padding: 56px 0 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .footer-logo img {
    height: 72px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-brand h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.4;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.footer-contact-list li {
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
}

.footer-contact-list a {
    color: rgba(255,255,255,0.9);
    transition: color 0.15s;
}

.footer-contact-list a:hover { color: #CD88C2; }

.footer-social {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

.social-btn:hover { background: var(--purple); }

.social-btn svg {
    width: 16px;
    height: 16px;
    fill: rgba(255,255,255,0.8);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 0.03em;
}

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

.footer-col a {
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    transition: color 0.15s;
}

.footer-col a:hover { color: #CD88C2; }

.footer-bottom {
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.9);
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 16px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    transition: color 0.15s;
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

@media (max-width: 768px) {
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   FADE-IN ANIMATION
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

a:focus-visible, button:focus-visible {
    outline: 3px solid var(--purple);
    outline-offset: 3px;
    border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1400px) {
    .nav-links { gap: 10px; }
    .nav-links > li > a { padding: 8px 2px; font-size: 14px; }
    .nav-logo { padding: 20px 16px 20px 32px; }
    .nav-cta { padding: 8px 12px; font-size: 14px; }
}

@media (max-width: 1024px) {
    .hero-slide { grid-template-columns: 1fr 1fr; gap: 32px; }
    .why-inner { gap: 40px; }
    .services-inner { gap: 40px; }
    .contact-panel { grid-template-columns: 1fr; }
    .help-card-grid { grid-template-columns: 1fr 1fr; }
    .mission-vision,
    .credentials-grid,
    .about-project-grid { grid-template-columns: 1fr; }
    .consulting-intro-grid,
    .consulting-offering-grid { grid-template-columns: 1fr; }
    .consulting-card-wide { grid-column: auto; }
    .credentials-grid { gap: 44px; }
    .about-project-track { --project-visible: 2; }
    .about-project-card img { height: 260px; }
    .product-feature-grid,
    .product-card-grid-four { grid-template-columns: repeat(2, 1fr); }
    .product-gallery-grid { grid-template-columns: 1fr 1fr; }
    .serve-card-grid.six,
    .serve-category-grid { grid-template-columns: repeat(2, 1fr); }
    .serve-why-grid,
    .serve-smart-grid { grid-template-columns: 1fr; }
    .serve-process-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-right-group { display: none; }
    .menu-toggle { display: flex; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0; right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        padding: 16px;
        gap: 4px;
        z-index: 999;
    }

    .dropdown-menu { position: static; box-shadow: none; border: none; padding-left: 16px; background: var(--bg-light); border-radius: var(--radius); margin-top: 4px; }
    .nav-links > li:hover .dropdown-menu { display: none; }
    .nav-links.open > li .dropdown-menu.open { display: block; }

    .hero-slide { min-height: 80vh; }
    .hero-left { padding: 60px 24px; max-width: 100%; width: 100%; }
    .hero-left h1 { font-size: 32px; margin-bottom: 18px; }
    .hero-left p { font-size: 15px; margin-bottom: 28px; }
    .hero-dots { left: 24px; bottom: 20px; }
    .hero-slide::after {
        background: linear-gradient(to bottom, rgba(26,6,22,0.85) 0%, rgba(26,6,22,0.7) 100%);
    }
    .video-overlay p { font-size: 22px; }
    .video-play-icon { width: 38px; height: 38px; }

    .why-inner { grid-template-columns: 1fr; }
    .why-photo { order: -1; }
    .why-photo img { height: 280px; }

    .products-grid { grid-template-columns: 1fr 1fr; }
    .products-row-2 { grid-template-columns: 1fr 1fr; max-width: 100%; }

    .services-section {
        background:
            linear-gradient(90deg, rgba(42,9,37,0.98) 0%, rgba(88,12,74,0.9) 54%, rgba(42,9,37,0.45) 100%),
            url('../images/linear-lightning-scaled.jpg') center / cover no-repeat;
    }
    .services-photo { display: none; }

    .apart-grid { grid-template-columns: 1fr; gap: 32px; }

    .blog-grid { grid-template-columns: 1fr 1fr; }
    .page-hero { padding: 64px 0; }
    .contact-section { padding-top: 32px; }
    .contact-form,
    .contact-info { padding: 26px 22px; }
    .form-grid { grid-template-columns: 1fr; }
    .legal-section { padding: 40px 0; }
    .legal-content { padding: 32px 24px; }
    .legal-header h1 { font-size: 32px; }
    .sitemap-grid { grid-template-columns: 1fr; gap: 28px; }
    .about-hero { min-height: 560px; }
    .about-hero .container { padding: 0 24px; }
    .about-hero-content { margin-left: 0; padding-left: 0; }
    .about-hero-title-line { white-space: normal; }
    .about-hero p { font-size: 17px; }
    .about-story,
    .about-values,
    .about-credentials,
    .about-projects,
    .consulting-intro,
    .consulting-offerings { padding: 64px 0; }
    .consulting-hero { min-height: 540px; }
    .consulting-hero .container { padding: 0 24px; }
    .consulting-hero-content { margin-left: 0; }
    .consulting-hero h1,
    .consulting-intro-copy h2,
    .consulting-cta h2 { font-size: 30px; }
    .product-hero { min-height: 560px; }
    .product-hero-content { padding: 64px 0; }
    .product-hero h1 { font-size: 34px; }
    .spec-button-row { flex-wrap: wrap; }
    .product-section { padding: 64px 0; }
    .product-feature-grid,
    .product-card-grid-four,
    .product-gallery-grid { grid-template-columns: 1fr; }
    .product-feature-card { min-height: auto; padding: 30px 24px; }
    .serve-hero { min-height: 620px; }
    .serve-hero-content { padding: 72px 0; }
    .serve-hero h1 { font-size: 34px; }
    .serve-section { padding: 64px 0; }
    .serve-card-grid.six,
    .serve-category-grid,
    .serve-process-grid { grid-template-columns: 1fr; }
    .serve-use-card { min-height: auto; }
    .serve-fixture-categories { padding: 68px 0; }
    .serve-overlay-panel article { padding: 20px; }
    .mission-card,
    .vision-card { padding: 34px 28px; }
    .credential-card { grid-template-columns: 1fr; padding: 28px; }
    .about-project-track { --project-visible: 1; --project-gap: 24px; }
    .about-project-card div { padding: 28px; }
    .project-nav { display: none; }

    .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .products-row-2 { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .help-card-grid { grid-template-columns: 1fr; }
    .contact-intro h1 { font-size: 28px; }
    .contact-help-section h2 { font-size: 24px; }
    .about-hero-badges { flex-direction: column; align-items: flex-start; }
    .about-story h2,
    .credentials-intro h2,
    .about-values h2,
    .about-projects h2,
    .about-cta h2 { font-size: 28px; }
    .about-copy p,
    .mission-card p,
    .vision-card p,
    .credentials-intro p,
    .credential-card p,
    .about-project-card p { font-size: 15px; }
    .mission-card h3,
    .vision-card h3,
    .credential-card h3,
    .about-project-card h3 { font-size: 22px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .hero-grid { height: 220px; }
}

body p,
main li,
.footer-contact-list li,
.footer-bottom p {
    font-size: 16px !important;
}
