/* ==========================================================================
   Invicti Korea Homepage - Stylesheet
   ========================================================================== */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors - Invicti Official Palette */
    --primary: #4BD783;          /* Signal green - main accent */
    --primary-dark: #459A64;     /* Darker green */
    --primary-light: #6CE898;    /* Bright green for highlights */
    --primary-pale: #B1F3B5;     /* Soft pale green */
    --primary-soft: #F4FBF5;     /* Very light green bg */
    --secondary: #5D40BD;        /* Purple */
    --secondary-light: #CC8BDB;  /* Light purple */
    --accent: #4BD783;
    --accent-warm: #FF6D0B;      /* Orange */

    /* Neutrals - Navy theme */
    --dark-1: #060606;           /* Near black */
    --dark-2: #101820;           /* Primary dark navy */
    --dark-3: #101721;           /* Dark variant */
    --dark-4: #1A3731;           /* Dark green-tinted */
    --gray-1: #2D2D2D;
    --gray-2: #5A5A5A;
    --gray-3: #8A8A8A;
    --gray-4: #B8B8B8;
    --gray-5: #DEDEDE;
    --gray-6: #F8F8F8;           /* Light section bg */
    --gray-7: #FAF9F7;           /* Cream/off-white */
    --white: #FFFFFF;

    /* Status */
    --critical: #E63946;
    --high: #FF6B35;
    --medium: #FFB627;
    --low: #00C896;

    /* Spacing */
    --container: 1240px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Typography */
    --font-sans: 'Pretendard', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 60px rgba(75, 215, 131, 0.15);

    /* Transitions */
    --tr-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --tr-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --tr-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--dark-2);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--tr-base);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    background: none;
    border: none;
}

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

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #4BD783 0%, #5D40BD 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    transition: all var(--tr-base);
    cursor: pointer;
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-primary {
    background: #4BD783;
    color: #101820;
    box-shadow: 0 4px 14px rgba(75, 215, 131, 0.35);
}

.btn-primary:hover {
    background: #5BE893;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(75, 215, 131, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-light);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Top Banner */
.top-banner {
    background: #000000;
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.top-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(75, 215, 131, 0.1), transparent);
    animation: shimmer 4s infinite;
}

.top-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.banner-icon {
    font-size: 16px;
}

.banner-text {
    color: var(--gray-4);
}

.banner-link {
    color: var(--primary-light);
    font-weight: 600;
}

.banner-link:hover {
    color: var(--white);
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Header - Dark Theme (Invicti Style) */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    transition: all var(--tr-base);
}

.header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -24px;
    height: 24px;
    background: linear-gradient(180deg,
        rgba(93, 64, 189, 0.85) 0%,
        rgba(93, 64, 189, 0.5) 40%,
        rgba(93, 64, 189, 0.2) 70%,
        rgba(93, 64, 189, 0) 100%);
    pointer-events: none;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-shrink: 0;
}

.logo-img {
    height: 32px;
    width: auto;
}

.logo-tagline {
    font-size: 10px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.5px;
    margin-left: 2px;
}

.nav-desktop {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 15px;
    border-radius: var(--radius-sm);
    transition: all var(--tr-base);
}

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

.nav-link svg {
    transition: transform var(--tr-base);
}

.nav-item.has-dropdown:hover .nav-link svg {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 240px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--tr-base);
    border: 1px solid var(--gray-5);
}

.nav-item.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown a {
    display: block;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: var(--dark-2);
    font-size: 14px;
    font-weight: 500;
    transition: all var(--tr-base);
}

.dropdown a:hover {
    background: var(--gray-6);
    color: var(--primary);
    transform: translateX(4px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.login-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 12px;
}

.login-link:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--tr-base);
}

.mobile-menu-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 16px 24px 24px;
    background: #101820;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    transition: all var(--tr-base);
}

.mobile-menu a:not(.btn):hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary);
}

.mobile-menu .btn {
    margin-top: 8px;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #050505 50%, #0A0A0A 100%);
    color: var(--white);
    padding: 80px 0 0;
    overflow: hidden;
    margin-top: -1px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(75, 215, 131, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(75, 215, 131, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(75, 215, 131, 0.18) 0%, transparent 70%);
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.hero-content {
    max-width: 920px;
    text-align: center;
}

.hero-tagline {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(75, 215, 131, 0.1);
    border: 1px solid rgba(75, 215, 131, 0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--primary-light);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.4); }
}

.hero-title {
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero-zero {
    color: var(--white);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.4;
}

.hero-description {
    font-size: 19px;
    color: var(--white);
    margin: 0 auto 36px;
    line-height: 1.7;
    max-width: 820px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.btn-arrow {
    background: transparent;
    color: var(--white);
    padding: 12px 0;
    gap: 12px;
    border: none;
}

.btn-arrow:hover {
    color: var(--primary);
}

.btn-arrow .arrow-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--dark-2);
    transition: transform var(--tr-base);
}

