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

:root {
    --sl-blue: #2563eb;
    --sl-blue-deep: #1d4ed8;
    --sl-cyan: #06b6d4;
    --sl-teal: #0d9488;
    --sl-teal-dark: #0f766e;
    --sl-violet: #7c3aed;
    --sl-mint: #2dd4bf;
    --gradient-brand: linear-gradient(135deg, #2563eb 0%, #06b6d4 45%, #14b8a6 100%);
    --gradient-brand-soft: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(6, 182, 212, 0.14) 50%, rgba(20, 184, 166, 0.1) 100%);
    --gradient-btn: linear-gradient(135deg, #3b82f6 0%, #06b6d4 55%, #2dd4bf 100%);
    --gradient-btn-hover: linear-gradient(135deg, #2563eb 0%, #0891b2 50%, #14b8a6 100%);
    --shadow-card: 0 10px 40px -10px rgba(37, 99, 235, 0.18);
    --shadow-card-hover: 0 20px 50px -12px rgba(37, 99, 235, 0.28);
    /* Shared card surface (matches Features & Benefits category cards) */
    --card-surface-bg: linear-gradient(155deg, rgba(219, 234, 254, 0.75) 0%, rgba(204, 251, 241, 0.85) 45%, rgba(237, 233, 254, 0.65) 100%);
    --card-surface-border: rgba(37, 99, 235, 0.18);
    --shadow-btn: 0 4px 20px rgba(37, 99, 235, 0.45);
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-pill: 999px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    background: linear-gradient(180deg, #f8fafc 0%, #ecfeff 35%, #f5f3ff 70%, #f8fafc 100%);
    background-attachment: fixed;
}

html {
    scroll-behavior: smooth;
}

/* Header & Navigation */
header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(37, 99, 235, 0.08), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
}

header::after {
    content: "";
    display: block;
    height: 3px;
    width: 100%;
    background: var(--gradient-brand);
    opacity: 0.95;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--sl-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 65px;
    width: auto;
    transition: transform 0.3s;
}

.logo-img:hover {
    transform: scale(1.05) translateY(-1px);
    filter: drop-shadow(0 6px 12px rgba(37, 99, 235, 0.25));
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #334155;
    transition: color 0.2s, transform 0.2s;
    font-size: 1rem;
    font-weight: 600;
}

.nav-links a:hover {
    color: var(--sl-cyan);
}

.nav-links a[aria-current="page"] {
    color: var(--sl-blue);
    background: var(--gradient-brand-soft);
    padding: 0.35rem 0.65rem;
    border-radius: var(--radius-pill);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    padding: 0.5rem;
    margin-left: auto;
}

.nav-cta {
    display: block;
    margin-left: auto;
}

.btn {
    padding: 0.8rem 1.65rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.25s, filter 0.2s;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: inline-block;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--gradient-btn);
    color: white;
    box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
    background: var(--gradient-btn-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.5);
    filter: brightness(1.05);
}

.btn-secondary {
    background: transparent;
    color: var(--sl-blue);
    border: 2px solid var(--sl-blue);
}

.btn-secondary:hover {
    background: var(--gradient-btn);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-btn);
}

/* Hero Section — full-bleed background image */
.hero {
    margin-top: 80px;
    padding: 6rem 2rem;
    min-height: calc(100vh - 80px);
    background-color: #e2e8f0;
    background-image: url('images/background-main2.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #0f172a;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 40%, rgba(255, 255, 255, 0.28) 100%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 2.25rem 2rem;
    background: var(--card-surface-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-surface-border);
    box-shadow: var(--shadow-card);
}

.hero-content--wide {
    max-width: 920px;
}

.hero h1 {
    font-size: clamp(2rem, 4.2vw, 2.85rem);
    margin-bottom: 1.25rem;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-shadow: none;
    background: linear-gradient(135deg, #0f766e 0%, #1d4ed8 52%, #0e7490 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-sub {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    margin-bottom: 1.75rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: #475569;
    font-weight: 500;
}

.hero-micro {
    margin-top: 1.5rem;
    margin-bottom: 0;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0f766e;
    text-shadow: none;
}

.hero-buttons {
    display: flex;
    gap: 0.75rem 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons--triple {
    gap: 0.75rem 1rem;
}

.hero .btn-primary {
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.45), 0 2px 8px rgba(15, 23, 42, 0.12);
}

.hero .btn-primary:hover {
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.55), 0 4px 12px rgba(15, 23, 42, 0.15);
}

/* Home — value sections */
.home-value {
    padding: 4.5rem 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(224, 242, 254, 0.5) 40%, rgba(240, 253, 250, 0.65) 100%);
    position: relative;
}

