.section-block--light {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.section-block--light .section-block__content,
.section-block--light .split-grid,
.section-block--light .contact-grid,
.section-block--light .benefit-grid {
    position: relative;
    z-index: 2;
}

.section-block--light::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="b" cx="50%" cy="50%"><stop offset="0%" style="stop-color:rgba(3,27,58,0.18)"/><stop offset="100%" style="stop-color:rgba(3,27,58,0)"/></radialGradient></defs><circle cx="250" cy="220" r="120" fill="url(%23b)"/><circle cx="780" cy="340" r="90" fill="url(%23b)"/><circle cx="420" cy="720" r="80" fill="url(%23b)"/><circle cx="650" cy="820" r="100" fill="url(%23b)"/><circle cx="160" cy="640" r="70" fill="url(%23b)"/></svg>') no-repeat;
    background-size: cover;
    opacity: 0.8;
    animation: swirl 22s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.section-block--light::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><path d="M80,180 Q360,80 640,260 T880,460 Q540,700 260,520 T80,180" stroke="rgba(3,27,58,0.2)" stroke-width="1.6" fill="none"/><path d="M220,120 Q520,320 820,220 T920,620 Q520,820 220,620 T220,120" stroke="rgba(3,27,58,0.15)" stroke-width="1.2" fill="none"/></svg>') no-repeat center;
    background-size: 100% 100%;
    animation: float 18s ease-in-out infinite;
    opacity: 0.75;
    pointer-events: none;
    z-index: 1;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Tab Content Container */
.tab-content-container {
    margin-top: 72px;
    background: transparent;
}


@keyframes diagonal-drift {
    0% { background-position: 0 0; }
    100% { background-position: -50px 100%; }
}

@keyframes reverse-wave {
    0% { background-position: 0 0; }
    100% { background-position: -100px 100%; }
}

@keyframes icon-drift {
    0% { background-position: 100% 0%, 0 0; }
    100% { background-position: 0% 100%, -50px 100%; }
}

.tab-panel {
    display: none;
    animation: fadeIn 0.3s ease-in;
    min-height: calc(100vh - 72px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    scroll-margin-top: 72px;
}

.tab-panel.active {
    display: flex;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
}

h2 {
    font-size: clamp(1.6rem, 3.2vw, 2rem);
}

h3 {
    font-size: clamp(1.25rem, 2.6vw, 1.5rem);
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    z-index: 1000;
    border-bottom: none;
}

.nav {
    padding: 0;
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 72px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    margin-left: auto;
}

.nav-login {
    margin-left: 1.5rem;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.nav-login-mobile {
    display: none;
}

.nav-menu li {
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: #9ca3af;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 1.5rem 2rem;
    display: block;
    position: relative;
    border-bottom: 3px solid transparent;
}

.nav-link:hover {
    color: #e5e7eb;
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-bottom-color: #3b82f6;
}

.nav-logo h1 {
    color: #2563eb;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #2563eb, #3b82f6, #1d4ed8);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease-in-out infinite;
    position: relative;
    letter-spacing: -0.5px;
}

.nav-logo h1::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-logo:hover h1::after {
    transform: scaleX(1);
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
}

.logo-image {
    height: 60px;
    width: auto;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: invert(1) brightness(2);
}

.logo-image:hover {
    transform: scale(1.05);
    filter: invert(1) brightness(2.2);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 20px;
    z-index: 10;
    background: transparent;
    border: none;
    padding: 0.25rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #e5e7eb;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.btn-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #2563eb;
    border-color: #2563eb;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: transparent;
    color: white;
    padding: 0;
}

/* PDF Landing Layout */
main.landing {
    margin-top: 72px;
    background: radial-gradient(circle at top, rgba(59, 130, 246, 0.15), transparent 45%);
}

.hero--pdf {
    min-height: calc(100vh - 72px);
    background: linear-gradient(135deg, #031b3a 0%, #0f2f54 60%, #13294d 100%);
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero__inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 72px);
}

.hero__text {
    max-width: 560px;
    text-align: left;
}

.hero__eyebrow {
    letter-spacing: 0.4em;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.hero__title {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    color: #fff;
}

.hero__lead {
    font-size: clamp(1.05rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 1rem;
}

.hero__body {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.85);
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.hero__media {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    height: 100%;
}

.hero__image {
    width: 100%;
    max-width: 420px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    height: 100%;
    object-fit: contain;
}

/* Phone frame styles */
.phone-frame {
    position: relative;
    display: inline-block;
    background: linear-gradient(
        145deg, 
        #3a3a3a 0%, 
        #1a1a1a 20%,
        #0a0a0a 50%,
        #1a1a1a 80%,
        #3a3a3a 100%
    );
    border-radius: 45px;
    padding: 14px;
    box-shadow: 
        /* Main drop shadow - deeper */
        0 60px 120px rgba(0, 0, 0, 0.6),
        0 40px 80px rgba(0, 0, 0, 0.5),
        /* Blue ambient glow - much stronger */
        0 0 120px rgba(59, 130, 246, 0.35),
        0 0 60px rgba(59, 130, 246, 0.25),
        /* Secondary purple/pink accent glow */
        -30px 30px 80px rgba(147, 51, 234, 0.2),
        30px -30px 80px rgba(6, 182, 212, 0.15),
        /* Outer rim highlight */
        0 0 0 2px rgba(255, 255, 255, 0.1),
        /* Inner rim for depth */
        inset 0 2px 0 rgba(255, 255, 255, 0.15),
        inset 0 -2px 0 rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% {
        transform: perspective(1000px) rotateY(-3deg) rotateX(2deg) translateY(0);
    }
    50% {
        transform: perspective(1000px) rotateY(-3deg) rotateX(2deg) translateY(-10px);
    }
}

.phone-frame:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-8px) scale(1.02);
    box-shadow: 
        0 80px 160px rgba(0, 0, 0, 0.6),
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 0 150px rgba(59, 130, 246, 0.5),
        0 0 80px rgba(59, 130, 246, 0.35),
        -40px 40px 100px rgba(147, 51, 234, 0.3),
        40px -40px 100px rgba(6, 182, 212, 0.25),
        0 0 0 2px rgba(255, 255, 255, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        inset 0 -2px 0 rgba(0, 0, 0, 0.4);
    animation: none;
}

/* Side buttons */
.phone-frame::before {
    content: '';
    position: absolute;
    right: -4px;
    top: 120px;
    width: 5px;
    height: 70px;
    background: linear-gradient(to right, #1a1a1a, #3a3a3a);
    border-radius: 0 4px 4px 0;
    box-shadow: 2px 0 4px rgba(0, 0, 0, 0.4);
}

.phone-frame::after {
    content: '';
    position: absolute;
    left: -4px;
    top: 100px;
    width: 5px;
    height: 40px;
    background: linear-gradient(to left, #1a1a1a, #3a3a3a);
    border-radius: 4px 0 0 4px;
    box-shadow: -2px 0 4px rgba(0, 0, 0, 0.4);
}

.phone-frame .hero__image {
    display: block;
    border-radius: 33px;
    filter: none;
    max-width: none;
    width: auto;
    box-shadow: 
        inset 0 0 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .hero__inner {
        flex-direction: row;
        align-items: center;
        gap: 56px;
    }
    .hero__text {
        flex: 1 1 55%;
    }
    .hero__media {
        flex: 0 0 40%;
        justify-content: flex-end;
        margin-top: 0;
    }
    .phone-frame .hero__image {
        height: calc((100vh - 220px) * 0.75);
        width: auto;
        max-width: none;
    }
}

@media (min-width: 1200px) {
    .hero__inner {
        gap: 72px;
    }
    .hero__text {
        flex: 1 1 55%;
    }
    .hero__media {
        flex: 0 0 40%;
        justify-content: flex-end;
        align-items: stretch;
    }
    .phone-frame .hero__image {
        height: calc((100vh - 220px) * 0.75);
        width: auto;
        max-width: none;
        object-fit: contain;
    }
}

.section-block {
    padding: 80px 0;
    min-height: calc(100vh - 72px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 1.5rem;
}

.section-block__content {
    text-align: left;
    width: 100%;
    margin-top: 0;
}

.section-block__eyebrow {
    letter-spacing: 0.35em;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 1rem;
}

.section-block__lead {
    font-size: clamp(2.25rem, 5.4vw, 2.9rem);
    color: #0f172a;
    max-width: 100%;
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

.section-block__body {
    font-size: clamp(2.25rem, 5.4vw, 2.9rem);
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.section-block__body--mission {
    font-size: clamp(1.27rem, 3vw, 1.5rem);
    font-weight: 600;
    color: #0b1225;
    letter-spacing: -0.01em;
}

.section-block--split .section-block__body {
    font-size: clamp(1.05rem, 2.5vw, 1.25rem);
    line-height: 1.6;
}

.section-block__body--contact {
    font-size: clamp(2.25rem, 5.4vw, 2.9rem);
    font-weight: 600;
    color: #0b1225;
    line-height: 1.6;
    text-align: left;
    margin: 0 0 1.5rem 0;
    max-width: 100%;
}

.section-block__title {
    font-size: clamp(0.75rem, 1.6vw, 0.9rem);
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin: 0 0 1rem 0;
    color: #0f172a;
}

.section-block > .section-block__title {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 1.5rem;
    padding: 48px 20px 0;
}

.section-block__title--partners {
    color: #f8fafc;
}

.section-block__subhead {
    font-size: clamp(0.85rem, 1.8vw, 1rem);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #475569;
    margin: 0 0 1rem 0;
}

.section-block__aside {
    font-style: italic;
    color: #475569;
}

.section-block__title--area {
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    margin-top: 1.25rem;
}

.split-grid__column .section-block__title--area:first-of-type {
    margin-top: 0;
}

.section-cta__label {
    letter-spacing: 0.35em;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #64748b;
}

.section-cta__button {
    align-self: flex-start;
}

.section-block--problem {
    background: linear-gradient(135deg, #031b3a 0%, #0f2f54 60%, #13294d 100%);
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.section-block--problem .section-block__eyebrow,
.section-block--problem .section-block__lead,
.section-block--problem .section-block__title {
    color: #f8fafc;
}

.section-block--problem .section-block__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: calc(100vh - 220px);
    padding-top: 40px;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.section-block--problem .section-block__body,
.section-block--problem .section-block__lead {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-block--solution > .section-block__content > .section-block__body {
    text-align: left;
    max-width: 100%;
    margin: 0 0 2rem 0;
    font-size: clamp(1.8rem, 4.32vw, 2.32rem);
}

.benefit-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.section-block--split .split-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, 1fr));
    gap: 48px;
    text-align: left;
    width: 100%;
    align-items: stretch;
}

.split-grid__column {
    display: flex;
    flex-direction: column;
}

.split-grid__column--mission .section-block__title {
    padding: 0;
    margin-bottom: 1.25rem;
}

.split-grid__column--mission {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.split-grid__column--mission .section-cta {
    margin-top: auto;
    padding-top: 0;
}

.mission-highlight-block + .mission-highlight-block {
    margin-top: 2rem;
}
.benefit-card {
    background: #f8fafc;
    padding: 24px;
    border-radius: 10px;
    text-align: left;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.benefit-card__title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.benefit-card__body {
    color: #334155;
    margin: 0;
}

.benefit-card__image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.18);
}

.section-block--partners {
    background: linear-gradient(135deg, #031b3a 0%, #0f2f54 60%, #13294d 100%);
    position: relative;
    overflow: hidden;
}

.section-block--partners .section-block__content {
    text-align: left;
    position: relative;
    z-index: 2;
}

.section-block--partners .section-block__title {
    color: #f8fafc;
}

.section-block--partners .section-block__lead,
.section-block--partners .section-block__body {
    color: #e2e8f0;
}

.partners-grid {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.partner-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.75rem 2rem;
    background: rgba(15, 23, 42, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
}

.partner-card__logo {
    flex: 0 0 auto;
    max-height: 90px;
    width: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.35));
}

.partner-card__text {
    flex: 1 1 auto;
}

.partner-card__name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #f8fafc;
}

.partner-card__body {
    margin: 0;
    color: #e2e8f0;
}

.contact-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.contact-grid {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    align-items: end;
}

.contact-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    align-items: center;
    justify-content: flex-end;
}

.contact-column--themes {
    text-align: left;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-column--actions .contact-actions__primary {
    text-transform: uppercase;
}

.contact-theme {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #0f172a;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.15);
}

.contact-theme span {
    display: inline-block;
}

.contact-theme__icon {
    width: 60px;
    height: 60px;
    flex: 0 0 auto;
}

.contact-callout {
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #475569;
    font-weight: 600;
}

.contact-callout--secondary {
    color: #0f172a;
    margin-top: 1.5rem;
}

.contact-column--actions .contact-actions__email {
    text-align: center;
    display: inline-block;
    font-size: 1.1rem;
}

.contact-actions__email {
    color: #0f172a;
    font-weight: 600;
    text-decoration: none;
}

.pill-list {
    margin-top: 2rem;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    padding: 0;
}

.pill-list__item {
    border: 1px solid rgba(15, 23, 42, 0.2);
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0f172a;
}

.hero::before,
.section-block--problem::before,
.section-block--partners::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1)"/><stop offset="100%" style="stop-color:rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="120" fill="url(%23a)"/><circle cx="800" cy="300" r="100" fill="url(%23a)"/><circle cx="400" cy="700" r="80" fill="url(%23a)"/><circle cx="700" cy="800" r="90" fill="url(%23a)"/><circle cx="100" cy="600" r="70" fill="url(%23a)"/></svg>') no-repeat;
    background-size: cover;
    animation: swirl 20s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.hero::after,
.section-block--problem::after,
.section-block--partners::after {
    content: '';
    position: absolute;
    padding-top: 72px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><path d="M100,200 Q400,100 700,300 T900,500 Q600,700 300,500 T100,200" stroke="rgba(255,255,255,0.1)" stroke-width="2" fill="none"/><path d="M200,100 Q500,300 800,200 T900,600 Q500,800 200,600 T200,100" stroke="rgba(255,255,255,0.08)" stroke-width="1.5" fill="none"/></svg>') no-repeat center;
    background-size: 100% 100%;
    animation: float 15s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes swirl {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: calc(100vh - 72px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

.company-name {
    display: inline-block;
    font-size: 4rem;
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: hero-company-glow 4s ease-in-out infinite;
    letter-spacing: -2px;
    }


@keyframes hero-company-glow {
    0%, 100% { 
        background-position: 0% 50%;
        transform: scale(1);
    }
    50% { 
        background-position: 100% 50%;
        transform: scale(1.02);
    }
}

.hero-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), transparent, rgba(255,255,255,0.1));
    border-radius: 15px;
    z-index: -1;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

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

.hero-contact {
    margin-top: 3rem;
    padding: 2rem 3rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 2px solid white;
    display: inline-block;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-contact:hover {
    background: white;
    transform: translateY(-4px);
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.25);
}

.contact-label {
    color: #334155;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-email {
    color: #007BA7;
    font-size: 2.25rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 123, 167, 0.2);
}

.contact-email::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #007BA7, #000080);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.contact-email:hover {
    color: #000080;
    transform: translateX(4px);
}

.contact-email:hover::after {
    transform: scaleX(1);
}

.hero .btn-primary {
    background: white;
    color: #2563eb;
    border-color: white;
}

.hero .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.hero .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.hero .btn-secondary:hover {
    background: white;
    color: #2563eb;
    transform: translateY(-2px);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    margin-top: -1.5rem;
}

.section-header h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    color: #e8f1f5;
}

/* About Section */
.about {
    padding: 0;
    background: transparent;
    display: block;
    width: 100%;
    min-height: auto;
    height: auto;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

/* Values Section */
.values {
    padding: 60px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon span {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.value-card h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

/* Products Section */
.products {
    padding: 0;
    background: transparent;
    display: block;
    width: 100%;
    min-height: auto;
    height: auto;
}

.products-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.product-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-card.featured {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px solid #2563eb;
}

.product-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-header h3 {
    color: #1f2937;
    font-size: 1.75rem;
    margin: 0;
    text-align: center;
    background: linear-gradient(135deg, #1f2937, #3b82f6, #2563eb);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: product-glow 3s ease-in-out infinite;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    text-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.product-header h3::before {
    content: '⚡';
    margin-right: 0.5rem;
    color: #f59e0b;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes product-glow {
    0%, 100% { 
        background-position: 0% 50%;
        filter: brightness(1);
    }
    50% { 
        background-position: 100% 50%;
        filter: brightness(1.2);
    }
}

@keyframes pulse-glow {
    0%, 100% { 
        transform: scale(1);
        filter: brightness(1);
    }
    50% { 
        transform: scale(1.1);
        filter: brightness(1.3);
    }
}

.product-badge {
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.product-description {
    margin-bottom: 2rem;
}

.product-description p {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
}

.product-features {
    margin-bottom: 2rem;
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 0.75rem 0;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
    font-size: 1rem;
}

.product-features li:last-child {
    border-bottom: none;
}

.product-cta {
    text-align: center;
}

.product-cta .btn {
    width: 100%;
    max-width: 300px;
}

/* Contact Section */
.contact {
    padding: 60px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.contact-item {
    margin-bottom: 1rem;
    color: #666;
}

.contact-form {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.section-block--partners,
.section-block--contact {
    justify-content: flex-start;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

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

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: #2563eb;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: footer-glow 5s ease-in-out infinite;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 0.5rem;
    filter: invert(1) brightness(2);
}

@keyframes footer-glow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.footer-brand p {
    color: #9ca3af;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

.footer-links a:hover {
    color: white;
}

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

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

/* Responsive Design - Tablet (1024px to 900px) */
@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 40px 30px;
    }

    .nav-menu {
        gap: 0;
        padding: 0 0.5rem;
    }

    .nav-link {
        padding: 1.5rem 0.8rem;
        font-size: 0.85rem;
    }

    .nav-login {
        margin-left: 0.75rem;
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero {
        padding: 0;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .company-name {
        font-size: 3.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-contact {
        margin-top: 2.5rem;
        padding: 1.75rem 2.5rem;
    }

    .contact-email {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .product-card {
        max-width: 90%;
        margin: 0 auto;
    }

    .products-grid {
        gap: 2.5rem;
    }
}

/* Responsive Design - Small Tablet/Large Mobile (900px to 600px) */
@media (max-width: 900px) {
    .container {
        padding: 40px 20px;
    }

    .hero__inner {
        min-height: auto;
    }

    .nav-container {
        justify-content: space-between;
        padding: 0 15px;
    }

    .nav-logo {
        position: static;
        transform: none;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
        flex-direction: column;
        padding: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        padding: 1rem 1.5rem;
        border-bottom: none;
        width: 100%;
        text-align: left;
    }

    .nav-link.active {
        background: rgba(255, 255, 255, 0.15);
        border-left: 4px solid #3b82f6;
    }

    .nav-toggle {
        display: flex;
        align-items: center;
        position: relative;
        padding: 1.5rem 0.5rem;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .nav-login {
        display: none;
    }

    .nav-login-mobile {
        display: block;
    }

    .logo-image {
        height: 50px;
    }


    .hero {
        padding: 0;
        min-height: auto;
    }

    .hero__media {
        height: auto;
        margin-top: 1.5rem;
        justify-content: center;
    }

    .phone-frame {
        padding: 8px;
        border-radius: 35px;
        transform: none;
        animation: none;
        box-shadow: 
            0 30px 60px rgba(0, 0, 0, 0.5),
            0 0 60px rgba(59, 130, 246, 0.3),
            0 0 0 2px rgba(255, 255, 255, 0.1);
    }

    .phone-frame:hover {
        transform: translateY(-3px);
    }

    .phone-frame::before,
    .phone-frame::after {
        display: none;
    }

    .phone-frame .hero__image {
        height: auto;
        max-width: 280px;
        border-radius: 28px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .company-name {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .hero-contact {
        margin: 2rem auto;
        padding: 1.5rem 2rem;
        max-width: 90%;
    }

    .contact-label {
        font-size: 0.9rem;
    }

    .contact-email {
        font-size: 1.5rem;
        word-break: break-word;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .products,
    .about {
        padding: 40px 0;
    }

    .products-grid {
        flex-direction: column;
        gap: 2rem;
        max-width: 100%;
    }

    .product-card {
        padding: 2rem;
        max-width: 100%;
        margin: 0 auto;
    }

    .product-card.featured {
        border: 2px solid #2563eb;
    }

    .product-header {
        flex-wrap: wrap;
    }

    .product-header h3 {
        font-size: 1.5rem;
        width: 100%;
    }

    .product-badge {
        align-self: center;
    }

    .product-description p {
        font-size: 1rem;
    }

    .product-features li {
        font-size: 0.95rem;
    }

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

    .value-card {
        padding: 1.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .partner-card {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
    }

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

    .section-block--split .split-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .partner-card__text {
        text-align: center;
    }

    .partner-card__logo {
        max-height: 70px;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}

/* Responsive Design - Mobile (600px and below) */
@media (max-width: 600px) {
    .container {
        padding: 40px 15px;
    }

    .nav-container {
        padding: 0 10px;
    }

    .nav-toggle span {
        width: 22px;
        height: 2.5px;
        margin: 2.5px 0;
    }

    .logo-image {
        height: 45px;
    }

    .hero {
        padding: 0;
        min-height: auto;
    }

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

    .company-name {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0;
        margin-bottom: 1.5rem;
    }

    .hero-contact {
        margin: 1.5rem auto;
        padding: 1rem 1.5rem;
    }

    .contact-label {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .contact-email {
        font-size: 1.2rem;
        word-break: break-word;
    }

    .section-header h2 {
        font-size: 1.3rem;
    }

    .section-header p {
        font-size: 0.9rem;
        padding: 0;
    }

    .products,
    .about {
        padding: 30px 0;
    }

    .product-card {
        padding: 1.5rem;
    }

    .product-header h3 {
        font-size: 1.3rem;
    }

    .product-header h3::before {
        display: none;
    }

    .product-description p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .product-features li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }

    .product-cta {
        margin-top: 1.5rem;
    }

    .product-cta .btn {
        width: 100%;
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .value-card,
    .service-card {
        padding: 1.25rem;
    }

    .value-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }

    .contact-form {
        padding: 1.25rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .footer {
        padding: 1.5rem 0 0.75rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-logo {
        height: 35px;
    }

    .footer-brand p {
        font-size: 0.9rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.1rem;
    }
}

/* Demo Modal Styles */
.demo-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    perspective: 1000px;
}

.demo-modal.active {
    opacity: 1;
    visibility: visible;
}

.demo-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.demo-modal__container {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    transform: translateY(40px) scale(0.9) rotateX(10deg);
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.demo-modal.active .demo-modal__container {
    transform: translateY(0) scale(1) rotateX(0deg);
}

.demo-modal__content {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 2.5rem;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 
        /* Inner bevel - light top, dark bottom */
        inset 0 3px 6px rgba(255, 255, 255, 0.9),
        inset 0 -3px 6px rgba(0, 0, 0, 0.1),
        inset 3px 0 6px rgba(255, 255, 255, 0.5),
        inset -3px 0 6px rgba(0, 0, 0, 0.05),
        /* Crisp outer edge */
        0 0 0 1px rgba(0, 0, 0, 0.2),
        0 0 0 3px rgba(30, 58, 138, 0.7),
        /* Outer bevel shadow - makes it pop forward */
        0 2px 0 rgba(255, 255, 255, 0.3),
        0 -6px 12px -3px rgba(0, 0, 0, 0.15),
        0 6px 12px -3px rgba(0, 0, 0, 0.3),
        /* Depth shadows */
        0 8px 16px rgba(0, 0, 0, 0.15),
        0 16px 32px rgba(0, 0, 0, 0.15),
        0 32px 64px rgba(0, 0, 0, 0.2),
        0 50px 100px rgba(0, 0, 0, 0.25),
        /* Blue ambient glow */
        0 0 60px rgba(59, 130, 246, 0.2),
        0 0 100px rgba(59, 130, 246, 0.1);
    border: none;
}

.demo-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.2s ease;
}

.demo-modal__close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #1e293b;
    transform: rotate(90deg);
}

.demo-modal__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
    text-align: center;
}

.demo-modal__subtitle {
    font-size: 1rem;
    color: #64748b;
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.demo-modal__form {
    min-height: 200px;
}

/* HubSpot form overrides for modal */
.demo-modal .hs-form-frame {
    width: 100%;
}

@media (max-width: 640px) {
    .demo-modal {
        align-items: flex-end;
    }

    .demo-modal__container {
        width: 100%;
        max-width: 100%;
        max-height: 95vh;
        transform: translateY(100%);
    }

    .demo-modal.active .demo-modal__container {
        transform: translateY(0);
    }

    .demo-modal__content {
        padding: 1.5rem 0.75rem;
        padding-top: 2rem;
        border-radius: 24px 24px 0 0;
        max-height: 95vh;
        box-shadow: 
            0 -4px 20px rgba(0, 0, 0, 0.2),
            0 0 60px rgba(59, 130, 246, 0.15),
            inset 0 2px 4px rgba(255, 255, 255, 0.9);
    }

    .demo-modal__title {
        font-size: 1.5rem;
    }

    .demo-modal__subtitle {
        font-size: 0.9rem;
    }

    .demo-modal__close {
        top: 0.75rem;
        right: 0.75rem;
        width: 36px;
        height: 36px;
    }
}