.btn-arrow:hover .arrow-circle {
    transform: translateX(4px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-image {
    width: 100%;
    max-width: 1400px;
    height: auto;
}

.dashboard-mockup {
    background: linear-gradient(135deg, rgba(20, 33, 54, 0.9) 0%, rgba(10, 22, 40, 0.95) 100%);
    border: 1px solid rgba(75, 215, 131, 0.25);
    border-radius: var(--radius-lg);
    padding: 0;
    box-shadow:
        var(--shadow-xl),
        0 0 80px rgba(75, 215, 131, 0.15);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform var(--tr-slow);
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-dots {
    display: flex;
    gap: 6px;
}

.dashboard-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.dashboard-dots span:nth-child(1) { background: #FF5F57; }
.dashboard-dots span:nth-child(2) { background: #FEBC2E; }
.dashboard-dots span:nth-child(3) { background: #28C840; }

.dashboard-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-4);
}

.dashboard-body {
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 16px;
    transition: all var(--tr-base);
}

.metric-card:hover {
    background: rgba(75, 215, 131, 0.08);
    border-color: rgba(75, 215, 131, 0.3);
}

.metric-label {
    font-size: 12px;
    color: var(--gray-3);
    margin-bottom: 8px;
    font-weight: 500;
}

.metric-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1;
}

.metric-value span {
    font-size: 16px;
    color: var(--primary-light);
    margin-left: 2px;
}

.metric-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #4BD783, #5D40BD);
    border-radius: 100px;
    animation: bar-grow 1.5s ease-out;
}

@keyframes bar-grow {
    from { width: 0; }
}

.metric-trend {
    font-size: 11px;
    color: var(--accent);
    font-weight: 600;
}

.vuln-list {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.vuln-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    font-size: 13px;
}

.vuln-tag {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vuln-item.critical .vuln-tag {
    background: rgba(230, 57, 70, 0.15);
    color: var(--critical);
}

.vuln-item.high .vuln-tag {
    background: rgba(255, 107, 53, 0.15);
    color: var(--high);
}

.vuln-item.medium .vuln-tag {
    background: rgba(255, 182, 39, 0.15);
    color: var(--medium);
}

.vuln-name {
    flex: 1;
    color: var(--gray-4);
    font-weight: 500;
}

.vuln-status {
    font-size: 11px;
    font-weight: 600;
}

.vuln-status.verified {
    color: var(--accent);
}

.vuln-status.pending {
    color: var(--gray-3);
}

/* Social Proof */
.social-proof {
    padding: 20px 0;
    background: #5D40BD;
}

.proof-container {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 32px;
    align-items: center;
    min-height: unset;
}

.proof-title {
    text-align: left;
    font-size: 13px;
    color: var(--white);
    margin-bottom: 0;
    font-weight: 600;
    line-height: 1.35;
}

.proof-title strong {
    color: var(--white);
    font-weight: 800;
    font-size: 22px;
    display: block;
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.logo-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.logo-track {
    display: flex;
    gap: 80px;
    align-items: center;
    animation: marquee 40s linear infinite;
    width: max-content;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.logo-item {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-3);
    white-space: nowrap;
    transition: color var(--tr-base);
    letter-spacing: -0.01em;
}

.logo-item:hover {
    color: var(--dark-2);
}

.logo-item-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Section Common */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(75, 215, 131, 0.15);
    color: var(--primary);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    border: 1px solid rgba(75, 215, 131, 0.25);
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--white);
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-3);
    line-height: 1.6;
}

.section-footer {
    text-align: center;
    margin-top: 48px;
}

/* Capabilities - Dark Theme */
.capabilities {
    background: #050505;
    color: var(--white);
}

.capabilities .section-title {
    color: var(--white);
}

.capabilities .section-subtitle {
    color: var(--gray-3);
}

.capabilities-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    position: relative;
}

.capability-step {
    position: relative;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: all var(--tr-base);
    overflow: hidden;
}

.capability-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
    transform: scaleX(0);
    transition: transform var(--tr-slow);
}

.capability-step:hover {
    transform: translateY(-6px);
    background: rgba(75, 215, 131, 0.06);
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.capability-step:hover::before {
    transform: scaleX(1);
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(75, 215, 131, 0.12);
    color: var(--primary);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    transition: all var(--tr-base);
}

.capability-step:hover .step-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    transform: rotate(-5deg) scale(1.05);
}

.step-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 56px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
    letter-spacing: -0.05em;
    transition: color var(--tr-base);
}

.capability-step:hover .step-number {
    color: rgba(75, 215, 131, 0.15);
}

.capability-step h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.capability-step p {
    font-size: 14px;
    color: var(--gray-4);
    line-height: 1.6;
}