.home-value--alt {
    background: linear-gradient(180deg, rgba(236, 254, 255, 0.9) 0%, rgba(245, 243, 255, 0.55) 45%, rgba(255, 255, 255, 0.75) 100%);
}

.home-value-inner {
    max-width: 900px;
    margin: 0 auto;
}

.home-value-inner--narrow {
    max-width: 720px;
}

.home-eyebrow {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.85rem;
}

.home-value-title {
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #0f766e 0%, #2563eb 50%, #0d9488 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.home-intro {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 2rem;
}

.home-subhead {
    font-size: 1.05rem;
    font-weight: 700;
    color: #134e4a;
    margin-bottom: 1rem;
}

.home-checklist {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
}

.home-checklist li {
    position: relative;
    padding: 0.65rem 0 0.65rem 1.75rem;
    color: #374151;
    font-size: 1.05rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(14, 116, 144, 0.1);
}

.home-checklist li:last-child {
    border-bottom: none;
}

.home-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sl-cyan);
    font-weight: bold;
    font-size: 1.15rem;
    text-shadow: 0 0 12px rgba(6, 182, 212, 0.5);
}

.home-pullquote {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.45;
    margin: 0;
    padding: 1.35rem 1.5rem;
    background: var(--card-surface-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-surface-border);
    box-shadow: var(--shadow-card);
    color: #0f766e;
}

.home-grow-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 0.5rem;
}

.home-grow-card {
    background: var(--card-surface-bg);
    padding: 1.5rem 1.35rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-surface-border);
    box-shadow: var(--shadow-card);
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.home-grow-card:hover {
    border-color: rgba(6, 182, 212, 0.45);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

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

.home-grow-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.home-grow-card p {
    margin: 0;
    font-size: 0.98rem;
    color: #64748b;
    line-height: 1.6;
}

.home-closing {
    margin: 2rem 0 0;
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ecfeff 50%, #f5f3ff 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #0f766e 0%, #2563eb 60%, #0891b2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 4rem;
    font-size: 1.1rem;
}

.section-subtitle a {
    color: var(--sl-blue);
    font-weight: 600;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-surface-bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-surface-border);
    box-shadow: var(--shadow-card);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(6, 182, 212, 0.35);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.7;
}

.feature-card .feature-list {
    margin: 0;
    padding-left: 1.35rem;
    color: #6b7280;
    line-height: 1.7;
    font-size: 0.98rem;
}

.feature-card .feature-list li {
    margin-bottom: 0.85rem;
}

.feature-card .feature-list li:last-child {
    margin-bottom: 0;
}

.feature-card .feature-list strong {
    color: #374151;
    font-weight: 600;
}

/* How it works — step cards */
.how-steps {
    padding-top: 4rem;
    padding-bottom: 5rem;
}

.how-steps .features-grid {
    grid-template-columns: 1fr;
    max-width: 38rem;
}

.how-step-card {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 1.15rem;
    row-gap: 0.35rem;
    align-items: start;
    text-align: left;
    padding: 1.35rem 1.6rem;
}

.how-step-icon {
    grid-column: 1;
    grid-row: 1 / -1;
    align-self: center;
    width: 52px;
    height: 52px;
    margin: 0;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-brand-soft);
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.15);
}

.how-step-icon svg {
    width: 32px;
    height: 32px;
}

