/* ================================================================
   Power Site Builder — Compiled Theme CSS
   Generated from preset: corp\2D navy
   ================================================================ */

:root {
    --primary: \23 1a365d;
    --secondary: \23 2b6cb0;
    --accent: \23 ed8936;
    --bg: \23 ffffff;
    --surface: \23 f7fafc;
    --text: \23 1a202c;
    --muted: \23 718096;
    --heading-font: 'Plus\20 Jakarta\20 Sans', sans-serif;
    --body-font: 'Inter', sans-serif;
    --radius: 8px;
    --shadow: 0\20 1px\20 3px\20 rgba\28 0\2C 0\2C 0\2C \2E 1\29 ;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--body-font);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ===== SHARED COMPONENTS ===== */
.s-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 600;
    margin-bottom: 12px;
}
.s-h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.1;
    margin-bottom: 16px;
}
.s-text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 32px;
}
.s-text--center {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.s-section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 7%;
}

/* Buttons */
.btn-p {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    border: 0;
    font-family: inherit;
    color: #fff;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden;
}
.btn-p::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .3s;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.25), transparent 70%);
}
.btn-p:hover::after { opacity: 1; }
.btn-p:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.btn-p:active { transform: translateY(0) scale(.97); }
.btn-p--sm { padding: 8px 18px; font-size: 12px; }
.btn-p--lg { font-size: 16px; padding: 16px 36px; }

.btn-g {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid;
    font-family: inherit;
    transition: all .3s;
}
.btn-g:hover { filter: brightness(1.2); }

/* Cover images */
.s-img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* ===== 1. NAV ===== */
.s-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 7%;
    transition: box-shadow .3s;
}
.s-nav--scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.15) !important; }
.s-nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.s-nav__logo {
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -.02em;
}
.s-nav__links {
    display: flex;
    gap: 24px;
}
.s-nav__links a {
    font-size: 13px;
    text-decoration: none;
    transition: opacity .3s;
}
.s-nav__links a:hover { opacity: 1; }
.s-nav--minimal {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 24px 7%;
}
.s-nav--minimal .s-nav__logo { font-size: 24px; }

/* Mobile nav toggle */
.s-nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.s-nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: transform .3s, opacity .3s;
}
.s-nav__toggle--open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.s-nav__toggle--open span:nth-child(2) { opacity: 0; }
.s-nav__toggle--open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== 2. HERO ===== */
.s-hero {
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 7% 80px;
}
.s-hero__glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    transition: transform .1s linear;
}
.s-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
}
.s-hero__badge {
    display: inline-flex;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.s-hero__title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.03em;
    margin-bottom: 16px;
}
.s-hero__title--xl { font-size: clamp(3rem, 7vw, 6rem); }
.s-hero__title--mega {
    font-size: clamp(3.5rem, 10vw, 8rem);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px;
}
.s-hero__sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.6;
}
.s-hero__sub--wide { max-width: 700px; }
.s-hero__cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.s-hero__typo-bar {
    width: 80px;
    height: 4px;
    margin: 16px auto 24px;
}

/* Hero: Split */
.s-hero--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: left;
    padding: 120px 7% 80px;
}
.s-hero--split .s-hero__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.s-hero--split .s-hero__title { font-size: clamp(2rem, 4.5vw, 4rem); }
.s-hero--split .s-hero__sub { margin: 0 0 32px; }
.s-hero--split .s-hero__cta { justify-content: flex-start; }
.s-hero__right {
    display: flex;
    align-items: center;
    justify-content: center;
}
.s-hero__visual {
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.s-hero__shape {
    font-size: 64px;
    opacity: .5;
    position: absolute;
    inset: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed;
}

/* Hero: Fullscreen */
.s-hero--fullscreen { min-height: 100vh; }
.s-hero__bg-gradient {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.s-hero__inner--full { max-width: 900px; }

/* Hero: Typographic */
.s-hero--typo { min-height: 85vh; }

/* ===== 3. ABOUT ===== */
.s-about { padding: 100px 7%; }
.s-about--split .s-about__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.s-about__content .s-text { margin-bottom: 32px; }
.s-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.s-stat {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.s-stat__n {
    font-size: 28px;
    font-weight: 800;
    background-size: 200% auto;
}
.s-stat__l { font-size: 12px; }
.s-about__visual {
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.s-about__deco {
    position: absolute;
    inset: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    border: 2px dashed;
}

/* About: Centered */
.s-about--centered { text-align: center; }
.s-about--centered .s-about__center {
    max-width: 800px;
    margin: 0 auto;
}
.s-stats--row {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.s-stat--inline {
    padding: 20px 32px;
    text-align: center;
}
.s-stat--inline:last-child { border-right: none !important; }

/* About: Timeline */
.s-about--timeline { text-align: center; }
.s-about__tl-header { margin-bottom: 40px; }
.s-about__tl-line {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
    position: relative;
    border-radius: 100px;
}
.s-tl-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1;
}
.s-tl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}
.s-tl-card {
    padding: 16px 20px;
    text-align: center;
}

/* ===== 4. SERVICES ===== */
.s-services { padding: 100px 7%; }
.s-services__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.s-svc-card {
    padding: 32px;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1), box-shadow .4s;
}
.s-svc-card:hover {
    transform: translateY(-6px) rotateX(2deg) rotateY(-1deg) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
}
.s-svc-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}
.s-svc-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}
.s-svc-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* Services: Zigzag */
.s-services--zigzag { padding: 100px 7%; }
.s-zigzag-row {
    max-width: 1100px;
    margin: 0 auto 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.s-zigzag-row--reverse { direction: rtl; }
.s-zigzag-row--reverse > * { direction: ltr; }
.s-zigzag-content { padding: 20px 0; }
.s-zigzag-num {
    font-size: 48px;
    font-weight: 900;
    opacity: .3;
    display: block;
    margin-bottom: 8px;
}
.s-zigzag-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}
.s-zigzag-content p {
    font-size: 15px;
    line-height: 1.7;
}
.s-zigzag-visual {
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Services: Bento */
.s-bento-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 16px;
}
.s-bento-card {
    padding: 32px;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1), box-shadow .4s;
}
.s-bento-card:hover {
    transform: translateY(-6px) rotateX(2deg) rotateY(-1deg) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
}
.s-bento-card--lg {
    grid-column: span 2;
    grid-row: span 2;
}
.s-bento-card--md {
    grid-column: span 1;
    grid-row: span 2;
}