/* DAST Section */
.dast-section {
    background: linear-gradient(135deg, #000000 0%, #050505 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.dast-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(75, 215, 131, 0.1) 0%, transparent 70%);
}

.dast-section .container {
    position: relative;
    z-index: 1;
}

.dast-section .section-title {
    color: var(--white);
}

.dast-section .section-subtitle {
    color: var(--gray-3);
}

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

.stat-card {
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--tr-base);
}

.stat-card:hover {
    transform: translateY(-4px);
    background: rgba(75, 215, 131, 0.08);
    border-color: rgba(75, 215, 131, 0.3);
}

.stat-card.highlight {
    background: linear-gradient(135deg, rgba(75, 215, 131, 0.15), rgba(93, 64, 189, 0.1));
    border-color: rgba(75, 215, 131, 0.4);
}

.stat-value {
    font-size: clamp(48px, 5vw, 64px);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #FFFFFF 0%, #4BD783 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-unit {
    font-size: 0.6em;
    color: var(--primary-light);
    -webkit-text-fill-color: var(--primary-light);
}

.stat-label {
    font-size: 15px;
    color: var(--gray-3);
    line-height: 1.5;
    font-weight: 500;
}

/* Features - Dark Theme */
.features {
    background: #050505;
    color: var(--white);
}

.features .section-title {
    color: var(--white);
}

.features .section-subtitle {
    color: var(--gray-3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.feature-card {
    position: relative;
    padding: 36px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--tr-base);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--tr-slow);
}

.feature-card:hover {
    transform: translateY(-6px);
    background: rgba(75, 215, 131, 0.05);
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card.featured {
    background: linear-gradient(135deg, rgba(75, 215, 131, 0.08) 0%, rgba(93, 64, 189, 0.08) 100%);
    border: 1px solid var(--primary);
}

.feature-card.featured::before {
    transform: scaleX(1);
}

.feature-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    color: var(--white);
}

