/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --primary-dark: #000000;
    --secondary-color: #2c3e50;
    --accent-color: #1e3a8a;
    --accent-light: #3b82f6;
    --accent-dark: #172554;
    --text-color: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-warm: #faf8f5;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    --gradient-blue: linear-gradient(135deg, #1e3a8a 0%, #172554 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

/* Floating Shapes Animation */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: var(--gradient);
    opacity: 0.03;
    border-radius: 50%;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: -100px;
    animation: float1 20s infinite ease-in-out;
}

.shape-2 {
    width: 300px;
    height: 300px;
    top: 50%;
    right: -50px;
    animation: float2 15s infinite ease-in-out;
}

.shape-3 {
    width: 500px;
    height: 500px;
    bottom: -100px;
    left: 30%;
    animation: float3 25s infinite ease-in-out;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(50px, 80px) rotate(180deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, -50px) rotate(-180deg); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-50px, 50px) rotate(180deg); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    background-image: url('logo_coryn.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    width: 600px;
    height: 140px;
    text-indent: -9999px;
    transition: all 0.3s ease;
    display: block;
    margin: -40px 0;
}

.logo:hover {
    opacity: 0.7;
    transform: scale(1.02);
}

.cta-button-nav {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.cta-button-nav:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* Hero Section - Modern Redesign */
.hero {
    position: relative;
    min-height: 140vh;
    display: flex;
    align-items: center;
    padding: 100px 0 280px;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1629 100%);
    overflow: hidden;
}

/* Animated Background */
.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.6) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.5) 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
    animation-delay: 7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.4) 0%, transparent 70%);
    top: 50%;
    right: 20%;
    animation-delay: 14s;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 30px) scale(0.9); }
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Content */
.hero-left {
    animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 32px;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
}

.badge-icon {
    font-size: 18px;
    animation: pulse 2s ease-in-out infinite;
}

.badge-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
}

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

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 520px;
}

/* CTA Buttons */
.hero-cta-wrapper {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-btn-primary:hover::before {
    left: 100%;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Stats Cards */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-3px);
}

.stat-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    color: #60a5fa;
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 24px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Right Visual */
.hero-right {
    position: relative;
    animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-visual-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
}

.hero-main-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(30, 58, 138, 0.3));
    filter: blur(30px);
    z-index: -1;
    opacity: 0.6;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: floatElement 4s ease-in-out infinite;
}

.element-1 {
    top: 10%;
    left: -50px;
    animation-delay: 0s;
}

.element-2 {
    top: 45%;
    right: -50px;
    animation-delay: 1.5s;
}

.element-3 {
    bottom: 15%;
    left: -40px;
    animation-delay: 3s;
}

@keyframes floatElement {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.element-icon {
    font-size: 24px;
}

.element-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.element-text strong {
    font-size: 18px;
    font-weight: 800;
    color: var(--accent-color);
}

.element-text span {
    font-size: 12px;
    color: var(--text-light);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: bounce 2s infinite;
    z-index: 10;
}

.scroll-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 4px;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 24px; }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.08), rgba(59, 130, 246, 0.08));
    border-radius: 50px;
    border: 1px solid rgba(30, 58, 138, 0.15);
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Process Section */
.process {
    padding: 80px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f0f5ff 50%, #e0ebff 100%);
    position: relative;
    z-index: 1;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(30, 58, 138, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.process-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.process-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(30, 58, 138, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.process-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.process-item:hover::before {
    transform: scaleX(1);
}

.process-item:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.process-item.reverse {
    grid-template-columns: 1fr 1fr;
}

.process-item.reverse .process-content {
    order: 2;
}

.process-item.reverse .process-image {
    order: 1;
}

.process-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.process-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.25);
    transition: all 0.3s ease;
}

.process-item:hover .process-icon {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 12px 32px rgba(30, 58, 138, 0.35);
}

.process-icon svg {
    width: 35px;
    height: 35px;
}

.process-step {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.process-content h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--secondary-color);
    line-height: 1.3;
}

.process-content p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

.process-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.process-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Benefits Section */
.benefits {
    padding: 100px 20px;
    background: linear-gradient(180deg, #e0ebff 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    z-index: 1;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 90% 20%, rgba(59, 130, 246, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 10% 80%, rgba(30, 58, 138, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.benefits-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-visual {
    position: relative;
    height: 600px;
}

.dashboard-showcase {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-main {
    width: 85%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    border: 8px solid #2c3e50;
}

.dashboard-mobile {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 35%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 2;
    border: 6px solid #1a1a1a;
    animation: floatMobile 4s infinite ease-in-out;
}

@keyframes floatMobile {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 3s infinite ease-in-out;
}

.card-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    top: 45%;
    left: -30px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 15%;
    right: -10px;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.card-icon {
    font-size: 28px;
}

.card-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-color);
    white-space: nowrap;
}