.how-step-icon svg,
.how-step-icon svg * {
    stroke: var(--sl-blue-deep);
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card.how-step-card > h3 {
    grid-column: 2;
    grid-row: 1;
    font-size: 1.25rem;
    margin: 0;
    color: #134e4a;
}

.feature-card.how-step-card > p {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    max-width: none;
}

@media (max-width: 768px) {
    .how-steps {
        padding-top: 2.5rem;
        padding-bottom: 3rem;
    }

    .how-step-card {
        padding: 1.1rem 1.15rem;
        column-gap: 0.9rem;
    }

    .how-step-icon {
        width: 48px;
        height: 48px;
    }

    .how-step-icon svg {
        width: 26px;
        height: 26px;
    }

    .feature-card.how-step-card > h3 {
        font-size: 1.1rem;
    }
}

/* Features showcase (mockup-style layout) */
.features-showcase {
    margin-top: 80px;
    padding: 3.5rem 1.5rem 5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #faf5ff 0%, #ecfeff 40%, #f8fafc 100%);
}

.features-showcase::before,
.features-showcase::after {
    content: "";
    position: absolute;
    width: min(520px, 90vw);
    height: min(520px, 90vw);
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.52;
    pointer-events: none;
    z-index: 0;
}

.features-showcase::before {
    top: -18%;
    left: -22%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.65) 0%, rgba(37, 99, 235, 0.35) 45%, transparent 72%);
}

.features-showcase::after {
    bottom: -25%;
    right: -18%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.45) 0%, rgba(37, 99, 235, 0.4) 50%, transparent 72%);
}