.feature-icon.sast { background: linear-gradient(135deg, #5D40BD, #CC8BDB); }
.feature-icon.sca { background: linear-gradient(135deg, #4BD783, #459A64); }
.feature-icon.container { background: linear-gradient(135deg, #FF6D0B, #FFB627); }
.feature-icon.api { background: linear-gradient(135deg, #5D40BD, #B2A7E0); }
.feature-icon.aspm { background: linear-gradient(135deg, #459A64, #1A3731); }
.feature-icon.dast-feat { background: linear-gradient(135deg, #4BD783, #5D40BD); }

.feature-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.feature-card h3 small {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-3);
    margin-top: 4px;
}

.feature-card > p {
    font-size: 15px;
    color: var(--gray-4);
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-list li {
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    color: var(--gray-4);
    font-weight: 500;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(75, 215, 131, 0.1);
}

.feature-list li::after {
    content: '✓';
    position: absolute;
    left: 3px;
    top: 5px;
    color: var(--white);
    font-size: 9px;
    font-weight: 900;
}

/* Personas - Dark Theme */
.personas {
    background: #0A0A0A;
    color: var(--white);
}

.personas .section-title {
    color: var(--white);
}

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

.persona-card {
    position: relative;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    transition: all var(--tr-base);
}

.persona-card:hover {
    transform: translateY(-8px);
    background: rgba(75, 215, 131, 0.05);
    border-color: var(--primary);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.persona-card.featured {
    background: linear-gradient(135deg, rgba(75, 215, 131, 0.1) 0%, rgba(93, 64, 189, 0.1) 100%);
    color: var(--white);
    border: 1px solid var(--primary);
    transform: scale(1.02);
}

.persona-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.persona-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(75, 215, 131, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.persona-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(75, 215, 131, 0.3);
}

.persona-card.featured .persona-icon {
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    box-shadow: 0 8px 20px rgba(93, 64, 189, 0.4);
}

.persona-image {
    width: 100%;
    height: 200px;
    margin: -40px -32px 24px;
    width: calc(100% + 64px);
    overflow: hidden;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    background: linear-gradient(135deg, var(--gray-6), #E1E7EF);
}

.persona-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--tr-slow);
}

.persona-card:hover .persona-image img {
    transform: scale(1.05);
}

.persona-card.featured .persona-image {
    background: linear-gradient(135deg, #1A3731, #101820);
}

.persona-card h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.persona-card.featured h3 {
    color: var(--white);
}

.persona-tagline {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.persona-card.featured .persona-tagline {
    color: var(--primary);
}

.persona-benefits {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.persona-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-4);
    line-height: 1.5;
}

.persona-benefits li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    padding: 4px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    margin-top: 2px;
}

.persona-card.featured .persona-benefits li {
    color: var(--gray-4);
}

.persona-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    font-size: 15px;
    transition: gap var(--tr-base);
}

.persona-card.featured .persona-link {
    color: var(--primary);
}

.persona-link:hover {
    gap: 12px;
}

/* Industries - Dark Theme */
.industries {
    background: #050505;
    color: var(--white);
}

.industries .section-title {
    color: var(--white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.industry-card {
    padding: 36px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--tr-base);
}

.industry-card:hover {
    transform: translateY(-6px);
    background: rgba(75, 215, 131, 0.05);
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.industry-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-soft) 0%, rgba(93, 64, 189, 0.08) 100%);
    color: var(--primary-dark);
    border-radius: var(--radius-md);
    transition: all var(--tr-base);
}

.industry-card:hover .industry-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    transform: scale(1.05);
}

.industry-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.industry-card p {
    font-size: 14px;
    color: var(--gray-4);
    line-height: 1.6;
}

/* Testimonials - Dark Theme */
.testimonials {
    background: #0A0A0A;
    color: var(--white);
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.testimonial-card {
    position: relative;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: all var(--tr-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    background: rgba(75, 215, 131, 0.05);
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, rgba(75, 215, 131, 0.12) 0%, rgba(93, 64, 189, 0.12) 100%);
    border: 1px solid var(--primary);
    color: var(--white);
    grid-column: span 2;
}

.testimonial-quote {
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 80px;
    font-weight: 900;
    color: var(--primary-light);
    opacity: 0.3;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-card.featured .testimonial-quote {
    color: var(--white);
    opacity: 0.2;
    font-size: 120px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-4);
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.testimonial-card.featured .testimonial-text {
    color: var(--white);
    font-size: 22px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.author-avatar.sw { background: linear-gradient(135deg, #6366F1, #8B5CF6); }
.author-avatar.oe { background: linear-gradient(135deg, #FF6B35, #F59E0B); }
.author-avatar.gs { background: linear-gradient(135deg, #4BD783, #459A64); }
.author-avatar.fp { background: linear-gradient(135deg, #5D40BD, #CC8BDB); }
.author-avatar.ec { background: linear-gradient(135deg, #EC4899, #F43F5E); }
.author-avatar.tc { background: linear-gradient(135deg, #00BCD4, #0097A7); }

.testimonial-card.featured .author-avatar {
    background: var(--white);
    color: var(--primary);
}

.author-name {
    font-weight: 700;
    color: var(--white);
    font-size: 15px;
}

.testimonial-card.featured .author-name {
    color: var(--white);
}

.author-role {
    font-size: 13px;
    color: var(--gray-3);
}

.testimonial-card.featured .author-role {
    color: rgba(255, 255, 255, 0.8);
}

/* Integrations - Dark Theme */
.integrations {
    background: #050505;
    color: var(--white);
}

.integrations .section-title {
    color: var(--white);
}

.integrations .section-subtitle {
    color: var(--gray-3);
}

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

.integration-category {
    padding: 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: all var(--tr-base);
}

.integration-category:hover {
    border-color: var(--primary);
    background: rgba(75, 215, 131, 0.05);
}

.integration-category h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.integration-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.integration-items span {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--gray-4);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--tr-base);
    cursor: default;
}

.integration-items span:hover {
    background: var(--primary);
    color: var(--dark-2);
    transform: translateY(-2px);
    border-color: var(--primary);
}

/* Blog - Dark Theme */
.blog {
    background: #0A0A0A;
    color: var(--white);
}

.blog .section-title {
    color: var(--white);
}

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

.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--tr-base);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    transform: translateY(-6px);
    background: rgba(75, 215, 131, 0.05);
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.blog-card.featured {
    grid-row: auto;
}

.blog-card.featured .blog-image {
    height: 180px;
}

.blog-card.featured h3 {
    font-size: 18px;
}

.blog-image {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.blog-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
}

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    background: var(--primary);
    color: var(--dark-2);
    font-size: 12px;
    font-weight: 700;
    border-radius: 100px;
    z-index: 1;
}

.blog-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    font-size: 12px;
    color: var(--gray-3);
    margin-bottom: 12px;
    font-weight: 500;
}

.blog-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card.featured h3 {
    font-size: 24px;
}

.blog-card p {
    font-size: 14px;
    color: var(--gray-4);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.blog-meta {
    color: var(--gray-3);
}

.blog-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    transition: gap var(--tr-base);
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.blog-link:hover {
    gap: 10px;
}

/* Final CTA */
.final-cta {
    background: #050505;
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(75, 215, 131, 0.15);
    padding-bottom: 0;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(75, 215, 131, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(75, 215, 131, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

.final-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(75, 215, 131, 0.2) 0%, transparent 70%);
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

/* Platform Showcase Section */
.platform-showcase {
    background: #050505;
    padding: 10px 0 60px;
    color: var(--white);
}

.showcase-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 56px;
}

.showcase-header .section-title {
    color: var(--white);
}

.showcase-header .section-subtitle {
    color: var(--gray-3);
}

.showcase-image {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.showcase-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(75, 215, 131, 0.1);
}

.cta-text {
    text-align: center;
    margin-bottom: 40px;
}

.cta-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 20px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0;
}

.cta-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5);
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 0;
    text-align: left;
}

.cta-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-size: 15px;
    color: var(--gray-4);
    transition: all var(--tr-base);
}

.cta-benefits li:hover {
    background: rgba(75, 215, 131, 0.1);
    border-color: rgba(75, 215, 131, 0.3);
    color: var(--white);
}

.cta-benefits li svg {
    flex-shrink: 0;
    color: var(--accent);
    width: 22px;
    height: 22px;
    padding: 3px;
    background: rgba(93, 64, 189, 0.15);
    border-radius: 50%;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Blog Link-out CTA */
.blog-cta {
    background: #050505;
    color: var(--white);
    padding: 80px 0;
}
.blog-cta .blog-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 768px) {
    .blog-cta { padding: 64px 0; }
    .blog-cta .blog-grid { grid-template-columns: 1fr; }
}

/* Contact Section */
.contact-section {
    background: #0a0d14;
    color: #eef0f5;
    padding: 96px 0;
    border-top: 1px solid #1f2638;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: start;
}
.contact-brand-logo {
    display: block;
    height: 64px;
    width: auto;
    margin-bottom: 20px;
}
.contact-tagline {
    font-size: 16px;
    line-height: 1.7;
    color: #99a2b8;
    margin: 0 0 36px;
    max-width: 480px;
}
.contact-eyebrow {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #6a98f0;
    font-weight: 600;
    margin-bottom: 18px;
}
.contact-title {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    margin: 0 0 18px;
}
.contact-lead {
    font-size: 16px;
    line-height: 1.7;
    color: #99a2b8;
    margin: 0 0 32px;
    max-width: 480px;
}
.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact-channel {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #99a2b8;
    font-size: 15.5px;
    line-height: 1.55;
    text-decoration: none;
    transition: color 0.15s;
}
a.contact-channel:hover { color: #fff; }
.contact-channel .channel-icon {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #131826;
    border: 1px solid #1f2638;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #6a98f0;
}
.contact-channel strong {
    color: #eef0f5;
    font-weight: 600;
}

.contact-form {
    background: #131826;
    border: 1px solid #1f2638;
    border-radius: 14px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: #99a2b8;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    background: #0a0d14;
    border: 1px solid #1f2638;
    border-radius: 8px;
    color: #eef0f5;
    font-size: 15px;
    padding: 12px 14px;
    font-family: inherit;
    transition: border-color 0.15s, background 0.15s;
}
.contact-form textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.6;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4a7fe5;
    background: #0e121b;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #6e7689;
}
.contact-submit {
    margin-top: 8px;
    background: linear-gradient(135deg, #2c4a8a 0%, #b03040 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
}
.contact-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(74, 127, 229, 0.25);
}
@media (max-width: 960px) {
    .contact-section { padding: 72px 0; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-title { font-size: 30px; }
    .contact-form { padding: 28px; }
    .contact-form .form-row { grid-template-columns: 1fr; }
}

/* Footer */
.footer {
    background: #07090f;
    color: #99a2b8;
    padding: 32px 0;
    border-top: 1px solid #1f2638;
}
.footer .brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #fff;
}
.footer .brand-logo {
    display: block;
    height: 56px;
    width: auto;
    flex: 0 0 auto;
    filter: none;
}
@media (max-width: 720px) {
    .footer .brand-logo { height: 38px; }
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
}
.footer h4 {
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 18px;
    font-weight: 600;
}
.footer a {
    display: block;
    color: #99a2b8;
    font-size: 15.5px;
    padding: 5px 0;
    transition: color 0.15s;
    text-decoration: none;
}
.footer a:hover { color: #fff; }
.footer p {
    color: #99a2b8;
    font-size: 15.5px;
    line-height: 1.7;
    margin: 16px 0 0;
    max-width: 360px;
}
.copyright {
    color: #6e7689;
    font-size: 14px;
    letter-spacing: 0.04em;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

/* Scroll to top */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(75, 215, 131, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all var(--tr-base);
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(75, 215, 131, 0.5);
}

/* Animations on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-desktop {
        display: none;
    }

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

    .login-link {
        display: none;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        order: -1;
    }

    .dashboard-mockup {
        transform: none;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-card.featured {
        grid-column: auto;
        grid-row: auto;
    }

    .testimonial-card.featured {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    section {
        padding: 64px 0;
    }

    .hero {
        padding: 64px 0 80px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card.featured {
        grid-column: span 1;
    }

    .copyright {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .top-banner {
        font-size: 12px;
        padding: 8px 0;
    }

    .top-banner .container {
        gap: 6px;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }

    .dashboard-body {
        padding: 16px;
        gap: 12px;
    }

    .metric-value {
        font-size: 22px;
    }

    .stat-card {
        padding: 32px 20px;
    }

    .feature-card,
    .persona-card {
        padding: 28px 24px;
    }

    .testimonial-card {
        padding: 28px 24px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .header-container {
        height: 60px;
    }

    .logo svg {
        width: 110px;
    }

    .logo-tagline {
        display: none;
    }

    .hero-title {
        font-size: 40px;
    }

    .dashboard-body {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   New Sections (Korean Restructure)
   ========================================================================== */

/* Key Stats Section */
.key-stats {
    background: linear-gradient(180deg, var(--white) 0%, var(--primary-soft) 100%);
}

/* Product Summary */
.product-summary {
    background: var(--white);
}

.product-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.product-summary-card {
    display: block;
    padding: 28px 24px;
    background: var(--white);
    border: 2px solid var(--gray-5);
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--dark-2);
    transition: all var(--tr-base);
}

.product-summary-card:hover {
    border-color: var(--primary);
    background: var(--primary-soft);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.ps-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary-soft) 0%, rgba(75, 215, 131, 0.1) 100%);
    color: var(--primary-dark);
    border-radius: var(--radius-md);
    transition: all var(--tr-base);
}

.product-summary-card:hover .ps-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: scale(1.05);
}

.product-summary-card h3 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--dark-2);
}

.product-summary-card p {
    font-size: 13px;
    color: var(--gray-2);
}

/* Korea Customers */
.korea-customers {
    padding: 60px 0;
    background: #000000;
}

.korea-customers .proof-title {
    color: var(--gray-3);
}

.korea-customers .proof-title strong {
    color: var(--white);
}

/* Customer Feed */
.customer-feed {
    background: var(--gray-6);
}

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

.feed-card {
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-5);
    border-left: 4px solid var(--primary);
    transition: all var(--tr-base);
}

.feed-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--secondary);
}

.feed-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.feed-tag {
    padding: 4px 12px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
}

.feed-date {
    font-size: 12px;
    color: var(--gray-3);
}

.feed-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--dark-2);
    margin-bottom: 12px;
    line-height: 1.4;
}

.feed-card p {
    font-size: 14px;
    color: var(--gray-2);
    line-height: 1.6;
    margin-bottom: 20px;
}

.feed-stats {
    display: flex;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-5);
}

.feed-stats span {
    font-size: 13px;
    color: var(--gray-2);
}

.feed-stats strong {
    color: var(--primary-dark);
    font-weight: 800;
    margin-right: 4px;
}

/* Platform Overview */
.platform-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 48px;
    background: linear-gradient(135deg, var(--gray-6) 0%, var(--primary-soft) 100%);
    border-radius: var(--radius-xl);
    margin-bottom: 60px;
    border: 1px solid var(--gray-5);
}

.po-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-2);
    margin-bottom: 16px;
}

.po-content > p {
    font-size: 16px;
    color: var(--gray-2);
    line-height: 1.7;
    margin-bottom: 24px;
}

.po-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.po-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-1);
    font-weight: 500;
}

.po-features li svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    padding: 4px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
}

.po-visual img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

/* Solutions Block */
.solutions-block {
    margin-bottom: 64px;
}

.solutions-block:last-child {
    margin-bottom: 0;
}

.block-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark-2);
    margin-bottom: 32px;
    text-align: center;
}