/* Services: Icon Row */
.s-iconrow-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    text-align: center;
}
.s-iconrow-item { padding: 24px; }
.s-iconrow-circle {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.s-iconrow-item h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}
.s-iconrow-item p {
    font-size: 14px;
    line-height: 1.6;
}

/* ===== 5. TESTIMONIALS ===== */
.s-testi { padding: 100px 7%; }
.s-testi__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.s-testi-card {
    padding: 32px;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1), box-shadow .4s;
}
.s-testi-card:hover {
    transform: translateY(-4px) scale(1.01) !important;
}
.s-testi-quote {
    font-size: 36px;
    opacity: .4;
    line-height: 1;
    margin-bottom: 12px;
    font-family: serif;
}
.s-testi-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}
.s-testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.s-testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}
.s-testi-name {
    font-size: 14px;
    font-weight: 600;
}
.s-testi-role { font-size: 12px; }

/* Testimonials: Featured */
.s-testi--featured { text-align: center; }
.s-testi__featured-inner {
    max-width: 700px;
    margin: 0 auto;
}
.s-testi-quote--big {
    font-size: 80px;
    font-family: serif;
    opacity: .3;
    line-height: .8;
    margin-bottom: 12px;
}
.s-testi-text--big {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 24px;
}
.s-testi-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 24px;
}
.s-testi-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transition: .3s;
}

/* Testimonials: Marquee */
.s-testi--marquee { overflow: hidden; }
.s-marquee-track {
    overflow: hidden;
    margin-top: 40px;
    padding: 20px 0;
}
.s-marquee-inner {
    display: flex;
    gap: 20px;
    animation: marquee 30s linear infinite;
    width: max-content;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.s-marquee-card {
    padding: 24px;
    min-width: 320px;
    flex-shrink: 0;
}
.s-marquee-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* ===== 6. CTA ===== */
.s-cta {
    padding: 100px 7%;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.s-cta__glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.s-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}
.s-cta h2 {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: 12px;
}
.s-cta p {
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* CTA: Split */
.s-cta--split .s-cta__split-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 0 7%;
}
.s-cta--split { text-align: left; }
.s-cta__left { flex: 1; }
.s-cta__left h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }

/* CTA: Card */
.s-cta--card { text-align: center; }
.s-cta__card {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 48px;
    text-align: center;
}
.s-cta__card h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: 12px;
}
.s-cta__card p {
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* ===== 7. GALLERY ===== */
.s-gallery { padding: 100px 7%; }
.s-masonry {
    max-width: 1200px;
    margin: 0 auto;
    columns: 3;
    gap: 16px;
}
.s-masonry-item {
    break-inside: avoid;
    margin-bottom: 16px;
    overflow: hidden;
    position: relative;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}
.s-masonry-item:hover { transform: scale(1.03) !important; }
.s-masonry-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: .3s;
}
.s-masonry-item:hover .s-masonry-overlay { opacity: 1; }

.s-uniform-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.s-uniform-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}
.s-uniform-item:hover { transform: scale(1.04) !important; }
.s-uniform-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.3);
    opacity: 0;
    transition: .3s;
}
.s-uniform-item:hover .s-uniform-overlay { opacity: 1; }