.features-showcase-inner {
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.features-eyebrow {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.75rem;
}

.features-showcase-heading {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 2.75rem;
    line-height: 1.15;
    background: linear-gradient(135deg, #0f766e 0%, #2563eb 45%, #0d9488 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.feature-category-card {
    background: var(--card-surface-bg);
    border: 1px solid var(--card-surface-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.35rem 1.65rem;
    box-shadow: var(--shadow-card);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.feature-category-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(6, 182, 212, 0.4);
}

.feature-category-block {
    margin-bottom: 1.25rem;
}

.feature-category-card--api {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.feature-category-title--inline {
    margin-bottom: 0.65rem;
    padding-bottom: 0;
    border-bottom: none;
}

@media (min-width: 700px) {
    .feature-pill-list--two-col {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.15rem 1.5rem;
    }
}

.feature-category-title {
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0f766e;
    margin-bottom: 1.1rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(14, 116, 144, 0.22);
}

.feature-pill-list {
    display: flex;
    flex-direction: column;
    gap: 1.05rem;
}

.feature-pill-item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.feature-pill-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(14, 116, 144, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    line-height: 1;
}

.feature-pill-body h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #134e4a;
    margin-bottom: 0.35rem;
    line-height: 1.35;
}

.feature-pill-body p {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.feature-sublist {
    margin: 0.45rem 0 0;
    padding-left: 1.15rem;
    color: #475569;
    font-size: 0.86rem;
    line-height: 1.55;
}

.feature-sublist li {
    margin-bottom: 0.3rem;
}

.feature-fn-marker {
    text-decoration: none;
    font-weight: 700;
    color: #0f766e;
    margin-left: 0.15em;
}

.feature-fn-marker:hover,
.feature-fn-marker:focus {
    color: var(--sl-violet);
    outline: none;
}

.feature-fn-marker:focus-visible {
    outline: 2px solid var(--sl-blue);
    outline-offset: 2px;
    border-radius: 2px;
}

.features-footnote {
    max-width: 720px;
    margin: 2rem 0 0;
    padding: 0;
    font-size: 0.82rem;
    line-height: 1.5;
    color: #64748b;
    text-align: left;
}

.features-footnote-mark {
    font-weight: 700;
    color: #0f766e;
    margin-right: 0.25em;
}

.features-showcase-cta {
    text-align: center;
    margin-top: 2.75rem;
}

.features-showcase-cta .btn-primary {
    padding: 1rem 2.35rem;
    font-size: 1.02rem;
    border-radius: 999px;
}

.feature-api-body p {
    margin: 0;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.65;
    max-width: 640px;
}

.feature-api-visual {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1;
    opacity: 0.95;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .feature-category-card--api {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }
}

@media (max-width: 899px) {
    .feature-category-grid {
        grid-template-columns: 1fr;
    }
}

/* Pricing Section */
.pricing {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 40%, #ecfeff 100%);
}

.pricing-grid--hidden {
    display: none !important;
}

.pricing-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: var(--card-surface-bg);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-surface-border);
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card.featured {
    border: 3px solid var(--sl-blue);
    background: var(--card-surface-bg);
    transform: scale(1.05);
    box-shadow: var(--shadow-card-hover), 0 0 32px rgba(6, 182, 212, 0.25);
}

.pricing-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-card-hover);
}

.pricing-card.featured:hover {
    transform: translateY(-6px) scale(1.06);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    color: #6b7280;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #6b7280;
}

.pricing-features li::before {
    content: "✓ ";
    color: var(--sl-cyan);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* CTA Section */
.cta {
    padding: 6rem 2rem;
    background: var(--gradient-brand);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 100% 0%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* Footer */
footer {
    background: linear-gradient(180deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    color: #94a3b8;
    padding: 3rem 2rem;
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #06b6d4, #2dd4bf, #7c3aed, #2563eb);
    background-size: 200% 100%;
    animation: footer-shine 8s linear infinite;
}

@keyframes footer-shine {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@media (prefers-reduced-motion: reduce) {
    footer::before {
        animation: none;
        background: var(--gradient-brand);
    }
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: #f1f5f9;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    display: block;
    padding: 0.25rem 0;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #22d3ee;
}

.footer-contact {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
}

.footer-section .footer-contact .footer-contact-link {
    color: #94a3b8;
    font-size: 0.95rem;
    word-break: break-all;
}

.footer-section .footer-contact .footer-contact-link:hover {
    color: #22d3ee;
}

.footer-facebook {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-top: 0.35rem;
    padding: 0.45rem;
    color: #94a3b8;
    border-radius: 10px;
    transition: color 0.2s, background 0.2s, transform 0.2s;
}

.footer-facebook:hover {
    color: #ffffff;
    background: rgba(24, 119, 242, 0.35);
    transform: scale(1.06);
}

.footer-facebook svg {
    display: block;
    width: 26px;
    height: 26px;
}

.contact-form {
    max-width: 400px;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #374151;
    border-radius: 8px;
    background: #374151;
    color: white;
    font-size: 1rem;
    transition: border-color 0.3s, background 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--sl-cyan);
    background: #4b5563;
}

.form-group input::placeholder {
    color: #9ca3af;
}

.submit-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-btn);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-btn);
}

.submit-btn:hover {
    background: var(--gradient-btn-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
}

.verification-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.verification-question {
    color: white;
    font-weight: 500;
    font-size: 1rem;
}

.verification-input {
    width: 80px;
    padding: 0.5rem;
    border: 1px solid #374151;
    border-radius: 8px;
    background: #374151;
    color: white;
    font-size: 1rem;
    text-align: center;
    transition: border-color 0.3s, background 0.3s;
}

.verification-input:focus {
    outline: none;
    border-color: var(--sl-cyan);
    background: #4b5563;
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
}

.error-message.show {
    display: block;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #374151;
    color: #6b7280;
}

.footer-bottom .footer-powered {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.footer-bottom .footer-powered a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom .footer-powered a:hover {
    color: #22d3ee;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        padding: 1rem;
        gap: 1rem;
    }

    .logo {
        font-size: 1.25rem;
    }

    .logo-img {
        height: 50px;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
        border-bottom: 2px solid rgba(6, 182, 212, 0.25);
        gap: 1rem;
        display: none;
        z-index: 1001;
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

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

    .nav-links a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        margin-top: 70px;
        padding: 4rem 1.25rem;
        min-height: min(100vh - 70px, 900px);
        background-attachment: scroll;
    }

    .hero-content {
        padding: 1.65rem 1.35rem;
        border-radius: var(--radius-lg);
    }

    .hero h1 {
        font-size: 1.65rem;
        line-height: 1.25;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .hero-micro {
        font-size: 0.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .home-value {
        padding: 3rem 1.25rem;
    }

    .home-grow-grid {
        grid-template-columns: 1fr;
    }

    .home-grow-card--wide {
        grid-column: 1;
    }

    .home-pullquote {
        font-size: 1.05rem;
        padding: 1.15rem 1.1rem;
    }

            .features {
                padding: 3rem 1rem;
            }

            .features-showcase {
                padding: 2.5rem 1rem 3.5rem;
            }

            .features-showcase-heading {
                margin-bottom: 2rem;
            }

            .section-title {
                font-size: 1.75rem;
            }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .pricing {
        padding: 3rem 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
        margin: 0;
    }

    .cta {
        padding: 3rem 1.5rem;
    }

    .cta h2 {
        font-size: 1.75rem;
    }

    .cta p {
        font-size: 1rem;
    }

    footer {
        padding: 2rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-form {
        max-width: 100%;
    }

    .verification-group {
        flex-wrap: wrap;
    }

    .verification-question {
        font-size: 1.1rem;
    }

    .verification-input {
        width: 100px;
    }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .logo-img {
        height: 55px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

/* Improve touch targets on mobile */
@media (max-width: 768px) {
    .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .feature-card {
        min-height: auto;
    }
}

.page-title-band {
    margin-top: 80px;
    padding: 2.5rem 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(236, 254, 255, 0.9) 50%, rgba(245, 243, 255, 0.5) 100%);
    border-bottom: 1px solid rgba(6, 182, 212, 0.25);
    text-align: center;
    position: relative;
}

.page-title-band::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(480px, 80%);
    height: 4px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    background: var(--gradient-brand);
    opacity: 0.85;
}

.page-title-band h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #0f766e 0%, #2563eb 55%, #0891b2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.page-title-band p {
    color: #475569;
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.6;
}

.page-title-band a {
    color: var(--sl-blue);
    font-weight: 600;
}

.page-prose {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
    color: #374151;
}

.page-prose h2 {
    font-size: 1.5rem;
    color: #1f2937;
    margin: 2rem 0 1rem;
}

.page-prose p, .page-prose li {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.page-prose ul {
    padding-left: 1.25rem;
}

.about-page .about-pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 38rem;
    margin: 1.5rem auto 2.5rem;
}

.about-pillar {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 1.15rem;
    row-gap: 0.35rem;
    align-items: start;
    text-align: left;
    background: var(--card-surface-bg);
    border: 1px solid var(--card-surface-border);
    border-radius: var(--radius-lg);
    padding: 1.35rem 1.6rem;
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.08);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.about-pillar:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
    border-color: rgba(6, 182, 212, 0.4);
}

.about-pillar-icon {
    grid-column: 1;
    grid-row: 1 / -1;
    align-self: center;
    width: 52px;
    height: 52px;
    margin: 0;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-brand-soft);
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.15);
}

.about-pillar-icon svg {
    width: 28px;
    height: 28px;
}

.about-pillar-icon svg,
.about-pillar-icon svg * {
    stroke: var(--sl-blue-deep);
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-pillar h3 {
    grid-column: 2;
    grid-row: 1;
    font-size: 1.1rem;
    color: var(--sl-blue-deep);
    margin: 0;
}

.about-pillar p {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    font-size: 0.98rem;
    color: #475569;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-page .about-pillars {
        margin-left: 0;
        margin-right: 0;
        max-width: none;
    }

    .about-pillar {
        padding: 1.1rem 1.15rem;
        column-gap: 0.9rem;
    }

    .about-pillar-icon {
        width: 48px;
        height: 48px;
    }

    .about-pillar-icon svg {
        width: 24px;
        height: 24px;
    }
}

.about-journey-cta {
    text-align: center;
    margin-top: 2.75rem;
    margin-bottom: 0;
}

.about-journey-cta .btn-primary {
    padding: 0.85rem 1.85rem;
    border-radius: 999px;
}

.contact-panel {
    max-width: 560px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

.contact-panel a {
    color: var(--sl-blue);
    font-weight: 600;
}

.contact-page .contact-detail {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.contact-page .contact-detail a {
    color: var(--sl-blue);
    font-weight: 600;
    word-break: break-all;
}

.contact-page .contact-cta-line {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-top: 1.25rem;
    margin-bottom: 0;
}


@media (max-width: 768px) {
    .page-title-band h1 {
        font-size: 1.5rem;
    }
}