/* Role Cards */
.role-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.role-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--gray-5);
    transition: all var(--tr-base);
}

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

.role-image {
    background: linear-gradient(135deg, var(--primary-soft), #DEDEDE);
    overflow: hidden;
}

.role-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--tr-slow);
}

.role-card:hover .role-image img {
    transform: scale(1.05);
}

.role-content {
    padding: 32px 28px;
}

.role-content h4 {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark-2);
    margin-bottom: 8px;
}

.role-content > p {
    font-size: 14px;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 16px;
}

.role-content ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.role-content li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    color: var(--gray-2);
    line-height: 1.5;
}

.role-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 900;
}

/* Korea Section */
.korea-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--primary-soft) 100%);
    position: relative;
    overflow: hidden;
}

.korea-section::before {
    content: '🇰🇷';
    position: absolute;
    top: 40px;
    right: 5%;
    font-size: 200px;
    opacity: 0.05;
    pointer-events: none;
}

.korea-tag {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
}

.compliance-card {
    position: relative;
    padding: 40px 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-5);
    transition: all var(--tr-base);
}

.compliance-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.compliance-card.featured {
    background: linear-gradient(135deg, #060606, #101820);
    color: var(--white);
    border-color: var(--primary);
}

.compliance-badge {
    display: inline-block;
    padding: 8px 18px;
    background: var(--primary);
    color: var(--dark-2);
    font-size: 13px;
    font-weight: 800;
    border-radius: 100px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.compliance-card.featured .compliance-badge {
    background: var(--primary);
    color: var(--dark-2);
}

.compliance-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark-2);
    margin-bottom: 12px;
}

