/*
Theme Name: SEAAN Framework
Theme URI: https://www.seaan.in/
Author: SEAAN Mobile & Accessories
Author URI: https://www.seaan.in/
Description: Premium conversion-focused WordPress theme for SEAAN Mobile & Accessories.
Version: 0.2.0
Requires at least: 6.4
Requires PHP: 8.2
Text Domain: seaan-framework
License: GPL-2.0-or-later
*/

:root {
    --seaan-navy: #001440;
    --seaan-navy-2: #071f5c;
    --seaan-blue: #0059f6;
    --seaan-blue-2: #2563eb;
    --seaan-cyan: #00c0cf;
    --seaan-white: #fff;
    --seaan-black: #111827;
    --seaan-gray-50: #f8fafc;
    --seaan-gray-100: #f1f5f9;
    --seaan-gray-200: #e5e7eb;
    --seaan-gray-300: #cbd5e1;
    --seaan-gray-500: #6b7280;
    --seaan-gray-700: #374151;
    --seaan-green: #10b981;
    --seaan-orange: #f97316;
    --seaan-container: 1240px;
    --seaan-radius-sm: 12px;
    --seaan-radius-md: 16px;
    --seaan-radius-lg: 20px;
    --seaan-radius-xl: 28px;
    --seaan-shadow-sm: 0 6px 24px rgba(0, 20, 64, .06);
    --seaan-shadow-md: 0 16px 44px rgba(0, 20, 64, .10);
    --seaan-shadow-lg: 0 28px 80px rgba(0, 20, 64, .14);
    --seaan-transition: 220ms cubic-bezier(.2,.7,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--seaan-white);
    color: var(--seaan-black);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.no-scroll { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }

button, input, textarea, select { font: inherit; }

button { cursor: pointer; }

:focus-visible {
    outline: 3px solid var(--seaan-cyan);
    outline-offset: 3px;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.seaan-skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 99999;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--seaan-navy);
    color: #fff;
    transform: translateY(-150%);
    transition: transform var(--seaan-transition);
}
.seaan-skip-link:focus { transform: translateY(0); }

.seaan-container {
    width: min(calc(100% - 48px), var(--seaan-container));
    margin-inline: auto;
}

.seaan-section { padding: 96px 0; }
.seaan-section--soft { background: var(--seaan-gray-50); }
.seaan-section--white { background: #fff; }

.seaan-section-head {
    max-width: 700px;
    margin-bottom: 44px;
}
.seaan-section-head--center { margin-inline: auto; text-align: center; }

.seaan-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--seaan-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.seaan-eyebrow::before {
    content: "";
    width: 24px;
    height: 2px;
    border-radius: 99px;
    background: var(--seaan-cyan);
}
.seaan-section-head--center .seaan-eyebrow { justify-content: center; }

.seaan-section-title {
    margin: 0 0 14px;
    color: var(--seaan-navy);
    font-family: Manrope, Inter, sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.06;
    letter-spacing: -.045em;
}
.seaan-section-copy {
    margin: 0;
    color: var(--seaan-gray-500);
    font-size: 17px;
}

.seaan-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 14px;
    background: var(--seaan-blue);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(0,89,246,.18);
    transition: transform var(--seaan-transition), box-shadow var(--seaan-transition), background var(--seaan-transition);
}
.seaan-button:hover {
    background: var(--seaan-navy);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--seaan-shadow-md);
}
.seaan-button--outline {
    background: #fff;
    color: var(--seaan-blue);
    border-color: var(--seaan-blue);
    box-shadow: none;
}
.seaan-button--outline:hover { background: var(--seaan-blue); color: #fff; }
.seaan-button--white { background: #fff; color: var(--seaan-navy); box-shadow: none; }
.seaan-button--white:hover { background: var(--seaan-cyan); color: var(--seaan-navy); }
.seaan-button__arrow { font-size: 18px; line-height: 0; }

/* Header */
.seaan-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.94);
    border-bottom: 1px solid rgba(229,231,235,.75);
    box-shadow: 0 4px 26px rgba(0,20,64,.045);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
.seaan-topbar {
    background: var(--seaan-navy);
    color: rgba(255,255,255,.9);
    font-size: 12px;
}
.seaan-topbar-inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.seaan-topbar-left, .seaan-topbar-right { display: flex; align-items: center; gap: 18px; }
.seaan-topbar a:hover { color: #fff; }
.seaan-header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.seaan-brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.seaan-brand .custom-logo { width: auto; max-width: 185px; max-height: 54px; }
.seaan-brand-text {
    color: var(--seaan-navy);
    font-family: Manrope, Inter, sans-serif;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -.05em;
}
.seaan-desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}
.seaan-desktop-nav > ul, .seaan-desktop-nav .menu {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.seaan-desktop-nav a {
    color: var(--seaan-gray-700);
    font-size: 13px;
    font-weight: 700;
    transition: color var(--seaan-transition);
}
.seaan-desktop-nav a:hover, .seaan-desktop-nav .current-menu-item > a { color: var(--seaan-blue); }
.seaan-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--seaan-gray-200);
    border-radius: 14px;
    background: #fff;
    color: var(--seaan-navy);
}
.seaan-menu-toggle::before, .seaan-menu-toggle::after, .seaan-menu-toggle span {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 2px;
    background: currentColor;
    transition: transform var(--seaan-transition), opacity var(--seaan-transition);
}
.seaan-menu-toggle.is-open::before { transform: translateY(6px) rotate(45deg); }
.seaan-menu-toggle.is-open span { opacity: 0; }
.seaan-menu-toggle.is-open::after { transform: translateY(-6px) rotate(-45deg); }
.seaan-mobile-nav {
    display: none;
    padding: 8px 0 22px;
    border-top: 1px solid var(--seaan-gray-100);
    background: #fff;
}
.seaan-mobile-nav.is-open { display: block; }
.seaan-mobile-nav ul { margin: 0; padding: 0; list-style: none; }
.seaan-mobile-nav li + li { border-top: 1px solid var(--seaan-gray-100); }
.seaan-mobile-nav a { display: block; padding: 16px 6px; font-weight: 700; }
.seaan-mobile-nav .seaan-button { width: 100%; margin-top: 10px; }

