/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

:root {
    --bg-primary: #1a2838;
    --bg-secondary: #2a4a6f;
    --bg-dark: #14202d;
    --bg-darker: #1e3447;
    --text-main: #f0f2f5;
    --text-white: #ffffff;
    --text-muted: rgba(240, 242, 245, 0.7);
    --accent-blue: #3d8bd9;
    --accent-soft-blue: #5099e0;
    --accent-violet: #4a92db;
    --accent-pink: #3d8bd9;
    --gray-500: #9ca3af;
    --red-900: rgba(127, 29, 29, 0.3);
    --border-color: #3a5f8a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-main);
    line-height: 1.9;
    overflow-x: hidden;
    font-size: 26px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Portrait Mode - Handy hochkant */
@media (max-width: 767px) and (orientation: portrait) {
    body {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }
}

/* Landscape Mode - Handy quer */
@media (max-width: 767px) and (orientation: landscape) {
    body {
        font-size: 18px;
    }
}

@media (min-width: 768px) {
    body {
        font-size: 19px;
        line-height: 1.7;
    }
}

@media (min-width: 1024px) {
    body {
        font-size: 18px;
        line-height: 1.6;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), 
                transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-80px) scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), 
                transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(80px) scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), 
                transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8) rotateX(10deg);
    transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), 
                transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1) rotateX(0deg);
}

.stagger-delay-1 { transition-delay: 0.15s; }
.stagger-delay-2 { transition-delay: 0.3s; }
.stagger-delay-3 { transition-delay: 0.45s; }
.stagger-delay-4 { transition-delay: 0.6s; }

/* ===== RIPPLE EFFECT ===== */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