.compliance-card.featured h3 {
    color: var(--white);
}

.compliance-card > p {
    font-size: 15px;
    color: var(--gray-2);
    line-height: 1.7;
    margin-bottom: 20px;
}

.compliance-card.featured > p {
    color: var(--gray-4);
}

.compliance-card ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.compliance-card li {
    position: relative;
    padding-left: 22px;
    font-size: 14px;
    color: var(--gray-1);
}

.compliance-card.featured li {
    color: var(--gray-4);
}

.compliance-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 900;
}

/* Korea Cases */
.korea-cases {
    margin-top: 60px;
}

.korea-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.korea-case-card {
    padding: 28px;
    background: var(--white);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--secondary);
    box-shadow: var(--shadow-sm);
    transition: all var(--tr-base);
}

.korea-case-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.case-industry {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.korea-case-card p {
    font-size: 15px;
    color: var(--gray-1);
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.case-meta {
    font-size: 13px;
    color: var(--gray-3);
    font-weight: 500;
}

/* Pricing Plans */
.pricing-section {
    background: var(--white);
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
}

.plan-card {
    position: relative;
    padding: 40px 32px;
    background: var(--white);
    border: 2px solid var(--gray-5);
    border-radius: var(--radius-xl);
    transition: all var(--tr-base);
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.plan-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, var(--primary-soft) 0%, var(--white) 100%);
    transform: scale(1.03);
}

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

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--primary);
    color: var(--dark-2);
    font-size: 12px;
    font-weight: 800;
    border-radius: 100px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(75, 215, 131, 0.4);
}