/* ===== 8. PRICING ===== */
.s-pricing { padding: 100px 7%; }
.s-pricing__grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}
.s-pricing-card {
    padding: 32px;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1), box-shadow .4s;
}
.s-pricing-card:hover { box-shadow: 0 16px 32px rgba(0,0,0,.1); }
.s-pricing-card--pop { transform: scale(1.05); }
.s-pricing-card--pop:hover { transform: scale(1.05) translateY(-4px); }
.s-pricing-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.s-pricing-price {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 24px;
}
.s-pricing-price small {
    font-size: 14px;
    font-weight: 400;
    margin-left: 4px;
}
.s-pricing-features {
    list-style: none;
    margin-bottom: 24px;
}
.s-pricing-features li {
    font-size: 14px;
    padding: 6px 0;
    line-height: 1.5;
}
.s-pricing__simple-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: start;
}
.s-pricing-simple-card {
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1), box-shadow .4s;
}
.s-pricing-simple-card:hover { box-shadow: 0 16px 32px rgba(0,0,0,.1); }
.s-pricing-badge {
    position: absolute;
    top: 16px;
    right: -30px;
    transform: rotate(45deg);
    padding: 4px 40px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
}

/* ===== 9. TEAM ===== */
.s-team { padding: 100px 7%; }
.s-team__grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.s-team-avatar {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 16px;
    transition: transform .3s, box-shadow .3s;
}
.s-team-card:hover .s-team-avatar {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}
.s-team-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}
.s-team-card p { font-size: 13px; }

.s-team--compact { padding: 60px 7%; }
.s-team__compact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.s-team__compact-row {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.s-team-avatar--sm {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ===== 10. FAQ ===== */
.s-faq { padding: 100px 7%; }
.s-faq__list {
    max-width: 700px;
    margin: 0 auto;
}
.s-faq-item {
    padding: 20px 0;
    cursor: pointer;
    transition: background .3s;
}
.s-faq-item:hover { background: rgba(128,128,128,.04); }
.s-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    gap: 12px;
}
.s-faq-toggle {
    font-size: 20px;
    transition: transform .3s;
}
.s-faq-a {
    max-height: 0;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.7;
    transition: max-height .4s ease, padding .3s;
    padding: 0;
}
.s-faq-item.open .s-faq-a {
    max-height: 200px;
    padding-top: 12px;
}
.s-faq-item.open .s-faq-toggle { transform: rotate(45deg); }

/* FAQ: Two Col */
.s-faq--twocol { padding: 100px 7%; }
.s-faq__twocol-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}
.s-faq__left p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.7;
}

/* ===== 11. PROCESS ===== */
.s-process { padding: 100px 7%; }
.s-process__steps {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.s-step {
    position: relative;
    padding: 0 12px;
}
.s-step-num {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    margin: 0 auto 16px;
}
.s-step-line {
    position: absolute;
    top: 24px;
    left: calc(50% + 30px);
    right: calc(-50% + 30px);
    height: 2px;
}
.s-step:last-child .s-step-line { display: none; }
.s-step h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}
.s-step p {
    font-size: 13px;
    line-height: 1.6;
}

/* Process: Vertical */
.s-process--vertical { padding: 100px 7%; }
.s-process__vertical {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}
.s-process__vertical::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: currentColor;
    opacity: .1;
}
.s-vstep {
    position: relative;
    margin-bottom: 24px;
}
.s-vstep-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: absolute;
    left: -40px;
    top: 24px;
    z-index: 1;
}

/* ===== 12. CONTACT ===== */
.s-contact { padding: 100px 7%; }
.s-contact__grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}
.s-contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.s-contact-form input,
.s-contact-form textarea {
    padding: 14px 16px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color .3s;
}
.s-contact-form input:focus,
.s-contact-form textarea:focus {
    border-color: currentColor !important;
}
.s-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 8px;
}
.s-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}
.s-contact--minimal {
    padding: 60px 7%;
    text-align: center;
}
.s-contact__minimal-inner {
    max-width: 500px;
    margin: 0 auto;
}
.s-contact-form--inline {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}
.s-contact-form--inline input {
    padding: 14px 16px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    flex: 1;
    min-width: 0;
}

/* ===== 13. LOGO STRIP ===== */
.s-logos__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.s-logo-item {
    opacity: .5;
    transition: opacity .3s;
}
.s-logo-item:hover { opacity: .8; }

/* ===== 14. FEATURES ===== */
.s-features { padding: 80px 7%; }
.s-features__grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.s-features--horiz { padding: 40px 7%; }
.s-features__horiz-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
}

/* ===== 15. MAP ===== */
.s-map { padding: 100px 7%; }
.s-map__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
    align-items: start;
}

/* ===== 16. NEWSLETTER ===== */
.s-newsletter__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.s-newsletter-form {
    display: flex;
    gap: 8px;
}