::selection {
    background-color: #3d8bd9;
    color: white;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

@media (max-width: 767px) and (orientation: portrait) {
    .container {
        padding: 0 1.5rem !important;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* ===== HEADER / NAVIGATION ===== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(26, 40, 56, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 767px) and (orientation: portrait) {
    .navbar {
        height: 70px !important;
        padding: 0 1.5rem !important;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-image {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

@media (max-width: 767px) and (orientation: portrait) {
    .logo-image {
        height: 38px !important;
    }
}

@media (min-width: 768px) {
    .logo-image {
        height: 42px;
    }
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3d8bd9, #4a92db);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(61, 139, 217, 0.4);
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: -0.5px;
    color: var(--text-white);
}

@media (max-width: 767px) and (orientation: portrait) {
    .logo-text {
        font-size: 1.125rem !important;
    }
}

@media (max-width: 767px) and (orientation: landscape) {
    .logo-text {
        font-size: 1.375rem;
    }
}

/* Button im Navbar auf Mobile kleiner */
@media (max-width: 767px) and (orientation: portrait) {
    .navbar .btn {
        font-size: 0.8125rem !important;
        padding: 0.625rem 1.125rem !important;
        min-height: 40px !important;
    }
}

.nav-links {
    display: none;
    gap: 2rem;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(229, 231, 235, 0.8);
}

.nav-links a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3d8bd9, #5099e0);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: var(--accent-blue);
}

.nav-links a:hover::after,
.nav-links a.active-link::after {
    width: 100%;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-weight: bold;
    padding: 1.5rem 3rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    font-size: 1.5rem;
    min-height: 70px;
}

@media (max-width: 767px) and (orientation: portrait) {
    .btn {
        font-size: 1rem !important;
        padding: 0.875rem 1.75rem !important;
        min-height: 48px !important;
    }
}

@media (max-width: 767px) and (orientation: landscape) {
    .btn {
        font-size: 1.125rem;
        padding: 1rem 2rem;
        min-height: 50px;
    }
}

@media (min-width: 768px) {
    .btn {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
        min-height: 48px;
    }
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background-color: #3d8bd9;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(61, 139, 217, 0.5);
}

.btn-primary:hover {
    background-color: #5099e0;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 25px rgba(80, 153, 224, 0.7);
}

.btn-secondary {
    background-color: var(--bg-primary);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--bg-secondary);
    transform: translateY(-2px);
    border-color: #3d8bd9;
    box-shadow: 0 4px 12px rgba(61, 139, 217, 0.4);
}

.btn-large {
    padding: 1rem 3rem;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    padding-top: 10rem;
    padding-bottom: 6rem;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

@media (max-width: 767px) and (orientation: portrait) {
    .hero-section {
        padding-top: 7rem !important;
        padding-bottom: 4rem !important;
    }
}

@media (min-width: 768px) {
    .hero-section {
        padding-top: 8rem;
        padding-bottom: 5rem;
    }
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
}

.glow-purple {
    top: 5rem;
    right: 0;
    width: 500px;
    height: 500px;
    background-color: rgba(74, 146, 219, 0.2);
    animation: pulse 4s ease-in-out infinite, float 8s ease-in-out infinite;
}

.glow-blue {
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background-color: rgba(61, 139, 217, 0.15);
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    33% {
        transform: translateY(-20px) translateX(10px);
    }
    66% {
        transform: translateY(10px) translateX(-10px);
    }
}

.hero-content {
    display: grid;
    gap: 3rem;
    align-items: center;
    grid-template-columns: 1fr;
}

@media (max-width: 767px) and (orientation: portrait) {
    .hero-content {
        gap: 2rem !important;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    border-radius: 9999px;
    background-color: rgba(61, 139, 217, 0.15);
    border: 1px solid rgba(61, 139, 217, 0.4);
    color: #5099e0;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

@media (max-width: 767px) and (orientation: portrait) {
    .badge {
        font-size: 0.875rem !important;
        padding: 0.625rem 1rem !important;
        gap: 0.5rem !important;
        margin-bottom: 1.5rem !important;
    }
}

@media (min-width: 768px) {
    .badge {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.5rem;
    }
}

.pulse-dot {
    position: relative;
    display: inline-flex;
    height: 12px;
    width: 12px;
}

@media (max-width: 767px) and (orientation: portrait) {
    .pulse-dot {
        height: 10px !important;
        width: 10px !important;
    }
    
    .pulse-dot::after {
        width: 10px !important;
        height: 10px !important;
    }
}

.pulse-dot::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #5099e0;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
    opacity: 0.75;
}

.pulse-dot::after {
    content: '';
    position: relative;
    display: inline-flex;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #5099e0;
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.hero-text h1 {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--text-white);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: none;
}

@media (max-width: 767px) and (orientation: portrait) {
    .hero-text h1 {
        font-size: 2.25rem !important;
        margin-bottom: 1.25rem !important;
        hyphens: none !important;
        word-break: keep-all !important;
    }
}

@media (min-width: 768px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-text h1 {
        font-size: 4.5rem;
    }
}

.gradient-text {
    background: linear-gradient(90deg, #3d8bd9, #5099e0, #4a92db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.5rem;
    color: rgba(229, 231, 235, 0.7);
    margin-bottom: 2.5rem;
    line-height: 1.9;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 767px) and (orientation: portrait) {
    .hero-description {
        font-size: 1.125rem !important;
        margin-bottom: 1.75rem !important;
    }
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.35rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 767px) and (orientation: portrait) {
    .hero-buttons {
        gap: 1rem !important;
    }
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

/* ===== TECH DEMO ===== */
.tech-demo {
    position: relative;
    background-color: rgba(42, 74, 111, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (max-width: 767px) and (orientation: portrait) {
    .tech-demo {
        padding: 1.5rem !important;
        border-radius: 1rem !important;
    }
}

.tech-demo:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 35px 70px -12px rgba(0, 0, 0, 0.6),
                0 0 50px rgba(61, 139, 217, 0.4);
    border-color: rgba(61, 139, 217, 0.6);
}

.latency-badge {
    position: absolute;
    top: -1rem;
    right: -1rem;
    background-color: var(--bg-primary);
    border: 1px solid var(--accent-violet);
    padding: 0.75rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: var(--accent-pink);
    animation: badge-pulse 2s ease-in-out infinite;
}

@media (max-width: 767px) and (orientation: portrait) {
    .latency-badge {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.75rem !important;
        gap: 0.375rem !important;
    }
}

@keyframes badge-pulse {
    0%, 100% {
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3),
                    0 0 0 0 rgba(74, 146, 219, 0.6);
    }
    50% {
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3),
                    0 0 20px 5px rgba(74, 146, 219, 0);
    }
}

.demo-interface {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
}

@media (max-width: 767px) and (orientation: portrait) {
    .demo-interface {
        font-size: 0.875rem !important;
    }
}

.agent-status {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--accent-soft-blue);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 767px) and (orientation: portrait) {
    .agent-status {
        gap: 0.75rem !important;
        padding-bottom: 0.75rem !important;
        margin-bottom: 0.75rem !important;
    }
}

.status-active {
    color: #4a92db;
}

.conversation {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (max-width: 767px) and (orientation: portrait) {
    .conversation {
        gap: 0.75rem !important;
    }
}

.message {
    background-color: rgba(30, 52, 71, 0.6);
    padding: 0.75rem;
    border-radius: 0.5rem;
}

@media (max-width: 767px) and (orientation: portrait) {
    .message {
        padding: 0.75rem !important;
        border-radius: 0.5rem !important;
    }
}

.customer-message {
    border-left: 2px solid var(--accent-blue);
}

.agent-message {
    background-color: var(--bg-primary);
    border-left: 2px solid #5099e0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.message-label {
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
}

@media (max-width: 767px) and (orientation: portrait) {
    .message-label {
        font-size: 0.75rem !important;
        margin-bottom: 0.25rem !important;
    }
}

.customer-message .message-label {
    color: var(--accent-blue);
}

.agent-message .message-label {
    color: #5099e0;
}

.message-text {
    color: var(--text-main);
}

.agent-message .message-text {
    color: var(--text-white);
}

.tags {
    margin-top: 0.5rem;
    display: flex;
    gap: 0.5rem;
}

@media (max-width: 767px) and (orientation: portrait) {
    .tags {
        margin-top: 0.5rem !important;
        gap: 0.5rem !important;
    }
}

.tag {
    padding: 0.25rem 0.5rem;
    background-color: var(--bg-secondary);
    border-radius: 0.25rem;
    font-size: 0.625rem;
    color: var(--accent-soft-blue);
}

@media (max-width: 767px) and (orientation: portrait) {
    .tag {
        padding: 0.25rem 0.5rem !important;
        font-size: 0.625rem !important;
        border-radius: 0.25rem !important;
    }
}

/* ===== STATS SECTION ===== */
.stats-section {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background-color: rgba(26, 40, 56, 0.5);
    padding: 4rem 0;
}

@media (max-width: 767px) and (orientation: portrait) {
    .stats-section {
        padding: 3rem 0 !important;
    }
}

@media (min-width: 768px) {
    .stats-section {
        padding: 2.5rem 0;
    }
}

.stats-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    text-align: center;
}

@media (max-width: 767px) and (orientation: portrait) {
    .stats-grid {
        gap: 2rem !important;
    }
}

@media (min-width: 768px) {
    .stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 2rem;
    }
}

.stat {
    transition: transform 0.3s ease;
    width: 100%;
    padding: 1.5rem;
}

@media (max-width: 767px) and (orientation: portrait) {
    .stat {
        padding: 1rem !important;
    }
}

@media (min-width: 768px) {
    .stat {
        width: auto;
        padding: 0;
    }
}

.stat:hover {
    transform: scale(1.1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--text-white);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    word-wrap: break-word;
}

@media (max-width: 767px) and (orientation: portrait) {
    .stat-number {
        font-size: 3rem !important;
        margin-bottom: 0.75rem !important;
    }
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 2.75rem;
        margin-bottom: 0.5rem;
    }
}

@media (min-width: 1024px) {
    .stat-number {
        font-size: 2.25rem;
    }
}

.stat:hover .stat-number {
    color: var(--accent-blue);
    text-shadow: 0 0 20px rgba(61, 139, 217, 0.7);
}

.stat-label {
    color: var(--accent-soft-blue);
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 767px) and (orientation: portrait) {
    .stat-label {
        font-size: 0.875rem !important;
    }
}

@media (min-width: 768px) {
    .stat-label {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .stat-label {
        font-size: 0.875rem;
    }
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    padding: 8rem 0;
}

@media (max-width: 767px) and (orientation: portrait) {
    .benefits-section {
        padding: 10rem 0 !important;
    }
}

@media (min-width: 768px) {
    .benefits-section {
        padding: 6rem 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

@media (max-width: 767px) and (orientation: portrait) {
    .section-header {
        margin-bottom: 6rem !important;
    }
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 4rem;
    }
}

.section-subtitle {
    color: #5099e0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

@media (max-width: 767px) and (orientation: portrait) {
    .section-subtitle {
        font-size: 0.875rem !important;
        margin-bottom: 0.75rem !important;
        letter-spacing: 0.05em !important;
    }
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--text-white);
    line-height: 1.35;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

@media (max-width: 767px) and (orientation: portrait) {
    .section-title {
        font-size: 2rem !important;
        line-height: 1.3 !important;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }
}

.comparison-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr;
}

@media (max-width: 767px) and (orientation: portrait) {
    .comparison-grid {
        gap: 3.5rem !important;
    }
}

@media (min-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

.comparison-card {
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (max-width: 767px) and (orientation: portrait) {
    .comparison-card {
        padding: 2rem !important;
        border-radius: 1rem !important;
    }
}

@media (min-width: 768px) {
    .comparison-card {
        padding: 2rem;
    }
}

.comparison-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.traditional {
    background-color: rgba(42, 74, 111, 0.25);
    border-color: var(--red-900);
}

.ai-way {
    background: linear-gradient(to bottom right, var(--bg-secondary), var(--bg-primary));
    border-color: rgba(61, 139, 217, 0.5);
    box-shadow: 0 0 40px rgba(61, 139, 217, 0.2);
}

.ai-way:hover {
    box-shadow: 0 0 60px rgba(61, 139, 217, 0.35),
                0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(61, 139, 217, 0.7);
}

.recommended-badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1rem;
    background-color: #3d8bd9;
    border-bottom-left-radius: 1rem;
    color: #ffffff;
    font-weight: bold;
    font-size: 0.75rem;
}

@media (max-width: 767px) and (orientation: portrait) {
    .recommended-badge {
        padding: 0.625rem 1rem !important;
        font-size: 0.75rem !important;
        border-bottom-left-radius: 0.75rem !important;
    }
}

.comparison-card h4 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

@media (max-width: 767px) and (orientation: portrait) {
    .comparison-card h4 {
        font-size: 1.375rem !important;
        margin-bottom: 1.25rem !important;
        gap: 0.625rem !important;
    }
}

@media (min-width: 768px) {
    .comparison-card h4 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
}

.traditional h4 {
    color: var(--text-main);
}

.traditional h4 svg {
    stroke: var(--gray-500);
}

.ai-way h4 {
    color: var(--text-white);
}

.ai-way h4 svg {
    stroke: var(--accent-blue);
}

.comparison-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 1.125rem;
}

@media (max-width: 767px) and (orientation: portrait) {
    .comparison-card ul {
        gap: 1rem !important;
        font-size: 1rem !important;
    }
}

@media (min-width: 768px) {
    .comparison-card ul {
        gap: 1rem;
        font-size: 1rem;
    }
}

.comparison-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

@media (max-width: 767px) and (orientation: portrait) {
    .comparison-card li {
        gap: 0.625rem !important;
    }
}

.traditional ul {
    color: var(--gray-500);
}

.x-mark {
    color: #ef4444;
    margin-top: 0.25rem;
}

.ai-way li svg {
    color: var(--accent-violet);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.ai-way li {
    color: var(--text-main);
}

.ai-way li strong {
    color: var(--text-white);
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 6rem 0;
    background-color: var(--bg-dark);
}

@media (max-width: 767px) and (orientation: portrait) {
    .features-section {
        padding: 8rem 0 !important;
    }
}

.section-intro {
    margin-bottom: 4rem;
}

@media (max-width: 767px) and (orientation: portrait) {
    .section-intro {
        margin-bottom: 5rem !important;
    }
}

.section-intro h2 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

@media (max-width: 767px) and (orientation: portrait) {
    .section-intro h2 {
        font-size: 1.875rem !important;
        margin-bottom: 1.25rem !important;
    }
}

@media (min-width: 768px) {
    .section-intro h2 {
        font-size: 3rem;
    }
}

.highlight-blue {
    color: var(--accent-soft-blue);
}

.section-intro p {
    color: rgba(229, 231, 235, 0.6);
    max-width: 100%;
    font-size: 1.125rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 767px) and (orientation: portrait) {
    .section-intro p {
        font-size: 1rem !important;
    }
}

@media (min-width: 768px) {
    .section-intro p {
        max-width: 48rem;
    }
}

.features-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr;
}

@media (max-width: 767px) and (orientation: portrait) {
    .features-grid {
        gap: 3.5rem !important;
    }
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.feature-card {
    padding: 2.25rem;
    background-color: rgba(42, 74, 111, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

@media (max-width: 767px) and (orientation: portrait) {
    .feature-card {
        padding: 1.75rem !important;
        border-radius: 0.75rem !important;
    }
}

@media (min-width: 768px) {
    .feature-card {
        padding: 1.5rem;
    }
}

.feature-card:hover {
    border-color: rgba(80, 153, 224, 0.7);
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4),
                0 0 40px rgba(61, 139, 217, 0.4);
    background-color: rgba(42, 74, 111, 0.5);
}

.feature-icon {
    margin-bottom: 1rem;
    width: 56px;
    height: 56px;
    background-color: var(--bg-primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 767px) and (orientation: portrait) {
    .feature-icon {
        width: 48px !important;
        height: 48px !important;
        margin-bottom: 1rem !important;
    }
    
    .feature-icon svg {
        width: 28px !important;
        height: 28px !important;
    }
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 25px -3px rgba(0, 0, 0, 0.4);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.icon-blue { color: var(--accent-blue); }
.icon-violet { color: var(--accent-violet); }
.icon-pink { color: var(--accent-pink); }
.icon-soft-blue { color: var(--accent-soft-blue); }

.feature-card h3 {
    font-size: 1.625rem;
    font-weight: bold;
    color: var(--text-white);
    margin-bottom: 1rem;
    transition: color 0.3s;
}

@media (max-width: 767px) and (orientation: portrait) {
    .feature-card h3 {
        font-size: 1.25rem !important;
        margin-bottom: 0.75rem !important;
    }
}

@media (min-width: 768px) {
    .feature-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
}

.feature-card:hover h3 {
    color: var(--accent-soft-blue);
}

.feature-card p {
    color: rgba(229, 231, 235, 0.7);
    line-height: 1.8;
    font-size: 1.1875rem;
}

@media (max-width: 767px) and (orientation: portrait) {
    .feature-card p {
        font-size: 0.9375rem !important;
    }
}

@media (min-width: 768px) {
    .feature-card p {
        font-size: 0.9375rem;
        line-height: 1.7;
    }
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--bg-primary), var(--bg-darker));
}

@media (max-width: 767px) and (orientation: portrait) {
    .faq-section {
        padding: 8rem 0 !important;
    }
}

.faq-grid {
    max-width: 56rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 767px) and (orientation: portrait) {
    .faq-item {
        border-radius: 1.5rem !important;
    }
}

.faq-item:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

@media (max-width: 767px) and (orientation: portrait) {
    .faq-question {
        padding: 1.5rem !important;
    }
}

.faq-question h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
    flex: 1;
}

@media (max-width: 767px) and (orientation: portrait) {
    .faq-question h4 {
        font-size: 1rem !important;
    }
}

.faq-icon {
    flex-shrink: 0;
    color: var(--accent-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 2rem;
}

@media (max-width: 767px) and (orientation: portrait) {
    .faq-answer {
        padding: 0 1.5rem !important;
    }
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

@media (max-width: 767px) and (orientation: portrait) {
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem 1.5rem !important;
    }
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 767px) and (orientation: portrait) {
    .faq-answer p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(to top, var(--bg-dark), var(--bg-primary));
}

@media (max-width: 767px) and (orientation: portrait) {
    .cta-section {
        padding: 7rem 0 !important;
    }
}

.cta-content {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

@media (max-width: 767px) and (orientation: portrait) {
    .cta-content h2 {
        font-size: 2rem !important;
        margin-bottom: 1.25rem !important;
    }
}

@media (min-width: 768px) {
    .cta-content h2 {
        font-size: 3rem;
    }
}

.cta-content > p {
    font-size: 1.25rem;
    color: rgba(229, 231, 235, 0.7);
    margin-bottom: 2.5rem;
}

@media (max-width: 767px) and (orientation: portrait) {
    .cta-content > p {
        font-size: 1.125rem !important;
        margin-bottom: 2rem !important;
    }
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 767px) and (orientation: portrait) {
    .cta-buttons {
        gap: 1rem !important;
        margin-bottom: 1.25rem !important;
    }
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--border-color);
}

@media (max-width: 767px) and (orientation: portrait) {
    .cta-note {
        margin-top: 1.25rem !important;
        font-size: 0.875rem !important;
    }
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0;
}

@media (max-width: 767px) and (orientation: portrait) {
    footer {
        padding: 2.5rem 0 !important;
    }
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (max-width: 767px) and (orientation: portrait) {
    .footer-content {
        padding: 0 1.5rem !important;
        gap: 1.25rem !important;
    }
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 767px) and (orientation: portrait) {
    .footer-logo-image {
        height: 32px !important;
    }
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #3d8bd9, #4a92db);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) and (orientation: portrait) {
    .footer-logo-icon {
        width: 32px !important;
        height: 32px !important;
    }
    
    .footer-logo-icon svg {
        width: 20px !important;
        height: 20px !important;
    }
}

.footer-logo-icon svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--text-white);
}

@media (max-width: 767px) and (orientation: portrait) {
    .footer-logo-text {
        font-size: 1.125rem !important;
    }
}

.footer-copyright {
    color: rgba(229, 231, 235, 0.5);
    font-size: 0.875rem;
}

@media (max-width: 767px) and (orientation: portrait) {
    .footer-copyright {
        font-size: 0.875rem !important;
    }
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    color: rgba(229, 231, 235, 0.7);
}

@media (max-width: 767px) and (orientation: portrait) {
    .footer-links {
        gap: 1.25rem !important;
        font-size: 0.875rem !important;
    }
}

.footer-links a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-blue);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover {
    color: var(--accent-blue);
    transform: translateY(-2px);
}

.footer-links a:hover::after {
    width: 100%;
}