.plan-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.plan-price {
    font-size: 32px;
    font-weight: 900;
    color: var(--dark-2);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.plan-desc {
    font-size: 14px;
    color: var(--gray-2);
    line-height: 1.5;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-5);
}

.plan-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.plan-features li {
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    color: var(--gray-1);
    line-height: 1.5;
}

.plan-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
}

.plan-features li::after {
    content: '✓';
    position: absolute;
    left: 3px;
    top: 3px;
    color: var(--dark-2);
    font-size: 9px;
    font-weight: 900;
}

/* ROI Calculator */
.roi-calculator {
    background: linear-gradient(135deg, #000000 0%, #050505 100%);
    color: var(--white);
    padding: 56px;
    border-radius: var(--radius-xl);
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.roi-calculator::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(75, 215, 131, 0.15) 0%, transparent 70%);
    filter: blur(60px);
}

.roi-content {
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.roi-header {
    margin-bottom: 32px;
}

.roi-header h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-top: 12px;
}

.roi-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.roi-input label {
    display: block;
    font-size: 14px;
    color: var(--gray-3);
    margin-bottom: 12px;
    font-weight: 500;
}

.roi-input input[type="range"] {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    margin-bottom: 12px;
}

.roi-input input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 12px rgba(75, 215, 131, 0.6);
    border: 2px solid var(--white);
    transition: transform var(--tr-fast);
}

.roi-input input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.roi-input input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid var(--white);
}

.roi-input output {
    display: inline-block;
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
}

.roi-results {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.roi-result-card {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(75, 215, 131, 0.2);
}

.roi-label {
    font-size: 13px;
    color: var(--gray-3);
    margin-bottom: 8px;
}

.roi-value {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.roi-value span {
    font-size: 16px;
    color: var(--gray-3);
    margin-left: 4px;
    font-weight: 600;
}

/* Comparison Table */
.comparison-block {
    margin-top: 40px;
}

.comparison-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid var(--gray-5);
}

.comparison-table th {
    background: var(--gray-6);
    font-weight: 700;
    color: var(--dark-2);
    font-size: 14px;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--gray-1);
}

.comparison-table .invicti-col {
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-weight: 700;
}

.comparison-table thead .invicti-col {
    background: var(--primary);
    color: var(--dark-2);
}

.comparison-table tbody tr:hover {
    background: rgba(75, 215, 131, 0.04);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-note {
    font-size: 13px;
    color: var(--gray-3);
    text-align: center;
    margin-top: 16px;
}

/* Why Section */
.why-section {
    background: linear-gradient(180deg, var(--gray-6) 0%, var(--white) 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
}

.why-card {
    padding: 48px 32px;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-5);
    text-align: center;
    transition: all var(--tr-base);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.why-card.highlight {
    background: linear-gradient(135deg, #060606, #101820);
    color: var(--white);
    border-color: var(--primary);
}

.why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-soft), rgba(93, 64, 189, 0.08));
    color: var(--primary-dark);
    border-radius: var(--radius-lg);
    transition: all var(--tr-base);
}