/* ===== 17. STATS BANNER ===== */
.s-stats-banner { overflow: hidden; }
.s-stats__row {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
}

/* ===== 18. FOOTER ===== */
.s-footer { padding: 48px 7% 32px; }
.s-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.s-footer__links {
    display: flex;
    gap: 48px;
    justify-content: flex-end;
}
.s-footer__col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.s-footer__col a {
    font-size: 13px;
    text-decoration: none;
    transition: opacity .3s;
    cursor: pointer;
}
.s-footer__col a:hover { opacity: .8; }
.s-footer__bottom {
    max-width: 1200px;
    margin: 24px auto 0;
    padding-top: 24px;
    text-align: center;
}
.s-footer--minimal { padding: 24px 7%; }
.s-footer__minimal-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.s-footer__mini-links {
    display: flex;
    gap: 16px;
}
.s-footer__mini-links a {
    font-size: 13px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity .3s;
}
.s-footer__mini-links a:hover { opacity: .8; }

/* ================================================================
   VISUAL IDENTITY THEMES
   ================================================================ */

/* --- LUXURY --- */
.theme-luxury .s-hero__title { font-weight: 300; letter-spacing: .03em; }
.theme-luxury .s-hero__badge { text-transform: uppercase; letter-spacing: .15em; font-size: 11px; border-radius: 0 !important; background: transparent !important; border-top: 1px solid currentColor !important; border-bottom: 1px solid currentColor !important; border-left: none !important; border-right: none !important; padding: 8px 20px !important; }
.theme-luxury .s-h2 { font-weight: 300; letter-spacing: .02em; }
.theme-luxury .s-label { letter-spacing: .2em; font-weight: 400; font-size: 11px; }
.theme-luxury .btn-p { letter-spacing: .1em; text-transform: uppercase; font-size: 12px; font-weight: 400; border-radius: 0 !important; }
.theme-luxury .btn-g { letter-spacing: .1em; text-transform: uppercase; font-size: 12px; border-radius: 0 !important; }
.theme-luxury .s-svc-card, .theme-luxury .s-testi-card, .theme-luxury .s-pricing-card, .theme-luxury .s-pricing-simple-card, .theme-luxury .s-bento-card { border-radius: 0 !important; }
.theme-luxury .s-svc-icon { border-radius: 0 !important; }
.theme-luxury .s-nav__logo { font-weight: 300; letter-spacing: .08em; text-transform: uppercase; }
.theme-luxury .s-hero__title--mega { font-weight: 200; }
.theme-luxury .s-stat__n { font-weight: 300; }
.theme-luxury .s-stat { border-radius: 0 !important; }
.theme-luxury .s-footer__brand div:first-child { font-weight: 300; letter-spacing: .08em; text-transform: uppercase; }
.theme-luxury .s-hero__visual, .theme-luxury .s-about__visual, .theme-luxury .s-cta__card { border-radius: 0 !important; }
.theme-luxury .s-masonry-item, .theme-luxury .s-uniform-item { border-radius: 0 !important; }
.theme-luxury .s-tl-card, .theme-luxury .s-faq-item-compact { border-radius: 0 !important; }
.theme-luxury .s-team-avatar { border-radius: 50% !important; }
.theme-luxury .s-testi-quote { font-size: 48px; font-style: italic; }
.theme-luxury .s-contact-form input, .theme-luxury .s-contact-form textarea { border-radius: 0 !important; }