.benefits-content {
    text-align: left;
}

.benefits-content .section-title {
    text-align: left;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(59, 130, 246, 0.05);
    transform: translateX(10px);
}

.benefit-icon-wrap {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon-wrap {
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 12px 28px rgba(30, 58, 138, 0.3);
}

.benefit-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.benefit-text p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

/* Pricing & Support Section */
.pricing-support {
    padding: 100px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #e8eef5 100%);
    position: relative;
    z-index: 1;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 60px;
}

.support-card {
    background: var(--bg-light);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.support-card.highlight {
    border-color: transparent;
    background: var(--white);
    box-shadow: 0 15px 50px rgba(37, 99, 235, 0.12);
    position: relative;
    overflow: hidden;
}

.support-card.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-blue);
}

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

.support-icon-large {
    width: 90px;
    height: 90px;
    background: var(--gradient-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.support-card h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.support-price {
    font-size: 18px;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 30px;
}

.support-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.support-features li {
    padding: 12px 0;
    color: var(--text-color);
    font-size: 15px;
    position: relative;
    padding-left: 30px;
    line-height: 1.5;
}

.support-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 900;
    font-size: 18px;
}

.post-sale-emphasis {
    max-width: 900px;
    margin: 0 auto 40px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    border-radius: 24px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 15px 50px rgba(30, 58, 138, 0.3);
    position: relative;
    overflow: hidden;
}

.post-sale-emphasis::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.emphasis-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.emphasis-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.emphasis-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.development-note {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-left: 4px solid var(--accent-color);
    border-radius: 12px;
    padding: 24px 30px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.note-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.development-note p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.development-note strong {
    color: var(--accent-color);
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

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

.section-tag.light {
    color: var(--accent-light);
    border-color: rgba(96, 165, 250, 0.3);
}

.contact-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(96, 165, 250, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    flex-shrink: 0;
}

.contact-detail-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-detail-item p {
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 16px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

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

.contact-form .cta-button-primary {
    width: 100%;
    margin-top: 10px;
    font-size: 16px;
    display: inline-block;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    border: none;
    cursor: pointer;
    text-align: center;
    animation: none;
}

.contact-form .cta-button-primary:hover {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
    padding: 30px 20px;
    position: relative;
    z-index: 1;
}

.footer p {
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

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

.cta-button-primary {
    animation: pulse 2s ease-in-out infinite;
}

.cta-button-primary:hover {
    animation: none;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-container {
        gap: 50px;
    }

    .hero-visual-wrapper {
        height: 500px;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 30px;
    }

    .hero-left {
        text-align: center;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-cta-wrapper {
        justify-content: center;
    }

    .hero-stats-grid {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-visual-wrapper {
        height: 450px;
    }

    .floating-element {
        display: none;
    }

    .benefits-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .benefits-visual {
        height: 400px;
    }

    .benefits-content .section-title {
        text-align: center;
    }

    .process-item,
    .process-item.reverse {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 25px;
    }

    .process-item.reverse .process-content,
    .process-item.reverse .process-image {
        order: initial;
    }

    .process {
        padding: 60px 20px;
    }

    .process-grid {
        gap: 30px;
    }

    .process-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 20px;
        min-height: 210vh;
    }

    .hero-container {
        padding: 60px 20px;
        gap: 60px;
    }

    .hero-badge {
        margin-bottom: 24px;
    }

    .hero-title {
        font-size: clamp(28px, 7vw, 42px);
        margin-bottom: 24px;
    }

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

    .hero-cta-wrapper {
        flex-direction: column;
        width: 100%;
        margin-bottom: 40px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 12px;
    }

    .stat-card {
        padding: 14px;
    }

    .hero-visual-wrapper {
        height: 300px;
    }

    .hero-gradient-orb {
        filter: blur(60px);
    }

    .orb-1 {
        width: 400px;
        height: 400px;
    }

    .orb-2 {
        width: 350px;
        height: 350px;
    }

    .orb-3 {
        width: 300px;
        height: 300px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 30px;
    }

    .floating-card {
        display: none;
    }

    .benefits-visual {
        height: 300px;
    }

    .contact-title {
        font-size: 28px;
    }

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

    .post-sale-emphasis {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .emphasis-content h3 {
        font-size: 20px;
    }

    .development-note {
        padding: 20px;
    }
}