/* Hero */
.seaan-hero {
    position: relative;
    overflow: hidden;
    padding: 70px 0 54px;
    background:
        radial-gradient(circle at 78% 20%, rgba(0,192,207,.18), transparent 25%),
        radial-gradient(circle at 58% 52%, rgba(0,89,246,.11), transparent 32%),
        linear-gradient(135deg, #fff 0%, #f7faff 55%, #edf5ff 100%);
}
.seaan-hero::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    top: -260px;
    right: -220px;
    border: 1px solid rgba(0,89,246,.10);
    border-radius: 50%;
    box-shadow: 0 0 0 90px rgba(0,89,246,.025), 0 0 0 180px rgba(0,89,246,.018);
}
.seaan-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: .94fr 1.06fr;
    gap: 28px;
    align-items: center;
}
.seaan-hero-copy { padding: 28px 0; }
.seaan-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 8px 12px;
    border: 1px solid rgba(0,89,246,.10);
    border-radius: 999px;
    background: rgba(232,242,255,.82);
    color: var(--seaan-blue);
    font-size: 12px;
    font-weight: 800;
}
.seaan-hero h1 {
    max-width: 660px;
    margin: 0 0 22px;
    color: var(--seaan-navy);
    font-family: Manrope, Inter, sans-serif;
    font-size: clamp(46px, 5.3vw, 76px);
    line-height: .98;
    letter-spacing: -.055em;
}
.seaan-gradient-text {
    background: linear-gradient(90deg, var(--seaan-blue), #21a9ff 75%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.seaan-hero-copy > p {
    max-width: 590px;
    margin: 0 0 28px;
    color: var(--seaan-gray-700);
    font-size: 17px;
}
.seaan-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.seaan-benefits {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.seaan-benefits li {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--seaan-navy);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}
.seaan-check {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 8px;
    background: #eaf2ff;
    color: var(--seaan-blue);
    font-size: 12px;
}
.seaan-hero-stage {
    position: relative;
    min-height: 470px;
}
.seaan-orbit {
    position: absolute;
    left: 5%;
    right: 5%;
    top: 12%;
    bottom: 10%;
    border: 1px solid rgba(0,89,246,.13);
    border-radius: 50%;
    transform: rotate(-8deg);
}
.seaan-orbit::before {
    content: "";
    position: absolute;
    inset: 10% 15%;
    border: 1px solid rgba(0,89,246,.10);
    border-radius: 50%;
}
.seaan-product {
    position: absolute;
    display: grid;
    place-items: center;
    border-radius: 22px;
    box-shadow: 0 22px 42px rgba(0,20,64,.17);
    transform-origin: center;
}
.seaan-product--charger {
    width: 110px; height: 132px; left: 17%; top: 24%;
    background: linear-gradient(145deg, #fff, #dfe6ee);
    transform: rotate(8deg);
}
.seaan-product--power {
    width: 125px; height: 225px; left: 39%; top: 14%;
    background: linear-gradient(145deg, #202a37, #05070a);
    color: #fff;
    transform: rotate(9deg);
}
.seaan-product--neckband {
    width: 170px; height: 110px; left: 47%; top: 7%;
    border-radius: 60px;
    background: transparent;
    border: 13px solid #252b33;
    border-bottom-color: transparent;
    box-shadow: none;
    transform: rotate(7deg);
}
.seaan-product--buds {
    width: 122px; height: 100px; right: 12%; top: 25%;
    background: linear-gradient(145deg, #fff, #dfe6ee);
    border-radius: 30px;
}
.seaan-product--carcharger {
    width: 94px; height: 94px; right: 12%; bottom: 19%;
    background: linear-gradient(145deg, #262d37, #080a0e);
    transform: rotate(19deg);
}
.seaan-product--cable {
    width: 190px; height: 70px; left: 23%; bottom: 15%;
    border: 8px solid #303942;
    border-left-color: transparent;
    border-right-color: transparent;
    background: transparent;
    box-shadow: none;
    border-radius: 50%;
    transform: rotate(-12deg);
}
.seaan-product::after {
    content: "CORE";
    font-family: Manrope, sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    opacity: .55;
}
.seaan-product--neckband::after, .seaan-product--cable::after { display: none; }
.seaan-product--power::after { transform: rotate(90deg); opacity: .8; font-size: 13px; }
.seaan-product--carcharger::after { color: #fff; }
.seaan-distributor-badge {
    position: absolute;
    right: 5%;
    top: 11%;
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    padding: 12px;
    border: 7px solid rgba(255,255,255,.72);
    border-radius: 50%;
    background: rgba(255,255,255,.86);
    color: var(--seaan-navy);
    text-align: center;
    font-size: 11px;
    font-weight: 900;
    box-shadow: var(--seaan-shadow-sm);
    backdrop-filter: blur(8px);
}
.seaan-hero-stats {
    position: absolute;
    right: 0;
    bottom: 5%;
    display: grid;
    gap: 10px;
    width: 145px;
}
.seaan-hero-stat {
    padding: 14px;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 16px;
    background: rgba(255,255,255,.78);
    box-shadow: var(--seaan-shadow-sm);
    backdrop-filter: blur(12px);
}
.seaan-hero-stat strong { display: block; color: var(--seaan-navy); font-size: 20px; }
.seaan-hero-stat span { color: var(--seaan-gray-500); font-size: 11px; }

/* Trust strip */
.seaan-trust-strip {
    position: relative;
    z-index: 3;
    margin-top: -2px;
}
.seaan-trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(100deg, #061b52, #062a78 60%, #003ea6);
    color: #fff;
    box-shadow: var(--seaan-shadow-md);
}
.seaan-trust-item {
    min-height: 84px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-right: 1px solid rgba(255,255,255,.18);
}
.seaan-trust-item:last-child { border-right: 0; }
.seaan-trust-icon {
    flex: 0 0 38px;
    width: 38px; height: 38px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: rgba(0,192,207,.18);
    color: #fff;
}
.seaan-trust-item strong { display: block; font-size: 18px; line-height: 1.1; }
.seaan-trust-item span { display: block; color: rgba(255,255,255,.72); font-size: 10px; }

/* Brands */
.seaan-brand-layout {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 28px;
    align-items: center;
}
.seaan-brand-intro h3 {
    margin: 0 0 6px;
    color: var(--seaan-navy);
    font-family: Manrope, sans-serif;
    font-size: 20px;
}
.seaan-brand-intro p { margin: 0; color: var(--seaan-gray-500); font-size: 13px; }
.seaan-brand-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.seaan-brand-card {
    min-height: 88px;
    display: grid;
    place-items: center;
    padding: 12px;
    border: 1px solid var(--seaan-gray-200);
    border-radius: 14px;
    background: #fff;
    color: var(--seaan-navy);
    box-shadow: 0 4px 14px rgba(0,20,64,.03);
    transition: transform var(--seaan-transition), box-shadow var(--seaan-transition), border-color var(--seaan-transition);
}
.seaan-brand-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0,89,246,.22);
    box-shadow: var(--seaan-shadow-sm);
}
.seaan-brand-logo {
    font-family: Manrope, sans-serif;
    font-weight: 900;
    letter-spacing: -.04em;
    font-size: 18px;
}
.seaan-brand-logo--core { font-size: 25px; letter-spacing: .03em; }
.seaan-brand-card small { display: block; margin-top: 5px; color: var(--seaan-blue); font-size: 9px; font-weight: 800; }

/* Categories */
.seaan-category-layout {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 32px;
}
.seaan-category-intro { padding-top: 10px; }
.seaan-category-intro .seaan-button { margin-top: 20px; }
.seaan-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.seaan-category-card {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    padding: 18px;
    border: 1px solid var(--seaan-gray-200);
    border-radius: 16px;
    background: linear-gradient(145deg, #fff, #f5f8fc);
    transition: transform var(--seaan-transition), box-shadow var(--seaan-transition);
}
.seaan-category-card:hover { transform: translateY(-5px); box-shadow: var(--seaan-shadow-md); }
.seaan-category-card h3 { position: relative; z-index: 2; margin: 100px 0 2px; color: var(--seaan-navy); font-size: 15px; }
.seaan-category-card p { position: relative; z-index: 2; margin: 0; color: var(--seaan-gray-500); font-size: 11px; }
.seaan-category-arrow {
    position: absolute; right: 12px; bottom: 12px;
    width: 28px; height: 28px; display: grid; place-items: center;
    border-radius: 50%; background: #eaf2ff; color: var(--seaan-blue);
}
.seaan-category-art {
    position: absolute; top: 18px; right: 24px;
    width: 88px; height: 78px;
    border-radius: 18px;
    background: linear-gradient(145deg, #1f2937, #05070a);
    transform: rotate(-8deg);
    box-shadow: 0 16px 30px rgba(0,20,64,.16);
}
.seaan-category-card:nth-child(even) .seaan-category-art { background: linear-gradient(145deg,#fff,#d9e1ea); }
.seaan-category-card:nth-child(3n) .seaan-category-art { width: 108px; height: 18px; top: 38px; border-radius: 99px; transform: rotate(16deg); }
.seaan-category-card:nth-child(4n) .seaan-category-art { border-radius: 28px; }
.seaan-category-art::after {
    content: "CORE";
    position: absolute; inset: 0; display: grid; place-items: center;
    color: rgba(255,255,255,.55); font-size: 9px; font-weight: 900; letter-spacing: .1em;
}
.seaan-category-card:nth-child(even) .seaan-category-art::after { color: rgba(0,20,64,.38); }

/* Why SEAAN */
.seaan-why {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.seaan-why-image {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border-radius: 24px;
    background:
        linear-gradient(140deg, rgba(0,20,64,.15), rgba(0,89,246,.08)),
        linear-gradient(135deg, #9db2c8, #eaf1f7 60%, #8ea6bb);
}
.seaan-warehouse {
    position: absolute; left: 10%; right: 10%; bottom: 14%;
    height: 55%;
    border-radius: 8px;
    background: linear-gradient(145deg,#263645,#0f1822);
    box-shadow: 0 25px 40px rgba(0,0,0,.18);
}
.seaan-warehouse::before {
    content: "SEAAN";
    position: absolute; left: 14%; top: 20%;
    color: #fff; font-family: Manrope, sans-serif; font-size: 28px; font-weight: 900; letter-spacing: .04em;
}
.seaan-truck {
    position: absolute; left: 48%; bottom: 8%;
    width: 40%; height: 18%;
    border-radius: 8px;
    background: linear-gradient(145deg,#fff,#dce5ef);
    box-shadow: 0 15px 30px rgba(0,20,64,.18);
}
.seaan-truck::after {
    content: "SEAAN";
    position: absolute; left: 12%; top: 25%; color: var(--seaan-blue); font-weight: 900;
}
.seaan-why-badge {
    position: absolute; right: 7%; top: 8%;
    max-width: 180px; padding: 15px 18px;
    border-radius: 16px; background: var(--seaan-blue); color: #fff;
    box-shadow: var(--seaan-shadow-md); font-size: 13px; font-weight: 800;
}
.seaan-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 30px;
}
.seaan-feature {
    display: flex;
    gap: 12px;
    padding: 17px;
    font-size: 24px;
    border: 1px solid var(--seaan-gray-200);
    border-radius: 16px;
    background: #fff;
    transition: transform var(--seaan-transition), box-shadow var(--seaan-transition);
}

.seaan-feature:hover { transform: translateY(-3px); box-shadow: var(--seaan-shadow-sm); }
.seaan-feature-icon {
    flex: 0 0 38px; width: 38px; height: 38px;
    display: grid; place-items: center; border-radius: 12px;
    background: #edf4ff; color: var(--seaan-blue); font-weight: 900;
}
.seaan-feature h3 { margin: 0 0 2px; color: var(--seaan-navy); font-size: 15px; }
.seaan-feature p { margin: 0; color: var(--seaan-gray-500); font-size: 12px; line-height: 1.45; }

/* Business solutions */
.seaan-solutions-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.seaan-solution {
    padding: 24px 20px;
    border: 1px solid var(--seaan-gray-200);
    border-radius: 18px;
    background: #fff;
    transition: transform var(--seaan-transition), box-shadow var(--seaan-transition), border-color var(--seaan-transition);
}
.seaan-solution:hover { transform: translateY(-5px); border-color: rgba(0,89,246,.22); box-shadow: var(--seaan-shadow-md); }
.seaan-solution-icon {
    width: 46px; height: 46px; display: grid; place-items: center;
    margin-bottom: 20px; border-radius: 14px; background: #edf4ff; color: var(--seaan-blue);
}
.seaan-solution h3 { margin: 0 0 8px; color: var(--seaan-navy); font-size: 16px; }
.seaan-solution p { margin: 0; color: var(--seaan-gray-500); font-size: 12px; }

/* CTA */
.seaan-cta {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 58px;
    background: linear-gradient(120deg, #03184e, #0642b9 68%, #00a9c3);
    color: #fff;
    box-shadow: var(--seaan-shadow-lg);
}
.seaan-cta::before {
    content: "";
    position: absolute; width: 420px; height: 420px; right: -120px; top: -200px;
    border: 1px solid rgba(255,255,255,.2); border-radius: 50%;
    box-shadow: 0 0 0 80px rgba(255,255,255,.04), 0 0 0 160px rgba(255,255,255,.025);
}
.seaan-cta-inner {
    position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: space-between; gap: 30px;
}
.seaan-cta h2 { max-width: 680px; margin: 0 0 10px; color: #fff; font-family: Manrope,sans-serif; font-size: clamp(30px,4vw,48px); line-height: 1.05; letter-spacing: -.04em; }
.seaan-cta p { max-width: 620px; margin: 0; color: rgba(255,255,255,.76); }

/* Testimonials */
.seaan-testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.seaan-testimonial {
    padding: 24px;
    border: 1px solid var(--seaan-gray-200);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(0,20,64,.035);
}
.seaan-stars { color: #f59e0b; letter-spacing: 2px; font-size: 13px; }
.seaan-testimonial blockquote { margin: 16px 0 20px; color: var(--seaan-gray-700); font-size: 14px; line-height: 1.7; }
.seaan-person { display: flex; align-items: center; gap: 10px; }
.seaan-avatar {
    width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%;
    background: linear-gradient(145deg,#dce9ff,#f5f8ff); color: var(--seaan-blue); font-weight: 900;
}
.seaan-person strong { display: block; color: var(--seaan-navy); font-size: 13px; }
.seaan-person span { display: block; color: var(--seaan-gray-500); font-size: 11px; }

/* Contact strip */
.seaan-contact-strip {
    background: linear-gradient(90deg, var(--seaan-navy), #063b9c 62%, #00a8bd);
    color: #fff;
}
.seaan-contact-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
}
.seaan-contact-item {
    min-height: 92px; display: flex; align-items: center; gap: 12px;
    padding: 18px 22px; border-right: 1px solid rgba(255,255,255,.18);
}
.seaan-contact-item:last-child { border-right: 0; }
.seaan-contact-icon {
    width: 40px; height: 40px; display: grid; place-items: center;
    border-radius: 50%; background: rgba(255,255,255,.12); font-weight: 900;
}
.seaan-contact-item strong { display: block; font-size: 13px; }
.seaan-contact-item span { display: block; color: rgba(255,255,255,.72); font-size: 11px; }

/* Footer */
.seaan-site-footer { padding: 60px 0 24px; background: #03102e; color: rgba(255,255,255,.68); }
.seaan-footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 42px; padding-bottom: 42px;
}
.seaan-site-footer h2 { margin: 0 0 14px; color: #fff; font-family: Manrope,sans-serif; font-size: 18px; }
.seaan-footer-brand { color: #fff; font-family: Manrope,sans-serif; font-size: 27px; font-weight: 900; letter-spacing: -.05em; }
.seaan-site-footer p { max-width: 400px; margin: 0 0 8px; font-size: 13px; }
.seaan-footer-links { margin: 0; padding: 0; list-style: none; }
.seaan-footer-links li + li { margin-top: 8px; }
.seaan-footer-links a:hover { color: #fff; }
.seaan-footer-bottom {
    display: flex; justify-content: space-between; gap: 20px; padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.12); font-size: 12px;
}
.seaan-footer-legal { display: flex; gap: 16px; }

/* Reveal animation */
.seaan-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 650ms ease, transform 650ms ease;
}
.seaan-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1100px) {
    .seaan-desktop-nav > ul, .seaan-desktop-nav .menu { gap: 15px; }
    .seaan-desktop-nav { gap: 15px; }
    .seaan-hero-grid { grid-template-columns: 1fr 1fr; }
    .seaan-benefits { grid-template-columns: repeat(2, auto); }
    .seaan-brand-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .seaan-desktop-nav { display: none; }
    .seaan-menu-toggle { display: block; }
    .seaan-topbar-right { display: none; }
    .seaan-hero-grid, .seaan-why { grid-template-columns: 1fr; }
    .seaan-hero-copy { padding-top: 10px; }
    .seaan-hero-stage { min-height: 430px; }
    .seaan-category-layout { grid-template-columns: 1fr; }
    .seaan-category-grid { grid-template-columns: repeat(3,1fr); }
    .seaan-solutions-grid { grid-template-columns: repeat(2,1fr); }
    .seaan-testimonials-grid { grid-template-columns: 1fr; }
    .seaan-footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (max-width: 767px) {
    .seaan-container { width: min(calc(100% - 32px), var(--seaan-container)); }
    .seaan-section { padding: 70px 0; }
    .seaan-topbar { display: none; }
    .seaan-header-inner { min-height: 72px; }
    .seaan-mobile-nav { display: none; }
    .seaan-mobile-nav.is-open { display: block; }
    .seaan-hero { padding: 44px 0 30px; }
    .seaan-hero h1 { font-size: clamp(42px, 12vw, 58px); }
    .seaan-hero-copy > p { font-size: 15px; }
    .seaan-hero-stage { min-height: 355px; margin-top: 8px; }
    .seaan-product--charger { width: 78px; height: 96px; left: 12%; }
    .seaan-product--power { width: 92px; height: 170px; left: 38%; }
    .seaan-product--neckband { width: 130px; height: 78px; left: 43%; border-width: 9px; }
    .seaan-product--buds { width: 92px; height: 74px; right: 4%; }
    .seaan-product--carcharger { width: 68px; height: 68px; right: 5%; }
    .seaan-product--cable { width: 140px; height: 48px; left: 18%; }
    .seaan-distributor-badge { width: 72px; height: 72px; font-size: 9px; right: 2%; top: 6%; border-width: 5px; }
    .seaan-hero-stats { width: 105px; right: 1%; bottom: 0; }
    .seaan-hero-stat { padding: 9px; }
    .seaan-hero-stat strong { font-size: 16px; }
    .seaan-hero-stat span { font-size: 9px; }
    .seaan-benefits { grid-template-columns: repeat(2,1fr); gap: 10px; }
    .seaan-benefits li { font-size: 10px; }
    .seaan-trust-grid { grid-template-columns: repeat(2,1fr); border-radius: 14px; }
    .seaan-trust-item { min-height: 70px; padding: 12px; border-right: 1px solid rgba(255,255,255,.15); }
    .seaan-trust-item:nth-child(2n) { border-right: 0; }
    .seaan-trust-item:last-child { grid-column: 1 / -1; }
    .seaan-brand-layout { grid-template-columns: 1fr; gap: 18px; }
    .seaan-brand-grid { grid-template-columns: repeat(2,1fr); }
    .seaan-category-grid { grid-template-columns: repeat(2,1fr); }
    .seaan-category-card { min-height: 170px; }
    .seaan-category-card h3 { margin-top: 90px; }
    .seaan-feature-grid { grid-template-columns: 1fr; }
    .seaan-why-image { min-height: 300px; }
    .seaan-solutions-grid { grid-template-columns: repeat(2,1fr); }
    .seaan-cta { padding: 38px 24px; border-radius: 22px; }
    .seaan-cta-inner { display: block; }
    .seaan-cta .seaan-button { margin-top: 22px; }
    .seaan-contact-grid { grid-template-columns: repeat(2,1fr); }
    .seaan-contact-item { min-height: 78px; padding: 14px; }
    .seaan-contact-item:nth-child(2n) { border-right: 0; }
    .seaan-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .seaan-footer-grid > :first-child { grid-column: 1 / -1; }
    .seaan-footer-bottom { display: block; }
    .seaan-footer-legal { margin-top: 10px; flex-wrap: wrap; }
}
@media (max-width: 430px) {
    .seaan-hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
    .seaan-button { padding-inline: 15px; }
    .seaan-hero-actions .seaan-button { width: 100%; }
    .seaan-hero-stage { min-height: 325px; }
    .seaan-category-card { padding: 14px; }
    .seaan-category-card h3 { font-size: 13px; }
    .seaan-solutions-grid { gap: 10px; }
    .seaan-solution { padding: 18px 14px; }
}


/* =========================================================
   v0.3.0 — Approved Mockup Visual Polish
   ========================================================= */

.seaan-main { overflow: clip; }

.seaan-hero {
    min-height: 570px;
    padding: 54px 0 42px;
}

.seaan-hero-grid {
    min-height: 500px;
    grid-template-columns: minmax(0, .93fr) minmax(520px, 1.07fr);
    gap: 18px;
}

.seaan-hero-copy { padding-left: 4px; }

.seaan-hero h1 {
    max-width: 650px;
    font-size: clamp(48px, 5vw, 72px);
    line-height: .97;
}

.seaan-hero-copy > p {
    max-width: 555px;
    font-size: 15px;
    line-height: 1.7;
}

.seaan-hero-stage {
    min-height: 500px;
    isolation: isolate;
}

.seaan-hero-stage::after {
    content: "";
    position: absolute;
    left: 13%;
    right: 11%;
    bottom: 11%;
    height: 92px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(0,89,246,.24), rgba(0,89,246,0) 70%);
    filter: blur(10px);
    z-index: -1;
}

.seaan-orbit {
    left: 3%;
    right: 3%;
    top: 7%;
    bottom: 5%;
    border-color: rgba(0,89,246,.12);
}

.seaan-orbit::before {
    inset: 12% 12%;
}

.seaan-product {
    z-index: 2;
    filter: saturate(.92);
}

.seaan-product--charger {
    left: 11%;
    top: 25%;
    width: 108px;
    height: 132px;
}

.seaan-product--power {
    left: 36%;
    top: 14%;
    width: 126px;
    height: 228px;
}

.seaan-product--neckband {
    left: 46%;
    top: 5%;
    width: 178px;
    height: 112px;
}

.seaan-product--buds {
    right: 12%;
    top: 22%;
    width: 126px;
    height: 104px;
}

.seaan-product--carcharger {
    right: 9%;
    bottom: 15%;
}

.seaan-product--cable {
    left: 19%;
    bottom: 13%;
    width: 210px;
}

.seaan-distributor-badge {
    right: 2%;
    top: 7%;
    width: 86px;
    height: 86px;
}

.seaan-hero-stats {
    right: 0;
    bottom: 3%;
    width: 142px;
}

.seaan-trust-grid {
    border-radius: 15px;
}

.seaan-trust-item {
    min-height: 78px;
    padding: 14px 18px;
}

.seaan-brand-card {
    min-height: 82px;
    background: linear-gradient(180deg, #fff, #fbfdff);
}

.seaan-category-card {
    /* min-height: 205px; */
}

.seaan-category-art {
    top: 15px;
    right: 28px;
    width: 96px;
    height: 86px;
}

.seaan-why-image {
    min-height: 410px;
    background:
        linear-gradient(140deg, rgba(0,20,64,.10), rgba(0,89,246,.05)),
        linear-gradient(135deg, #aabed0, #edf4f9 58%, #92aabd);
}

.seaan-cta {
    min-height: 250px;
}

@media (max-width: 1100px) {
    .seaan-hero-grid {
        grid-template-columns: 1fr 1fr;
    }
    .seaan-hero h1 { font-size: clamp(44px, 5vw, 62px); }
    .seaan-product--power { left: 34%; }
    .seaan-product--neckband { left: 43%; }
}

@media (max-width: 900px) {
    .seaan-hero {
        min-height: 0;
        padding-top: 42px;
    }
    .seaan-hero-grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .seaan-hero-stage {
        min-height: 430px;
        margin-top: -2px;
    }
}

@media (max-width: 767px) {
    .seaan-hero {
        padding: 34px 0 22px;
    }

    .seaan-hero h1 {
        max-width: 520px;
        font-size: clamp(40px, 11.5vw, 54px);
    }

    .seaan-hero-stage {
        min-height: 350px;
    }

    .seaan-product--charger {
        left: 9%;
        width: 74px;
        height: 92px;
    }

    .seaan-product--power {
        left: 35%;
        width: 90px;
        height: 166px;
    }

    .seaan-product--neckband {
        left: 43%;
        width: 128px;
        height: 78px;
    }

    .seaan-product--buds {
        right: 4%;
        width: 92px;
        height: 74px;
    }

    .seaan-product--carcharger {
        right: 3%;
        bottom: 13%;
        width: 66px;
        height: 66px;
    }

    .seaan-product--cable {
        left: 15%;
        bottom: 11%;
        width: 140px;
        height: 48px;
    }

    .seaan-distributor-badge {
        right: 0;
        top: 5%;
        width: 70px;
        height: 70px;
        font-size: 8px;
    }

    .seaan-hero-stats {
        right: 0;
        bottom: 0;
        width: 104px;
    }

    .seaan-category-card {
        min-height: 175px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .seaan-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .seaan-button,
    .seaan-card,
    .seaan-category-card,
    .seaan-feature,
    .seaan-solution,
    .seaan-brand-card {
        transition: none;
    }
}

.seaan-hero-real-image {
    position: absolute !important;
    inset: 1% 0 4%;
    width: 100%;
    height: 95%;
    object-fit: contain;
    transform: scale(1.25);
    transform-origin: center;
    z-index: 2;
}

@media (max-width: 767px) {
    .seaan-hero-real-image {
        inset: 7% 0 5% 0;
        width: 100%;
        height: 88%;
    }
}

/* v0.4.0 temporary mock-asset layer */
.seaan-hero-real-image{position:absolute;inset:1% 0 4%;width:100%;height:95%;object-fit:contain;object-position:center;filter:drop-shadow(0 28px 35px rgba(0,20,64,.12));z-index:2}
.seaan-category-image{position:absolute;top:8px;right:10px;width:78%;max-width:190px;height:118px;object-fit:contain;object-position:right top;z-index:1;transition:transform var(--seaan-transition)}
.seaan-category-card:hover .seaan-category-image{transform:translateY(-4px) scale(1.025)}
.seaan-category-art{display:none}
.seaan-brand-card--core{padding:10px}
.seaan-brand-card--core img{width:112px;height:auto;border-radius: 2px}
.seaan-warehouse{display:none}
.seaan-warehouse-real{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
@media(max-width:767px){
 .seaan-hero-real-image{inset:4% 0 4%;width:100%;height:92%}
 .seaan-category-image{top:8px;right:6px;width:86%;height:100px}
}

/* v0.4.1 asset rendering fix */
.seaan-hero-real-image,
.seaan-category-image,
.seaan-warehouse-real,
.seaan-brand-card--core img {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.seaan-category-card {
    position: relative;
    overflow: hidden;
}

.seaan-category-image {
    position: absolute !important;
    top: 8px;
    right: 10px;
    width: 78%;
    max-width: 190px;
    height: 118px;
    object-fit: contain;
    z-index: 1;
}

.seaan-category-card h3,
.seaan-category-card p,
.seaan-category-arrow {
    /* position: relative; */
    z-index: 3;
}

.seaan-hero-real-image {
    position: absolute !important;
    inset: 1% 0 4%;
    width: 100%;
    height: 95%;
    object-fit: contain;
    z-index: 2;
}

.seaan-warehouse-real {
    position: absolute !important;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

@media (max-width: 767px) {
    .seaan-category-image {
        top: 8px;
        right: 6px;
        width: 86%;
        height: 100px;
    }
}

/* =========================================================
   v0.5.0 — Products / Brands / Dealers Architecture
   ========================================================= */

.seaan-archive-hero {
    padding: 86px 0 60px;
    background:
        radial-gradient(circle at 85% 15%, rgba(0,192,207,.12), transparent 25%),
        linear-gradient(135deg, #f8fbff, #eef5ff);
}

.seaan-breadcrumb {
    margin-bottom: 16px;
    color: var(--seaan-gray-500);
    font-size: 12px;
    font-weight: 700;
}
.seaan-breadcrumb a { color: var(--seaan-blue); }

.seaan-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 64px 0 96px;
}

.seaan-product-card {
    overflow: hidden;
    border: 1px solid var(--seaan-gray-200);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,20,64,.04);
    transition: transform var(--seaan-transition), box-shadow var(--seaan-transition), border-color var(--seaan-transition);
}
.seaan-product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0,89,246,.18);
    box-shadow: var(--seaan-shadow-md);
}
.seaan-product-card__media {
    position: relative;
    display: grid;
    min-height: 240px;
    place-items: center;
    padding: 24px;
    background: linear-gradient(145deg, #f5f9fd, #eaf2fb);
}
.seaan-product-card__media img {
    width: 100%;
    height: 220px;
    object-fit: contain;
}
.seaan-product-card__placeholder {
    display: grid;
    place-items: center;
    width: 150px;
    height: 180px;
    border-radius: 28px;
    background: linear-gradient(145deg, #263544, #070b11);
    color: #fff;
    font-family: Manrope, sans-serif;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: .05em;
}
.seaan-product-card__body { padding: 22px; }
.seaan-product-card__body h2 {
    margin: 0 0 7px;
    color: var(--seaan-navy);
    font-family: Manrope, sans-serif;
    font-size: 19px;
    line-height: 1.2;
}
.seaan-product-card__body p {
    min-height: 44px;
    margin: 0 0 17px;
    color: var(--seaan-gray-500);
    font-size: 13px;
}
.seaan-product-card__body .seaan-button {
    min-height: 44px;
    font-size: 12px;
}

.seaan-business-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 48px;
    align-items: start;
    padding: 80px 0 100px;
}
.seaan-business-panel {
    padding: 34px;
    border-radius: 24px;
    background: linear-gradient(145deg, #03184e, #0642b9);
    color: #fff;
    box-shadow: var(--seaan-shadow-lg);
}
.seaan-business-panel h2 {
    margin: 0 0 14px;
    color: #fff;
    font-family: Manrope, sans-serif;
    font-size: clamp(30px,4vw,48px);
    line-height: 1.04;
    letter-spacing: -.04em;
}
.seaan-business-panel p { color: rgba(255,255,255,.76); }
.seaan-business-points {
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}
.seaan-business-points li {
    display: flex;
    gap: 10px;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,.12);
    font-size: 13px;
    font-weight: 700;
}
.seaan-business-form {
    padding: 34px;
    border: 1px solid var(--seaan-gray-200);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--seaan-shadow-sm);
}
.seaan-form-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
}
.seaan-form-field--full { grid-column: 1 / -1; }
.seaan-form-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--seaan-navy);
    font-size: 12px;
    font-weight: 800;
}
.seaan-form-field input,
.seaan-form-field textarea,
.seaan-form-field select {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--seaan-gray-200);
    border-radius: 12px;
    background: #fff;
    color: var(--seaan-black);
}
.seaan-form-field textarea { min-height: 120px; resize: vertical; }
.seaan-form-submit { margin-top: 18px; }

.seaan-brand-archive-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    padding: 64px 0 96px;
}
.seaan-brand-archive-card {
    min-height: 190px;
    display: grid;
    place-items: center;
    padding: 24px;
    border: 1px solid var(--seaan-gray-200);
    border-radius: 20px;
    background: #fff;
    transition: transform var(--seaan-transition), box-shadow var(--seaan-transition);
}
.seaan-brand-archive-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--seaan-shadow-md);
}
.seaan-brand-archive-card__logo {
    width: 170px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #f5f8fc;
    color: var(--seaan-navy);
    font-family: Manrope, sans-serif;
    font-size: 25px;
    font-weight: 900;
}

.seaan-dealer-benefits {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
    margin: 0 0 30px;
}
.seaan-dealer-benefit {
    padding: 20px;
    border: 1px solid var(--seaan-gray-200);
    border-radius: 17px;
    background: #fff;
}
.seaan-dealer-benefit h3 { margin: 12px 0 5px; color: var(--seaan-navy); font-size: 15px; }
.seaan-dealer-benefit p { margin: 0; color: var(--seaan-gray-500); font-size: 12px; }

@media (max-width: 900px) {
    .seaan-archive-grid { grid-template-columns: repeat(2,1fr); }
    .seaan-business-layout { grid-template-columns: 1fr; }
    .seaan-brand-archive-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
    .seaan-archive-grid,
    .seaan-brand-archive-grid,
    .seaan-dealer-benefits { grid-template-columns: 1fr; }
    .seaan-form-grid { grid-template-columns: 1fr; }
    .seaan-form-field--full { grid-column: auto; }
    .seaan-business-panel,
    .seaan-business-form { padding: 24px; }
}

/* v0.6.0 Blog */
.seaan-blog-hero{padding:82px 0 58px;background:radial-gradient(circle at 88% 18%,rgba(0,192,207,.13),transparent 26%),linear-gradient(135deg,#f8fbff,#eef5ff)}
.seaan-blog-filter{display:flex;flex-wrap:wrap;gap:8px;margin-top:30px}.seaan-blog-filter a{display:inline-flex;align-items:center;min-height:38px;padding:0 15px;border:1px solid var(--seaan-gray-200);border-radius:999px;background:#fff;color:var(--seaan-navy);font-size:12px;font-weight:800}.seaan-blog-filter a:hover{background:var(--seaan-blue);color:#fff}
.seaan-blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;padding:64px 0 60px}
.seaan-blog-card{overflow:hidden;border:1px solid var(--seaan-gray-200);border-radius:20px;background:#fff;box-shadow:0 5px 20px rgba(0,20,64,.04);transition:transform var(--seaan-transition),box-shadow var(--seaan-transition)}.seaan-blog-card:hover{transform:translateY(-5px);box-shadow:var(--seaan-shadow-md)}
.seaan-blog-card__media{display:block;height:220px;overflow:hidden;background:linear-gradient(145deg,#f0f6fd,#e7f0fa)}.seaan-blog-card__media img{width:100%;height:100%;object-fit:cover}.seaan-blog-card__placeholder{display:flex;height:100%;align-items:center;justify-content:center;flex-direction:column;background:linear-gradient(145deg,#03184e,#0059f6);color:#fff}.seaan-blog-card__placeholder span{font:900 32px Manrope,sans-serif}.seaan-blog-card__placeholder small{color:#bdeff4;font-size:9px;font-weight:800;letter-spacing:.22em}
.seaan-blog-card__body{padding:22px}.seaan-blog-card__meta{display:flex;justify-content:space-between;gap:12px;margin-bottom:12px;color:var(--seaan-gray-500);font-size:10px;font-weight:800;text-transform:uppercase}.seaan-blog-card__body h2{margin:0 0 9px;color:var(--seaan-navy);font:700 19px/1.2 Manrope,sans-serif}.seaan-blog-card__body h2 a{color:inherit}.seaan-blog-card__body p{margin:0 0 16px;color:var(--seaan-gray-500);font-size:13px;line-height:1.65}.seaan-text-link{display:inline-flex;gap:7px;color:var(--seaan-blue);font-size:12px;font-weight:900}
.seaan-post-header{padding:76px 0 40px}.seaan-post-header h1{max-width:900px;margin:10px 0 18px;color:var(--seaan-navy);font:700 clamp(40px,5vw,64px)/1.02 Manrope,sans-serif;letter-spacing:-.045em}.seaan-post-meta{display:flex;flex-wrap:wrap;gap:12px 20px;color:var(--seaan-gray-500);font-size:12px;font-weight:700}.seaan-post-featured{margin-top:34px;overflow:hidden;border-radius:24px;background:#edf4fb}.seaan-post-featured img{display:block;width:100%;max-height:560px;object-fit:cover}
.seaan-post-layout{display:grid;grid-template-columns:minmax(0,1fr) 300px;gap:60px;padding:64px 0 96px}.seaan-post-content{color:#263241;font-size:16px;line-height:1.85}.seaan-post-content>*{max-width:760px}.seaan-post-content h2,.seaan-post-content h3{color:var(--seaan-navy);font-family:Manrope,sans-serif;line-height:1.15}.seaan-post-content h2{margin-top:42px;font-size:30px}.seaan-post-content h3{margin-top:34px;font-size:23px}.seaan-post-content img{max-width:100%;height:auto;border-radius:16px}.seaan-post-content blockquote{margin:30px 0;padding:20px 24px;border-left:3px solid var(--seaan-blue);background:#f5f9ff;color:var(--seaan-navy);font-weight:700}
.seaan-post-sidebar{position:sticky;top:100px;align-self:start}.seaan-sidebar-card{padding:22px;border:1px solid var(--seaan-gray-200);border-radius:18px;background:#fff}.seaan-sidebar-card+.seaan-sidebar-card{margin-top:14px}.seaan-sidebar-card h3{margin:0 0 13px;color:var(--seaan-navy);font-size:14px}.seaan-sidebar-card a{display:block;padding:7px 0;color:var(--seaan-gray-500);font-size:12px;font-weight:700}
.seaan-related{padding:70px 0 100px;background:var(--seaan-gray-50)}.seaan-related .seaan-blog-grid{padding-top:34px}
.seaan-pagination{display:flex;justify-content:center;gap:7px;padding:0 0 90px}.seaan-pagination .page-numbers{display:grid;min-width:40px;height:40px;place-items:center;border:1px solid var(--seaan-gray-200);border-radius:10px;background:#fff;color:var(--seaan-navy);font-size:12px;font-weight:800}
@media(max-width:900px){.seaan-blog-grid{grid-template-columns:repeat(2,1fr)}.seaan-post-layout{grid-template-columns:1fr;gap:34px}.seaan-post-sidebar{position:static}}
@media(max-width:600px){.seaan-blog-grid{grid-template-columns:1fr}.seaan-blog-card__media{height:210px}.seaan-post-header{padding-top:54px}.seaan-post-header h1{font-size:40px}.seaan-post-layout{padding-top:40px}}

/* v0.7.0 accessibility / production polish */
:focus-visible {
    outline: 3px solid rgba(37,99,235,.45);
    outline-offset: 3px;
}
button,
a,
input,
textarea,
select { -webkit-tap-highlight-color: transparent; }

.seaan-skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 99999;
    padding: 12px 16px;
    border-radius: 10px;
    background: #111827;
    color: #fff;
    transform: translateY(-150%);
    transition: transform .2s ease;
}
.seaan-skip-link:focus { transform: translateY(0); }

img { max-width: 100%; }
input,
textarea,
select,
button { font: inherit; }

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
}

/* =========================================================
   v0.8.0 — About / Contact / B2B conversion pages
   ========================================================= */

.seaan-page-hero {
    padding: 86px 0 66px;
    background:
        radial-gradient(circle at 88% 15%, rgba(0,192,207,.14), transparent 26%),
        linear-gradient(135deg, #f8fbff, #eef5ff);
}

.seaan-page-hero h1 {
    max-width: 940px;
    margin: 10px 0 18px;
    color: var(--seaan-navy);
    font-family: Manrope, sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1;
    letter-spacing: -.05em;
}

.seaan-page-hero p {
    max-width: 700px;
    margin: 0;
    color: var(--seaan-gray-500);
    font-size: 17px;
    line-height: 1.7;
}

.seaan-story {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
    padding: 100px 0;
}

.seaan-story__visual {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(circle at 72% 25%, rgba(0,192,207,.24), transparent 24%),
        linear-gradient(145deg, #03184e, #0059f6);
    box-shadow: var(--seaan-shadow-lg);
}

.seaan-story__visual::before,
.seaan-story__visual::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.16);
}
.seaan-story__visual::before {
    width: 330px;
    height: 330px;
    right: -80px;
    top: -90px;
}
.seaan-story__visual::after {
    width: 500px;
    height: 500px;
    left: -230px;
    bottom: -280px;
}

.seaan-story__brand {
    position: absolute;
    left: 38px;
    bottom: 36px;
    color: #fff;
    font-family: Manrope, sans-serif;
    font-size: clamp(42px, 6vw, 70px);
    font-weight: 900;
    letter-spacing: -.05em;
}
.seaan-story__brand small {
    display: block;
    margin-top: 5px;
    color: #9feaf0;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .22em;
}

.seaan-story__content h2 {
    margin: 0 0 18px;
    color: var(--seaan-navy);
    font-family: Manrope, sans-serif;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.04;
    letter-spacing: -.04em;
}
.seaan-story__content p {
    color: var(--seaan-gray-500);
    font-size: 15px;
    line-height: 1.8;
}

.seaan-value-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    padding: 0 0 100px;
}
.seaan-value-card {
    padding: 28px;
    border: 1px solid var(--seaan-gray-200);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--seaan-shadow-sm);
}
.seaan-value-card__number {
    display: block;
    margin-bottom: 22px;
    color: var(--seaan-blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
}
.seaan-value-card h3 {
    margin: 0 0 8px;
    color: var(--seaan-navy);
    font-family: Manrope, sans-serif;
    font-size: 18px;
}
.seaan-value-card p {
    margin: 0;
    color: var(--seaan-gray-500);
    font-size: 13px;
    line-height: 1.65;
}

.seaan-trust-band {
    padding: 90px 0;
    background: #f8fafc;
}
.seaan-trust-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
}
.seaan-trust-item {
    padding: 28px 20px;
    text-align: center;
}
.seaan-trust-item strong {
    display: block;
    color: var(--seaan-navy);
    font-family: Manrope, sans-serif;
    font-size: 34px;
    line-height: 1;
}
.seaan-trust-item span {
    display: block;
    margin-top: 8px;
    color: var(--seaan-gray-500);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.seaan-contact-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 30px;
    padding: 80px 0 100px;
}
.seaan-contact-info {
    padding: 34px;
    border-radius: 24px;
    background: linear-gradient(145deg, #03184e, #0642b9);
    color: #fff;
    box-shadow: var(--seaan-shadow-lg);
}
.seaan-contact-info h2 {
    margin: 0 0 14px;
    color: #fff;
    font-family: Manrope, sans-serif;
    font-size: 34px;
    line-height: 1.05;
}
.seaan-contact-info > p {
    color: rgba(255,255,255,.75);
    font-size: 13px;
    line-height: 1.7;
}
.seaan-contact-list {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}
.seaan-contact-list li {
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,.13);
}
.seaan-contact-list span {
    display: block;
    margin-bottom: 5px;
    color: #8fe9ef;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .14em;
}
.seaan-contact-list a,
.seaan-contact-list strong {
    color: #fff;
    font-size: 13px;
    line-height: 1.5;
}
.seaan-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 22px;
}
.seaan-contact-actions a {
    display: inline-flex;
    min-height: 43px;
    align-items: center;
    padding: 0 15px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 12px;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}
.seaan-contact-actions a:hover {
    background: rgba(255,255,255,.1);
}

.seaan-contact-form {
    padding: 34px;
    border: 1px solid var(--seaan-gray-200);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--seaan-shadow-sm);
}
.seaan-contact-form h2 {
    margin: 0 0 7px;
    color: var(--seaan-navy);
    font-family: Manrope, sans-serif;
    font-size: 28px;
}
.seaan-contact-form > p {
    margin: 0 0 24px;
    color: var(--seaan-gray-500);
    font-size: 13px;
}
.seaan-contact-form .seaan-form-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
}
.seaan-contact-form .seaan-form-field--full {
    grid-column: 1 / -1;
}
.seaan-contact-form input,
.seaan-contact-form textarea,
.seaan-contact-form select {
    width: 100%;
    min-height: 49px;
    padding: 12px 14px;
    border: 1px solid var(--seaan-gray-200);
    border-radius: 12px;
    background: #fff;
}
.seaan-contact-form textarea { min-height: 130px; resize: vertical; }
.seaan-contact-form label {
    display: block;
    margin-bottom: 6px;
    color: var(--seaan-navy);
    font-size: 11px;
    font-weight: 900;
}

.seaan-map-placeholder {
    min-height: 330px;
    display: grid;
    place-items: center;
    padding: 30px;
    border-radius: 24px;
    background:
        linear-gradient(rgba(3,24,78,.78),rgba(3,24,78,.78)),
        repeating-linear-gradient(45deg,#dcecff 0,#dcecff 12px,#c9ddf0 12px,#c9ddf0 24px);
    color: #fff;
    text-align: center;
}
.seaan-map-placeholder strong {
    display: block;
    margin-bottom: 7px;
    font-family: Manrope, sans-serif;
    font-size: 28px;
}
.seaan-map-placeholder span {
    color: rgba(255,255,255,.75);
    font-size: 12px;
}

.seaan-b2b-options {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
    padding: 70px 0 0;
}
.seaan-b2b-option {
    padding: 26px;
    border: 1px solid var(--seaan-gray-200);
    border-radius: 20px;
    background: #fff;
}
.seaan-b2b-option h3 {
    margin: 0 0 8px;
    color: var(--seaan-navy);
    font-family: Manrope, sans-serif;
    font-size: 18px;
}
.seaan-b2b-option p {
    margin: 0 0 16px;
    color: var(--seaan-gray-500);
    font-size: 13px;
    line-height: 1.65;
}

@media (max-width: 900px) {
    .seaan-story,
    .seaan-contact-layout { grid-template-columns: 1fr; }
    .seaan-value-grid,
    .seaan-b2b-options { grid-template-columns: repeat(2,1fr); }
    .seaan-trust-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
    .seaan-page-hero { padding: 58px 0 46px; }
    .seaan-page-hero h1 { font-size: 44px; }
    .seaan-story { padding: 65px 0; gap: 40px; }
    .seaan-story__visual { min-height: 330px; }
    .seaan-value-grid,
    .seaan-b2b-options,
    .seaan-trust-grid { grid-template-columns: 1fr; }
    .seaan-contact-layout { padding: 55px 0 70px; }
    .seaan-contact-info,
    .seaan-contact-form { padding: 24px; }
    .seaan-contact-form .seaan-form-grid { grid-template-columns: 1fr; }
    .seaan-contact-form .seaan-form-field--full { grid-column: auto; }
}

/* v0.9.0 lead states */
.seaan-form-success{margin:0 0 18px;padding:13px 15px;border:1px solid rgba(16,185,129,.22);border-radius:12px;background:#ecfdf5;color:#065f46;font-size:12px;font-weight:800;line-height:1.5}
.seaan-honeypot{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;overflow:hidden!important}
.seaan-contact-form .seaan-form-submit,.seaan-business-form .seaan-form-submit{cursor:pointer}

/* v1.0.0 — Final asset integration */
.seaan-logo{display:block;width:auto;max-width:150px;height:36px;object-fit:contain}
.seaan-logo--footer{max-width:165px;height:40px}
.seaan-logo-text{display:inline-flex;align-items:center;color:var(--seaan-navy);font:900 24px/1 Manrope,sans-serif;letter-spacing:-.05em}
.seaan-footer .seaan-logo-text,.seaan-dark .seaan-logo-text{color:#fff}
.seaan-asset-frame{position:relative;overflow:hidden;border-radius:24px;background:#f1f6fb}
.seaan-asset-frame img{display:block;width:100%;height:auto;object-fit:cover}
.seaan-asset-frame--product{aspect-ratio:4/3}.seaan-asset-frame--product img{height:100%}
.seaan-asset-frame--hero{min-height:440px}.seaan-asset-frame--hero img{width:100%;height:100%;object-fit:cover}
.seaan-asset-fallback{display:grid;min-height:220px;place-items:center;padding:30px;background:radial-gradient(circle at 76% 22%,rgba(0,192,207,.20),transparent 22%),linear-gradient(145deg,#03184e,#0059f6);color:#fff;text-align:center}
.seaan-asset-fallback strong{display:block;font:900 clamp(28px,4vw,46px)/1 Manrope,sans-serif;letter-spacing:-.05em}
.seaan-asset-fallback span{display:block;margin-top:6px;color:#bdeff4;font-size:9px;font-weight:800;letter-spacing:.18em;text-transform:uppercase}
.seaan-product-media img{transition:transform .45s cubic-bezier(.2,.8,.2,1)}.seaan-product-media:hover img{transform:scale(1.025)}
.seaan-hero-visual img{display:block;width:100%;height:auto;max-height:580px;object-fit:contain}
@media(max-width:600px){.seaan-logo{max-width:124px;height:30px}.seaan-asset-frame--hero{min-height:280px}}

/* v1.1.0 — Final QA / responsive / production polish */
html,body{max-width:100%;overflow-x:clip}
.seaan-container,.seaan-main,.seaan-section{max-width:100%}
.seaan-menu-fallback{display:flex;align-items:center;gap:24px;margin:0;padding:0;list-style:none}
.seaan-menu-fallback a{color:inherit;font-size:13px;font-weight:800}
.seaan-menu-fallback a:hover{color:var(--seaan-blue)}
@media(max-width:900px){
 .seaan-menu-fallback{gap:14px}
 .seaan-menu-fallback a{min-height:42px;display:inline-flex;align-items:center}
}
@media(max-width:600px){
 .seaan-container{width:min(100% - 32px,1180px)}
 .seaan-button{min-height:46px}
 .seaan-section-title{line-height:1.06}
 .seaan-contact-actions a{min-height:44px}
}
@media(hover:none),(prefers-reduced-motion:reduce){
 .seaan-blog-card:hover,.seaan-product-media:hover img,.seaan-blog-card:hover .seaan-blog-card__media img{transform:none}
}
@media print{
 .seaan-header,.seaan-footer,.seaan-mobile-menu,.seaan-contact-actions,.seaan-button{display:none!important}
 body{background:#fff!important;color:#111!important}
 a{color:inherit!important;text-decoration:none!important}
}

/* v1.1.1 — archive routing presentation */
.seaan-breadcrumb{margin-bottom:20px;color:var(--seaan-gray-500);font-size:11px;font-weight:700}
.seaan-breadcrumb a{color:inherit}
.seaan-breadcrumb a:hover{color:var(--seaan-blue)}
.seaan-pagination{margin-top:42px}
.seaan-pagination ul{display:flex;justify-content:center;gap:8px;margin:0;padding:0;list-style:none}
.seaan-pagination a,.seaan-pagination span{display:inline-flex;min-width:42px;min-height:42px;align-items:center;justify-content:center;padding:0 12px;border:1px solid var(--seaan-gray-200);border-radius:12px;color:var(--seaan-navy);font-size:12px;font-weight:800}
.seaan-pagination .current{background:var(--seaan-blue);border-color:var(--seaan-blue);color:#fff}
.seaan-empty-state{text-align:center;padding:70px 20px;border:1px solid var(--seaan-gray-200);border-radius:24px;background:#fff}
.seaan-empty-state h2{margin:0 0 10px;color:var(--seaan-navy);font-family:Manrope,sans-serif}
.seaan-empty-state p{margin:0 0 22px;color:var(--seaan-gray-500)}

/* v1.1.2 — product taxonomy route remains visually unchanged */

/* v1.1.3 — product single page */
.seaan-product-single__grid{display:grid;grid-template-columns:minmax(0,1.02fr) minmax(0,.98fr);gap:64px;align-items:start}
.seaan-product-single__media{overflow:hidden;border-radius:24px;background:#f4f7fb;min-height:420px}
.seaan-product-single__media>img{display:block;width:100%;height:auto;max-height:650px;object-fit:contain}
.seaan-product-single__placeholder{height:100%;min-height:420px}
.seaan-product-single__content{padding:12px 0}
.seaan-product-single__actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:30px}
.seaan-button--secondary{background:#fff!important;color:var(--seaan-navy)!important;border:1px solid var(--seaan-gray-200)}
@media(max-width:800px){
 .seaan-product-single__grid{grid-template-columns:1fr;gap:34px}
 .seaan-product-single__media{min-height:300px}
 .seaan-product-single__placeholder{min-height:300px}
 .seaan-product-single__actions{flex-direction:column}
 .seaan-product-single__actions .seaan-button{width:100%;justify-content:center}
}

/* v1.1.4 — product single resolver correction; presentation unchanged */

/* v1.2.0 — brand/product relationship */
.seaan-brand-single__intro{display:grid;grid-template-columns:minmax(180px,.3fr) minmax(0,.7fr);gap:45px;align-items:start}
.seaan-brand-single__logo{display:grid;place-items:center;min-height:170px;padding:25px;border:1px solid var(--seaan-gray-200);border-radius:20px;background:#fff}
.seaan-brand-single__logo img{display:block;max-width:100%;height:auto;max-height:150px;object-fit:contain}
@media(max-width:700px){.seaan-brand-single__intro{grid-template-columns:1fr;gap:25px}}

/* v1.2.1 — product brand identification/link */
.seaan-product-brand-link{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:6px;
    margin-top:12px;
    font-size:12px;
    line-height:1.5;
}
.seaan-product-brand-link > span{
    color:var(--seaan-gray-500);
    font-weight:700;
}
.seaan-product-brand-link a{
    color:var(--seaan-blue);
    font-weight:800;
    text-decoration:none;
    transition:color .2s ease,opacity .2s ease;
}
.seaan-product-brand-link a:hover{
    color:var(--seaan-navy);
    text-decoration:underline;
}


/* =========================================================
   v1.2.3 — Premium Footer Refinement
   Larger typography, spacing and stronger hierarchy.
   ========================================================= */

.seaan-site-footer{
    position:relative;
    background:#07142f;
    color:rgba(255,255,255,.78);
    padding:86px 0 0;
    overflow:hidden;
}
.seaan-site-footer::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
        radial-gradient(circle at 8% 0%,rgba(37,99,235,.17),transparent 30%),
        radial-gradient(circle at 92% 100%,rgba(0,192,207,.10),transparent 28%);
}
.seaan-site-footer .seaan-container{
    position:relative;
    z-index:1;
}
.seaan-footer-grid--premium{
    display:grid;
    grid-template-columns:1.45fr .82fr .92fr 1.08fr;
    gap:68px;
    padding-bottom:72px;
}
.seaan-footer-eyebrow{
    display:block;
    margin-bottom:16px;
    color:#69d8e2;
    font-size:10px;
    font-weight:900;
    letter-spacing:.18em;
}
.seaan-footer-brand-column{
    max-width:430px;
}
.seaan-footer-brand{
    color:#fff;
    font-family:Manrope,sans-serif;
    font-size:42px;
    font-weight:900;
    letter-spacing:-.055em;
    line-height:1;
}
.seaan-footer-description{
    max-width:410px;
    margin:23px 0 30px;
    color:rgba(255,255,255,.66);
    font-size:14px;
    line-height:1.82;
}
.seaan-footer-whatsapp{
    display:inline-flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    min-height:50px;
    padding:0 19px;
    border:1px solid rgba(255,255,255,.16);
    border-radius:13px;
    color:#fff;
    background:rgba(255,255,255,.055);
    font-size:12px;
    font-weight:850;
    text-decoration:none;
    transition:transform .25s ease,border-color .25s ease,background .25s ease;
}
.seaan-footer-whatsapp:hover{
    transform:translateY(-2px);
    border-color:rgba(0,192,207,.5);
    background:rgba(0,192,207,.10);
}
.seaan-site-footer h2{
    margin:2px 0 22px;
    color:#fff;
    font-size:14px;
    line-height:1.2;
    font-weight:850;
    letter-spacing:.01em;
}
.seaan-site-footer .seaan-footer-links{
    margin:0;
    padding:0;
    list-style:none;
}
.seaan-site-footer .seaan-footer-links li{
    margin:0;
    padding:0;
}
.seaan-site-footer .seaan-footer-links a{
    display:inline-flex;
    align-items:center;
    min-height:38px;
    color:rgba(255,255,255,.62);
    font-size:13px;
    font-weight:650;
    text-decoration:none;
    transition:color .2s ease,transform .2s ease;
}
.seaan-site-footer .seaan-footer-links a:hover{
    color:#fff;
    transform:translateX(3px);
}
.seaan-footer-links__all{
    margin-top:10px!important;
}
.seaan-footer-links__all a{
    color:#69d8e2!important;
    font-weight:850!important;
}
.seaan-footer-contact-label{
    display:block;
    margin-bottom:10px;
    color:rgba(255,255,255,.42);
    font-size:9px;
    font-weight:900;
    letter-spacing:.17em;
}
.seaan-footer-contact address{
    max-width:275px;
    margin:0;
    color:rgba(255,255,255,.66);
    font-size:13px;
    font-style:normal;
    line-height:1.78;
}
.seaan-footer-direction{
    display:inline-flex;
    align-items:center;
    gap:9px;
    margin-top:14px;
    color:#69d8e2;
    font-size:12px;
    font-weight:850;
    text-decoration:none;
}
.seaan-footer-direction:hover{
    color:#fff;
}
.seaan-footer-contact-details{
    display:flex;
    flex-direction:column;
    gap:8px;
    margin-top:26px;
}
.seaan-footer-contact-details a{
    color:rgba(255,255,255,.82);
    font-size:13px;
    font-weight:650;
    text-decoration:none;
}
.seaan-footer-contact-details a:hover{
    color:#fff;
}
.seaan-footer-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
    min-height:78px;
    border-top:1px solid rgba(255,255,255,.10);
    color:rgba(255,255,255,.40);
    font-size:11px;
    line-height:1.5;
}
.seaan-footer-legal a{
    color:#69d8e2;
    font-weight:750;
    text-decoration:none;
    transition:color .2s ease;
}
.seaan-footer-legal a:hover{
    color:#fff;
}
@media(max-width:1100px){
    .seaan-footer-grid--premium{
        grid-template-columns:1.35fr 1fr 1fr;
        gap:48px;
    }
    .seaan-footer-contact{
        grid-column:2 / -1;
    }
}
@media(max-width:700px){
    .seaan-site-footer{
        padding-top:64px;
    }
    .seaan-footer-grid--premium{
        grid-template-columns:1fr 1fr;
        gap:42px 30px;
        padding-bottom:52px;
    }
    .seaan-footer-brand-column{
        grid-column:1 / -1;
        max-width:560px;
    }
    .seaan-footer-contact{
        grid-column:auto;
    }
    .seaan-footer-brand{
        font-size:38px;
    }
    .seaan-footer-description{
        font-size:13px;
    }
    .seaan-footer-bottom{
        align-items:flex-start;
        flex-direction:column;
        justify-content:center;
        min-height:108px;
        padding:20px 0;
    }
}
@media(max-width:460px){
    .seaan-footer-grid--premium{
        grid-template-columns:1fr;
        gap:34px;
    }
    .seaan-footer-brand-column,
    .seaan-footer-contact{
        grid-column:auto;
    }
}

/* =========================================================
   v1.2.4 — Blog Archive
   ========================================================= */

.seaan-blog-archive__content{
    padding-top:64px;
    padding-bottom:100px;
}
.seaan-blog-filters{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:42px;
}
.seaan-blog-filters a{
    display:inline-flex;
    align-items:center;
    min-height:40px;
    padding:0 15px;
    border:1px solid var(--seaan-gray-200);
    border-radius:999px;
    background:#fff;
    color:var(--seaan-gray-600);
    font-size:11px;
    font-weight:800;
    text-decoration:none;
    transition:all .2s ease;
}
.seaan-blog-filters a:hover,
.seaan-blog-filters a.is-active{
    border-color:var(--seaan-blue);
    background:var(--seaan-blue);
    color:#fff;
}
.seaan-blog-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:28px;
}
.seaan-blog-pagination{
    margin-top:55px;
}
.seaan-blog-pagination ul{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:8px;
    margin:0;
    padding:0;
    list-style:none;
}
.seaan-blog-pagination a,
.seaan-blog-pagination span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:42px;
    min-width:42px;
    padding:0 13px;
    border:1px solid var(--seaan-gray-200);
    border-radius:12px;
    background:#fff;
    color:var(--seaan-navy);
    font-size:11px;
    font-weight:800;
    text-decoration:none;
}
.seaan-blog-pagination .current{
    border-color:var(--seaan-blue);
    background:var(--seaan-blue);
    color:#fff;
}
.seaan-blog-empty{
    text-align:center;
    padding:90px 24px;
}
@media(max-width:900px){
    .seaan-blog-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}
@media(max-width:600px){
    .seaan-blog-archive__content{
        padding-top:45px;
        padding-bottom:70px;
    }
    .seaan-blog-grid{
        grid-template-columns:1fr;
        gap:20px;
    }
    .seaan-blog-filters{
        margin-bottom:30px;
    }
}


.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 11px 18px;
    border-radius: 8px;

    background: #25D366;
    color: #fff;

    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;

    border: 1px solid #25D366;

    box-shadow: 0 2px 6px rgba(37, 211, 102, 0.20);

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

/* Nav Bar CTA - whatsapp contact button */
/* Desktop */

.whatsapp-button__icon {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    fill: currentColor;
}

.whatsapp-button:hover {
    background: #20BD5A;
    border-color: #20BD5A;
    color: #fff;
    text-decoration: none;

    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.30);
    transform: translateY(-1px);
}

.whatsapp-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(37, 211, 102, 0.20);
}

.whatsapp-button:focus-visible {
    outline: 3px solid rgba(37, 211, 102, 0.35);
    outline-offset: 3px;
}

/* Mobile */

.whatsapp-button--mobile {
    width: 100%;
    box-sizing: border-box;

    margin-top: 20px;
    padding: 14px 20px;

    border-radius: 10px;

    font-size: 15px;
    font-weight: 600;

    justify-content: center;
}

.whatsapp-button--mobile .whatsapp-button__icon {
    width: 20px;
    height: 20px;
    margin-bottom: -4.5px;
    flex-basis: 20px;
}



.seaan-quick-action__icon--svg,
.seaan-quick-action__icon--whatsapp {
    display: block;
    border-radius: 2px;
}

.seaan-quick-action__icon--whatsapp {
    fill: #25D366;
}


/* seaan-trust-stat__icon - colour */

.seaan-icon--partners i {
    color: #2563eb;
}

.seaan-icon--products i {
    color: #f59e0b;
}

.seaan-icon--genuine i {
    color: #16a34a;
}

.seaan-icon--rating i {
    color: #fbbf24;
}

.seaan-icon--dealer i {
    color: #7C3AED;
}

.seaan-icon--bulk i {
    color: #F59E0B;
}

.seaan-icon--corporate i {
    color: #059669;
}


/* =========================================================
   v1.3.0 — Homepage Energy Upgrade
   Existing SEAAN design retained; visual communication enhanced.
   ========================================================= */

.seaan-section--compact{padding:28px 0 34px}
.seaan-quick-actions{background:#fff}
.seaan-quick-action-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
.seaan-quick-action{display:flex;align-items:center;gap:13px;min-height:76px;padding:13px 15px;border:1px solid #e5e7eb;border-radius:16px;background:#fff;color:#111827;text-decoration:none;box-shadow:0 7px 22px rgba(15,23,42,.045);transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease}
.seaan-quick-action:hover{transform:translateY(-3px);border-color:#cbd5e1;box-shadow:0 14px 30px rgba(15,23,42,.09)}
.seaan-quick-action__icon{display:grid;place-items:center;width:30px;height:30px;flex:0 0 40px;border-radius:12px;background:#eff6ff;color:#2563eb;font-size:18px;font-weight:800}
.seaan-quick-action__icon--whatsapp{background:#ecfdf5;color:#10b981}
.seaan-quick-action strong,.seaan-quick-action small{display:block}
.seaan-quick-action strong{font-size:12px;font-weight:850}
.seaan-quick-action small{margin-top:4px;color:#6b7280;font-size:10px;line-height:1.35}
.seaan-quick-action__arrow{margin-left:auto;color:#9ca3af;font-size:16px;transition:transform .2s ease,color .2s ease}
.seaan-quick-action:hover .seaan-quick-action__arrow{transform:translateX(3px);color:#2563eb}
.seaan-quick-action--primary{border-color:#dbeafe;background:linear-gradient(135deg,#eff6ff,#fff)}
.seaan-quick-action--primary .seaan-quick-action__icon{background:#2563eb;color:#fff}

.seaan-trust-strip--enhanced{padding:62px 0;background:#07142f;color:#fff}
.seaan-trust-heading{text-align:center;max-width:620px;margin:0 auto 35px}
.seaan-trust-heading h2{margin:8px 0 0;color:#fff;font-size:clamp(22px,3vw,30px);line-height:1.2;letter-spacing:-.03em}
.seaan-trust-strip--enhanced .seaan-eyebrow{color:#69d8e2}
.seaan-trust-grid--enhanced{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.09);border-radius:20px;overflow:hidden}
.seaan-trust-stat{display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:165px;padding:22px;text-align:center;background:rgba(255,255,255,.035)}
.seaan-trust-stat__icon{display:grid;place-items:center;width:42px;height:42px;margin-bottom:12px;border-radius:13px;background:rgba(105,216,226,.10);color:#69d8e2;font-size:17px;font-weight:850}
.seaan-trust-stat strong{font-size:31px;line-height:1;font-weight:900;letter-spacing:-.04em;color:#fff}
.seaan-trust-stat>span:last-child{margin-top:8px;color:rgba(255,255,255,.56);font-size:11px;font-weight:650}

.seaan-solutions-section{position:relative}
.seaan-section-heading{max-width:650px;margin-bottom:36px}
.seaan-solutions-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.seaan-solution-card{position:relative;display:flex;min-height:4px;flex-direction:column;padding:24px;border:1px solid #e5e7eb;border-radius:18px;background:#fff;color:#111827;text-decoration:none;box-shadow:0 8px 25px rgba(15,23,42,.04);transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease}
.seaan-solution-card:hover{transform:translateY(-5px);border-color:#bfdbfe;box-shadow:0 18px 38px rgba(15,23,42,.10)}
.seaan-solution-icon{display:grid;place-items:center;width:46px;height:46px;margin-bottom:27px;border-radius:14px;background:#eff6ff;color:#2563eb;font-size:20px;font-weight:850}
.seaan-solution-card:nth-child(2) .seaan-solution-icon{background:#ecfdf5;color:#10b981}
.seaan-solution-card:nth-child(3) .seaan-solution-icon{background:#fff7ed;color:#f97316}
.seaan-solution-card:nth-child(4) .seaan-solution-icon{background:#f5f3ff;color:#7c3aed}
.seaan-solution-card h3{margin:0 0 9px;font-size:16px;font-weight:850;letter-spacing:-.02em}
.seaan-solution-card p{margin:0;color:#6b7280;font-size:15px;line-height:1.7}
.seaan-solution-link{display:inline-flex;align-items:center;gap:8px;margin-top:auto;padding-top:20px;color:#2563eb;font-weight:850}
.seaan-solution-link span{transition:transform .2s ease}
.seaan-solution-card:hover .seaan-solution-link span{transform:translateX(3px)}

.seaan-process-section{background:#f8fafc}
.seaan-process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0;border-top:1px solid #e5e7eb;border-bottom:1px solid #e5e7eb}
.seaan-process-step{position:relative;display:flex;gap:17px;min-height:60px;padding:28px 22px;border-right:1px solid #e5e7eb;background:#f8fafc}
.seaan-process-step:last-child{border-right:0}
.seaan-process-step>span{color:#2563eb;font-size:11px;font-weight:900;letter-spacing:.08em}
.seaan-process-step h3{margin:0 0 8px;font-size:14px;font-weight:850}
.seaan-process-step p{margin:0;color:#6b7280;font-size:11px;line-height:1.65}
@media(max-width:1000px){
    .seaan-quick-action-grid,.seaan-solutions-grid{grid-template-columns:repeat(2,1fr)}
    .seaan-trust-grid--enhanced,.seaan-process-grid{grid-template-columns:repeat(2,1fr)}
    .seaan-process-step:nth-child(2){border-right:0}
    .seaan-process-step:nth-child(-n+2){border-bottom:1px solid #e5e7eb}
}
@media(max-width:600px){
    .seaan-section--compact{padding:20px 0 25px}
    .seaan-quick-action-grid,.seaan-solutions-grid,.seaan-trust-grid--enhanced,.seaan-process-grid{grid-template-columns:1fr}
    .seaan-trust-grid--enhanced{gap:1px}
    .seaan-trust-stat{min-height:135px}
    .seaan-process-step{border-right:0!important;border-bottom:1px solid #e5e7eb}
    .seaan-process-step:last-child{border-bottom:0}
    .seaan-solution-card{min-height:120px}
}