/* --- BRUTALIST --- */
.theme-brutalist .s-hero__title { font-weight: 900; text-transform: uppercase; letter-spacing: -.02em; }
.theme-brutalist .s-hero__badge { border-radius: 0 !important; border: 3px solid !important; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.theme-brutalist .s-h2 { font-weight: 900; text-transform: uppercase; }
.theme-brutalist .s-label { text-transform: uppercase; letter-spacing: .15em; font-weight: 900; border-bottom: 3px solid currentColor; display: inline-block; padding-bottom: 4px; }
.theme-brutalist .btn-p { border-radius: 0 !important; text-transform: uppercase; font-weight: 900; letter-spacing: .05em; border: 3px solid transparent; }
.theme-brutalist .btn-g { border-radius: 0 !important; border-width: 3px !important; text-transform: uppercase; font-weight: 900; }
.theme-brutalist .s-svc-card, .theme-brutalist .s-testi-card, .theme-brutalist .s-pricing-card, .theme-brutalist .s-bento-card, .theme-brutalist .s-pricing-simple-card { border-radius: 0 !important; border-width: 3px !important; }
.theme-brutalist .s-svc-icon { border-radius: 0 !important; }
.theme-brutalist .s-nav__logo { font-weight: 900; text-transform: uppercase; letter-spacing: -.02em; }
.theme-brutalist .s-team-avatar, .theme-brutalist .s-testi-avatar { border-radius: 0 !important; }
.theme-brutalist .s-step-num { border-radius: 0 !important; }
.theme-brutalist .s-faq-item-compact { border-radius: 0 !important; border-width: 3px !important; }
.theme-brutalist .s-hero__visual, .theme-brutalist .s-about__visual, .theme-brutalist .s-cta__card { border-radius: 0 !important; }
.theme-brutalist .s-masonry-item, .theme-brutalist .s-uniform-item { border-radius: 0 !important; }
.theme-brutalist .s-iconrow-circle { border-radius: 0 !important; }
.theme-brutalist .s-stat { border-radius: 0 !important; border-width: 3px !important; }
.theme-brutalist .s-contact-form input, .theme-brutalist .s-contact-form textarea { border-radius: 0 !important; border-width: 3px !important; }
.theme-brutalist .s-tl-card, .theme-brutalist .s-vstep-card { border-radius: 0 !important; border-width: 3px !important; }
.theme-brutalist .s-testi-quote { font-size: 64px; }

/* --- KAWAII --- */
.theme-kawaii .s-hero__title { font-weight: 700; }
.theme-kawaii .s-hero__badge { border-radius: 999px !important; }
.theme-kawaii .s-h2 { font-weight: 700; }
.theme-kawaii .btn-p { border-radius: 999px !important; font-weight: 700; padding: 14px 32px; }
.theme-kawaii .btn-g { border-radius: 999px !important; }
.theme-kawaii .s-svc-card, .theme-kawaii .s-testi-card, .theme-kawaii .s-pricing-card, .theme-kawaii .s-bento-card, .theme-kawaii .s-pricing-simple-card { border-radius: 24px !important; box-shadow: 0 6px 20px rgba(0,0,0,.06); border: none !important; }
.theme-kawaii .s-svc-icon { border-radius: 50% !important; }
.theme-kawaii .s-stat { border-radius: 20px !important; border: none !important; }
.theme-kawaii .s-nav__logo { font-weight: 700; }
.theme-kawaii .s-team-avatar { border-radius: 50% !important; }
.theme-kawaii .s-faq-item-compact { border-radius: 20px !important; border: none !important; }
.theme-kawaii .s-hero__visual, .theme-kawaii .s-about__visual { border-radius: 32px !important; }
.theme-kawaii .s-cta__card { border-radius: 32px !important; }
.theme-kawaii .s-masonry-item, .theme-kawaii .s-uniform-item { border-radius: 20px !important; }
.theme-kawaii .s-contact-form input, .theme-kawaii .s-contact-form textarea { border-radius: 16px !important; border: none !important; }
.theme-kawaii .s-step-num { border-radius: 50% !important; }
.theme-kawaii .s-tl-card, .theme-kawaii .s-vstep-card { border-radius: 20px !important; border: none !important; }
.theme-kawaii .s-iconrow-circle { border-radius: 50% !important; }
.theme-kawaii .s-testi-quote { font-size: 48px; }
.theme-kawaii .s-label { letter-spacing: .08em; }

/* --- NEON --- */
.theme-neon .s-hero__title { text-transform: uppercase; letter-spacing: .05em; font-weight: 700; }
.theme-neon .s-hero__badge { text-transform: uppercase; letter-spacing: .12em; }
.theme-neon .s-h2 { text-transform: uppercase; letter-spacing: .04em; }
.theme-neon .s-label { text-transform: uppercase; letter-spacing: .2em; font-size: 10px; }
.theme-neon .btn-p, .theme-neon .btn-g { text-transform: uppercase; letter-spacing: .08em; }
.theme-neon .s-svc-card, .theme-neon .s-testi-card, .theme-neon .s-bento-card { border: 1px solid rgba(255,255,255,.08) !important; }
.theme-neon .s-nav__logo { text-transform: uppercase; letter-spacing: .08em; }
.theme-neon .s-hero__title--mega { text-shadow: 0 0 40px currentColor; }
.theme-neon .s-svc-card h3 { text-transform: uppercase; letter-spacing: .03em; }
.theme-neon .s-team-avatar, .theme-neon .s-step-num { border-radius: 4px !important; }
.theme-neon .s-faq-item-compact { border: 1px solid rgba(255,255,255,.06) !important; }

/* --- RETRO --- */
.theme-retro .s-hero__title { text-transform: uppercase; font-weight: 800; }
.theme-retro .s-hero__badge { border-radius: 4px !important; border-width: 2px !important; }
.theme-retro .s-h2 { text-transform: uppercase; font-weight: 800; }
.theme-retro .btn-p { border-radius: 4px !important; border: 2px solid transparent; box-shadow: 4px 4px 0 rgba(0,0,0,.15); text-transform: uppercase; font-weight: 800; }
.theme-retro .btn-g { border-radius: 4px !important; border-width: 2px !important; box-shadow: 4px 4px 0 rgba(0,0,0,.1); }
.theme-retro .s-svc-card, .theme-retro .s-testi-card, .theme-retro .s-pricing-card, .theme-retro .s-bento-card, .theme-retro .s-pricing-simple-card { border: 2px solid rgba(0,0,0,.08) !important; box-shadow: 4px 4px 0 rgba(0,0,0,.06); border-radius: 8px !important; }
.theme-retro .s-svc-icon { border-radius: 8px !important; }
.theme-retro .s-stat { border: 2px solid rgba(0,0,0,.06) !important; border-radius: 8px !important; box-shadow: 3px 3px 0 rgba(0,0,0,.04); }
.theme-retro .s-faq-item-compact { border: 2px solid rgba(0,0,0,.06) !important; border-radius: 8px !important; }
.theme-retro .s-nav__logo { font-weight: 800; text-transform: uppercase; }
.theme-retro .s-step-num, .theme-retro .s-team-avatar { border-radius: 8px !important; }
.theme-retro .s-contact-form input, .theme-retro .s-contact-form textarea { border-width: 2px !important; border-radius: 6px !important; }

/* --- EDITORIAL --- */
.theme-editorial .s-hero__title { font-style: italic; font-weight: 400; letter-spacing: -.01em; }
.theme-editorial .s-hero__badge { display: none !important; }
.theme-editorial .s-h2 { font-weight: 400; letter-spacing: -.01em; }
.theme-editorial .s-label { text-transform: uppercase; letter-spacing: .15em; font-weight: 400; font-size: 11px; border-bottom: 1px solid currentColor; display: inline-block; padding-bottom: 3px; }
.theme-editorial .btn-p { border-radius: 0 !important; text-transform: uppercase; letter-spacing: .08em; font-weight: 500; font-size: 13px; }
.theme-editorial .btn-g { border-radius: 0 !important; text-transform: uppercase; letter-spacing: .08em; font-size: 13px; }
.theme-editorial .s-svc-card, .theme-editorial .s-testi-card, .theme-editorial .s-pricing-card, .theme-editorial .s-bento-card, .theme-editorial .s-pricing-simple-card { border-radius: 0 !important; }
.theme-editorial .s-svc-icon { display: none; }
.theme-editorial .s-svc-card h3 { border-bottom: 1px solid rgba(128,128,128,.2); padding-bottom: 8px; }
.theme-editorial .s-nav__logo { font-style: italic; font-weight: 400; font-size: 24px !important; }
.theme-editorial .s-testi-quote { font-family: serif; }
.theme-editorial .s-hero__title--mega { font-style: italic; }
.theme-editorial .s-stat, .theme-editorial .s-faq-item-compact { border-radius: 0 !important; }
.theme-editorial .s-team-avatar { border-radius: 50% !important; }
.theme-editorial .s-masonry-item, .theme-editorial .s-uniform-item { border-radius: 0 !important; }
.theme-editorial .s-hero__visual, .theme-editorial .s-about__visual, .theme-editorial .s-cta__card { border-radius: 0 !important; }
.theme-editorial .s-contact-form input, .theme-editorial .s-contact-form textarea { border-radius: 0 !important; }
.theme-editorial .s-tl-card { border-radius: 0 !important; }

/* --- MINIMAL --- */
.theme-minimal .s-hero__title { font-weight: 300; letter-spacing: -.02em; }
.theme-minimal .s-hero__badge { background: transparent !important; border: none !important; font-weight: 400; letter-spacing: .1em; }
.theme-minimal .s-h2 { font-weight: 300; }
.theme-minimal .s-label { font-weight: 400; font-size: 10px; letter-spacing: .15em; }
.theme-minimal .btn-p { font-weight: 400; letter-spacing: .05em; }
.theme-minimal .btn-g { font-weight: 400; }
.theme-minimal .s-svc-card, .theme-minimal .s-testi-card, .theme-minimal .s-bento-card { border: none !important; background: transparent !important; }
.theme-minimal .s-svc-icon { background: transparent !important; }
.theme-minimal .s-nav__logo { font-weight: 400; }
.theme-minimal .s-hero__glow, .theme-minimal .s-cta__glow { display: none; }
.theme-minimal .s-testi-quote { display: none; }
.theme-minimal .s-footer__brand div:first-child { font-weight: 400; }
.theme-minimal .s-stat { border: none !important; background: transparent !important; }
.theme-minimal .s-zigzag-num { font-weight: 300; }

/* --- CORPORATE --- */
.theme-corporate .s-hero__title { font-weight: 700; }
.theme-corporate .s-h2 { font-weight: 700; }
.theme-corporate .btn-p { font-weight: 600; }
.theme-corporate .s-nav__logo { font-weight: 700; }

/* --- ORGANIC --- */
.theme-organic .s-hero__title { font-weight: 600; line-height: 1.15; }
.theme-organic .s-hero__badge { border-radius: 999px !important; }
.theme-organic .btn-p, .theme-organic .btn-g { border-radius: 999px !important; }
.theme-organic .s-svc-card, .theme-organic .s-testi-card, .theme-organic .s-bento-card { border-radius: 20px !important; }
.theme-organic .s-stat { border-radius: 16px !important; }
.theme-organic .s-svc-icon { border-radius: 50% !important; }
.theme-organic .s-hero__visual, .theme-organic .s-about__visual { border-radius: 32px !important; }
.theme-organic .s-masonry-item, .theme-organic .s-uniform-item { border-radius: 16px !important; }
.theme-organic .s-faq-item-compact { border-radius: 16px !important; }
.theme-organic .s-cta__card { border-radius: 28px !important; }
.theme-organic .s-contact-form input, .theme-organic .s-contact-form textarea { border-radius: 12px !important; }
.theme-organic .s-tl-card, .theme-organic .s-vstep-card { border-radius: 16px !important; }
.theme-organic .s-pricing-card, .theme-organic .s-pricing-simple-card { border-radius: 20px !important; }
.theme-organic .s-step-num { border-radius: 50% !important; }
.theme-organic .s-nav__logo { font-weight: 600; }

/* --- PLAYFUL --- */
.theme-playful .s-hero__title { font-weight: 800; }
.theme-playful .s-hero__badge { border-radius: 999px !important; font-weight: 700; }
.theme-playful .s-h2 { font-weight: 800; }
.theme-playful .btn-p { border-radius: 16px !important; font-weight: 700; box-shadow: 0 4px 0 rgba(0,0,0,.15); }
.theme-playful .btn-g { border-radius: 16px !important; box-shadow: 0 4px 0 rgba(0,0,0,.08); }
.theme-playful .s-svc-card, .theme-playful .s-testi-card, .theme-playful .s-pricing-card, .theme-playful .s-bento-card { border-radius: 20px !important; box-shadow: 0 6px 0 rgba(0,0,0,.06); }
.theme-playful .s-svc-icon { border-radius: 16px !important; }
.theme-playful .s-stat { border-radius: 16px !important; }
.theme-playful .s-step-num { font-size: 24px; border-radius: 50% !important; }
.theme-playful .s-nav__logo { font-weight: 800; }
.theme-playful .s-team-avatar { border-radius: 20px !important; }
.theme-playful .s-faq-item-compact { border-radius: 16px !important; }
.theme-playful .s-cta__card { border-radius: 24px !important; }
.theme-playful .s-masonry-item, .theme-playful .s-uniform-item { border-radius: 16px !important; }
.theme-playful .s-contact-form input, .theme-playful .s-contact-form textarea { border-radius: 12px !important; }

/* --- INDUSTRIAL --- */
.theme-industrial .s-hero__title { text-transform: uppercase; font-weight: 800; letter-spacing: .04em; }
.theme-industrial .s-hero__badge { border-radius: 2px !important; text-transform: uppercase; letter-spacing: .12em; }
.theme-industrial .s-h2 { text-transform: uppercase; font-weight: 800; letter-spacing: .03em; }
.theme-industrial .s-label { text-transform: uppercase; letter-spacing: .2em; font-weight: 800; }
.theme-industrial .btn-p { border-radius: 2px !important; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.theme-industrial .btn-g { border-radius: 2px !important; text-transform: uppercase; letter-spacing: .06em; border-width: 2px !important; }
.theme-industrial .s-svc-card, .theme-industrial .s-testi-card, .theme-industrial .s-bento-card { border-radius: 2px !important; border-width: 2px !important; }
.theme-industrial .s-svc-icon { border-radius: 2px !important; }
.theme-industrial .s-stat { border-radius: 2px !important; }
.theme-industrial .s-nav__logo { text-transform: uppercase; letter-spacing: .05em; font-weight: 800; }
.theme-industrial .s-team-avatar, .theme-industrial .s-step-num { border-radius: 4px !important; }
.theme-industrial .s-faq-item-compact { border-radius: 2px !important; }
.theme-industrial .s-masonry-item, .theme-industrial .s-uniform-item { border-radius: 2px !important; }
.theme-industrial .s-pricing-card, .theme-industrial .s-pricing-simple-card { border-radius: 2px !important; border-width: 2px !important; }
.theme-industrial .s-hero__visual, .theme-industrial .s-about__visual { border-radius: 4px !important; }
.theme-industrial .s-cta__card { border-radius: 4px !important; }
.theme-industrial .s-contact-form input, .theme-industrial .s-contact-form textarea { border-radius: 2px !important; border-width: 2px !important; }

/* --- ARTDECO --- */
.theme-artdeco .s-hero__title { font-weight: 300; text-transform: uppercase; letter-spacing: .12em; }
.theme-artdeco .s-hero__badge { border-radius: 0 !important; text-transform: uppercase; letter-spacing: .2em; font-size: 10px; border: 1px solid currentColor !important; background: transparent !important; }
.theme-artdeco .s-h2 { font-weight: 300; text-transform: uppercase; letter-spacing: .08em; }
.theme-artdeco .s-label { letter-spacing: .25em; font-weight: 400; font-size: 10px; }
.theme-artdeco .btn-p, .theme-artdeco .btn-g { border-radius: 0 !important; text-transform: uppercase; letter-spacing: .12em; font-weight: 400; font-size: 12px; }
.theme-artdeco .s-svc-card, .theme-artdeco .s-testi-card, .theme-artdeco .s-bento-card { border-radius: 0 !important; }
.theme-artdeco .s-nav__logo { font-weight: 300; text-transform: uppercase; letter-spacing: .12em; }
.theme-artdeco .s-svc-icon, .theme-artdeco .s-stat { border-radius: 0 !important; }

/* ===== ANIMATIONS ===== */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Content sits above atmosphere */
.s-nav, .s-hero, .s-about, .s-services, .s-testi, .s-cta,
.s-pricing, .s-team, .s-faq, .s-process, .s-gallery,
.s-features, .s-contact, .s-map, .s-logos, .s-newsletter,
.s-stats-banner, .s-footer {
    position: relative;
    z-index: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .s-pricing__grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .s-team__grid { grid-template-columns: repeat(2, 1fr); }
    .s-features__grid { grid-template-columns: repeat(2, 1fr); }
    .s-bento-grid { grid-template-columns: repeat(2, 1fr); }
    .s-bento-card--lg { grid-column: span 2; grid-row: span 1; }
    .s-bento-card--md { grid-row: span 1; }
}

@media (max-width: 768px) {
    .s-nav__toggle { display: flex; }
    .s-nav__links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--bg);
        padding: 16px 7%;
        gap: 12px;
        border-bottom: 1px solid rgba(128,128,128,.1);
    }
    .s-nav__links--open { display: flex; }
    .s-hero--split { grid-template-columns: 1fr; min-height: auto; padding: 100px 7% 60px; }
    .s-hero__right { display: none; }
    .s-about--split .s-about__grid { grid-template-columns: 1fr; gap: 32px; }
    .s-about__visual { max-height: 250px; }
    .s-zigzag-row { grid-template-columns: 1fr; }
    .s-zigzag-row--reverse { direction: ltr; }
    .s-zigzag-visual { display: none; }
    .s-testi__grid { grid-template-columns: 1fr; }
    .s-pricing__grid { grid-template-columns: 1fr; }
    .s-pricing__simple-grid { grid-template-columns: 1fr; }
    .s-team__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .s-contact__grid { grid-template-columns: 1fr; }
    .s-features__grid { grid-template-columns: 1fr 1fr; }
    .s-features__horiz-inner { flex-direction: column; }
    .s-map__inner { grid-template-columns: 1fr; }
    .s-process__steps { grid-template-columns: 1fr 1fr; }
    .s-step-line { display: none; }
    .s-faq__twocol-inner { grid-template-columns: 1fr; }
    .s-footer__inner { grid-template-columns: 1fr; }
    .s-footer__links { justify-content: flex-start; }
    .s-cta__split-inner { flex-direction: column; text-align: center; }
    .s-masonry { columns: 2; }
    .s-uniform-grid { grid-template-columns: repeat(2, 1fr); }
    .s-bento-grid { grid-template-columns: 1fr; }
    .s-bento-card--lg, .s-bento-card--md { grid-column: span 1; }
    .s-stats--row { flex-direction: column; align-items: center; }
    .s-stat--inline { border-right: none !important; border-bottom: 1px solid rgba(128,128,128,.1); }
    .s-team__compact-inner { flex-direction: column; text-align: center; }
    .s-team__compact-row { justify-content: center; }
    .s-newsletter__inner { flex-direction: column; text-align: center; }
    .s-newsletter-form { width: 100%; }
    .s-about__tl-line { flex-direction: column; gap: 16px; }
    .s-iconrow-grid { grid-template-columns: 1fr !important; }
    .s-features__horiz-inner { flex-direction: column !important; }
    .s-stats__row { flex-direction: column !important; gap: 12px; }
}

@media (max-width: 480px) {
    .s-hero { min-height: 80vh; padding: 100px 5% 60px; }
    .s-hero__title { font-size: clamp(1.8rem, 8vw, 2.8rem); }
    .s-hero__cta { flex-direction: column; align-items: center; }
    .s-process__steps { grid-template-columns: 1fr; }
    .s-features__grid { grid-template-columns: 1fr; }
    .s-masonry { columns: 1; }
    .s-uniform-grid { grid-template-columns: 1fr; }
    .s-team__grid { grid-template-columns: 1fr; }
    .s-h2 { font-size: clamp(1.4rem, 5vw, 2rem) !important; }
}