.why-card.highlight .why-icon {
    background: linear-gradient(135deg, rgba(75, 215, 131, 0.15), rgba(93, 64, 189, 0.15));
    color: var(--primary);
    border: 1px solid rgba(75, 215, 131, 0.3);
}

.why-card:hover .why-icon {
    transform: scale(1.05);
}

.why-stat {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.why-stat span {
    color: var(--secondary);
}

.why-card.highlight .why-stat {
    color: var(--primary);
}

.why-card.highlight .why-stat span {
    color: var(--primary-pale);
}

.why-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark-2);
    margin-bottom: 12px;
}

.why-card.highlight h3 {
    color: var(--white);
}

.why-card p {
    font-size: 14px;
    color: var(--gray-2);
    line-height: 1.6;
}

.why-card.highlight p {
    color: var(--gray-4);
}

/* Differentiators */
.differentiators {
    margin-top: 60px;
}

.diff-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.diff-item {
    position: relative;
    padding: 32px 32px 32px 100px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-5);
    transition: all var(--tr-base);
}

.diff-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.diff-number {
    position: absolute;
    top: 50%;
    left: 28px;
    transform: translateY(-50%);
    font-size: 56px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.diff-item h4 {
    font-size: 19px;
    font-weight: 800;
    color: var(--dark-2);
    margin-bottom: 8px;
}

.diff-item p {
    font-size: 14px;
    color: var(--gray-2);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #000000 0%, #050505 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(75, 215, 131, 0.15) 0%, transparent 70%);
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-section .section-title {
    color: var(--white);
}

.contact-section .section-subtitle {
    color: var(--gray-3);
}

.section-tag.light {
    background: rgba(75, 215, 131, 0.15);
    color: var(--primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.contact-card {
    display: block;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--white);
    text-align: center;
    transition: all var(--tr-base);
}

.contact-card:hover {
    background: rgba(75, 215, 131, 0.08);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.contact-card.featured {
    background: var(--primary);
    color: var(--dark-2);
    border-color: var(--primary);
}

.contact-card.featured:hover {
    background: #5BE893;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(75, 215, 131, 0.4);
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    background: rgba(75, 215, 131, 0.1);
    color: var(--primary);
    border-radius: var(--radius-md);
    border: 1px solid rgba(75, 215, 131, 0.25);
    transition: all var(--tr-base);
}

.contact-card.featured .contact-icon {
    background: var(--dark-2);
    color: var(--primary);
    border-color: rgba(0, 0, 0, 0.2);
}

.contact-card:hover .contact-icon {
    transform: scale(1.05);
}

.contact-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

.contact-card > p {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--gray-3);
}

.contact-card.featured > p {
    color: var(--dark-3);
}

.contact-link {
    display: inline-block;
    font-weight: 700;
    color: var(--primary);
    transition: all var(--tr-base);
}

.contact-card.featured .contact-link {
    color: var(--dark-2);
}

.contact-card:hover .contact-link {
    transform: translateX(4px);
}

/* Contact Form */
.contact-form {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
}

.form-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 28px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    font-size: 13px;
    color: var(--gray-3);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: inherit;
    font-size: 15px;
    transition: all var(--tr-base);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(75, 215, 131, 0.15);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--dark-2);
    color: var(--white);
}

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

.form-consent {
    margin-bottom: 24px;
}

.form-consent label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-4);
    cursor: pointer;
}

.form-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

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

/* Footer Simple */
.footer-simple {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--dark-3);
    margin-bottom: 30px;
}

.footer-tagline {
    margin-top: 16px;
    font-size: 14px;
    color: var(--gray-3);
    line-height: 1.6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.footer-contact-item {
    text-align: right;
}

.footer-contact-item strong {
    display: block;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.footer-contact-item span {
    font-size: 13px;
    color: var(--gray-3);
}

/* Responsive overrides for new sections */
@media (max-width: 1024px) {
    .role-grid,
    .platform-overview,
    .roi-controls,
    .diff-list,
    .footer-simple {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .role-card {
        grid-template-columns: 1fr;
    }

    .role-image {
        height: 200px;
    }

    .footer-contact {
        align-items: flex-start;
    }

    .footer-contact-item {
        text-align: left;
    }

    .platform-overview {
        padding: 32px;
    }

    .roi-calculator {
        padding: 32px;
    }
}

@media (max-width: 1024px) {
    .integrations-categories,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .integrations-categories,
    .cta-benefits {
        grid-template-columns: 1fr;
    }

    .proof-container {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .proof-title {
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 28px;
    }

    .plan-card.featured {
        transform: none;
    }

    .plan-card.featured:hover {
        transform: translateY(-6px);
    }

    .diff-item {
        padding: 24px 24px 24px 80px;
    }

    .diff-number {
        font-size: 40px;
        left: 20px;
    }
}

/* Print */
@media print {
    .top-banner, .header, .scroll-top, .mobile-menu {
        display: none;
    }
}
