/* =============================================
   Cupaki Management System - Presentation Page
   Premium Sales Landing Page
   ============================================= */

:root {
    --teal: #4ea0ac;
    --teal-dark: #3d8a95;
    --teal-light: #6bb8c3;
    --teal-bg: #eef7f8;
    --brown: #947c73;
    --brown-dark: #7a645c;
    --brown-light: #b09a92;
    --brown-bg: #f5f1ef;
    --white: #ffffff;
    --off-white: #fafafa;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --green: #10b981;
    --green-bg: #ecfdf5;
    --red: #ef4444;
    --red-bg: #fef2f2;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Manrope', 'Inter', sans-serif;
    line-height: 1.2;
    font-weight: 800;
}

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

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

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

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

.nav-cta {
    background: var(--teal);
    color: white;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
}

.nav-cta:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(78,160,172,0.3);
}

/* =============================================
   Buttons
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: var(--teal);
    color: white;
    box-shadow: 0 2px 8px rgba(78,160,172,0.25);
}

.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(78,160,172,0.35);
}

.btn-secondary {
    background: var(--gray-100);
    color: var(--gray-800);
}

.btn-secondary:hover {
    background: var(--gray-200);
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--gray-800);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

/* =============================================
   Section Labels & Titles
   ============================================= */
.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: var(--teal-bg);
    border-radius: 100px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--gray-900);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    text-align: center;
}

.section-title-left {
    font-size: clamp(32px, 4vw, 44px);
    color: var(--gray-900);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.section-desc {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 640px;
    margin: 0 auto 48px;
    text-align: center;
    line-height: 1.7;
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--white) 0%, var(--teal-bg) 50%, var(--brown-bg) 100%);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--teal);
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--brown);
    bottom: -100px;
    left: -100px;
    animation: float 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--teal);
    top: 40%;
    left: 30%;
    animation: float 15s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(36px, 6vw, 56px);
    color: var(--gray-900);
    margin-bottom: 24px;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.highlight {
    color: var(--teal);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(78,160,172,0.2);
    border-radius: 4px;
    z-index: -1;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-subtitle strong {
    color: var(--gray-900);
}

.hero-ctas {
    display: flex;
    gap: 12px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 32px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--teal);
    letter-spacing: -0.02em;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

/* Hero Visual - Phone Mockup */
.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.phone-mockup {
    perspective: 1000px;
}

.phone-frame {
    width: 280px;
    height: 580px;
    background: var(--gray-900);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-2xl), 0 0 0 2px rgba(255,255,255,0.1);
    transform: rotateY(-8deg) rotateX(2deg);
    transition: transform 0.5s ease;
    position: relative;
}

.phone-frame:hover {
    transform: rotateY(-3deg) rotateX(1deg);
}

.phone-notch {
    width: 120px;
    height: 28px;
    background: var(--gray-900);
    border-radius: 0 0 20px 20px;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--gray-50);
    border-radius: 32px;
    overflow: hidden;
    padding: 40px 16px 16px;
}

.app-header-mock {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 16px;
    color: var(--gray-900);
}

.app-icon-mock {
    width: 24px;
    height: 24px;
}

.app-card-mock {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    color: white;
}

.card-title-mock {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 4px;
}

.card-amount-mock {
    font-size: 28px;
    font-weight: 800;
    font-family: 'Manrope', sans-serif;
    letter-spacing: -0.02em;
}

.card-bar-mock {
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    margin-top: 12px;
    overflow: hidden;
}

.bar-fill-mock {
    height: 100%;
    width: 68%;
    background: white;
    border-radius: 2px;
    animation: barGrow 2s ease-out;
}

@keyframes barGrow {
    from { width: 0; }
    to { width: 68%; }
}

.app-actions-mock {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.action-btn-mock {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 12px 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-700);
}

.action-icon-mock {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px;
}

.action-expense .action-icon-mock {
    background: #fef2f2;
    color: #ef4444;
}

.action-income .action-icon-mock {
    background: #ecfdf5;
    color: #10b981;
}

.action-report .action-icon-mock {
    background: var(--teal-bg);
    color: var(--teal);
}

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

.list-item-mock {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.item-icon-mock {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex-shrink: 0;
}

.item-icon-mock.coffee { background: #fef3c7; }
.item-icon-mock.ice { background: #dbeafe; }
.item-icon-mock.milk { background: #fce7f3; }

.item-text-mock {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.item-name-mock {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-800);
}

.item-cat-mock {
    font-size: 10px;
    color: var(--gray-400);
}

.item-amount-mock {
    font-size: 13px;
    font-weight: 700;
    color: var(--red);
    font-family: 'Manrope', sans-serif;
}

/* =============================================
   Pain Points Section
   ============================================= */
.pain-section {
    padding: 120px 0;
    background: var(--white);
    text-align: center;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.pain-card {
    padding: 32px 24px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    text-align: left;
    transition: all 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-200);
}

.pain-icon {
    width: 56px;
    height: 56px;
    background: #fef2f2;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    margin-bottom: 20px;
}

.pain-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--gray-900);
}

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

/* =============================================
   Solution / Features Section
   ============================================= */
.solution-section {
    padding: 120px 0;
    background: var(--gray-50);
    text-align: center;
}

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

.feature-card {
    padding: 32px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.feature-highlight {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, var(--teal-bg), white);
    border-color: rgba(78,160,172,0.2);
}

.feature-number {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 16px;
    opacity: 0.6;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.feature-card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.6;
}

.feature-visual {
    margin-top: 32px;
}

.mini-calc {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-md);
    max-width: 360px;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 15px;
}

.calc-row.income span:last-child {
    color: var(--green);
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
}

.calc-row.expense span:last-child {
    color: var(--red);
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
}

.calc-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 4px 0;
}

.calc-row.profit {
    font-weight: 700;
    font-size: 18px;
}

.calc-row.profit span:last-child {
    color: var(--teal);
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
}

/* =============================================
   Video Section
   ============================================= */
.video-section {
    padding: 120px 0;
    background: var(--white);
    text-align: center;
}

.video-wrapper {
    max-width: 1100px;
    margin: 48px auto 0;
}

.video-mobile-container,
.video-desktop-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.platform-video-section {
    padding: 120px 0;
    background: var(--gray-50);
    text-align: center;
}

.video-phone-frame {
    position: relative;
    width: 360px;
    max-width: 100%;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-2xl), 0 0 0 2px rgba(255,255,255,0.1);
}

.video-phone-frame::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #000;
    border-radius: 12px;
    z-index: 2;
}

.video-phone-screen {
    border-radius: 28px;
    overflow: hidden;
    background: #000;
}

.mobile-video {
    width: 100%;
    height: auto;
    display: block;
}

.desktop-frame {
    position: relative;
    width: 100%;
    max-width: 1000px;
    background: #1a1a1a;
    border-radius: 16px;
    padding: 10px 10px 36px;
    box-shadow: var(--shadow-2xl), 0 0 0 2px rgba(255,255,255,0.1);
}

.desktop-frame::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #333;
    border-radius: 3px;
}

.desktop-screen {
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.desktop-video {
    width: 100%;
    display: block;
}

.video-caption {
    color: var(--gray-500);
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}

.video-bg-logo {
    width: 300px;
    filter: invert(1);
}

.video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* =============================================
   Benefits Section
   ============================================= */
.benefits-section {
    padding: 120px 0;
    background: var(--gray-50);
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 48px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 28px;
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--gray-100);
    text-align: left;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(78,160,172,0.3);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--teal-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 16px;
    color: var(--gray-900);
    margin-bottom: 4px;
    font-weight: 700;
}

.benefit-content p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* =============================================
   Platform Section
   ============================================= */
.platform-section {
    padding: 120px 0;
    background: var(--white);
    overflow: hidden;
}

.platform-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.platform-text p {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 32px;
}

.platform-features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.platform-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
}

.platform-feature svg {
    color: var(--teal);
    flex-shrink: 0;
}

/* Devices Showcase */
.devices-showcase {
    position: relative;
    min-height: 400px;
}

.device-laptop {
    position: relative;
    z-index: 1;
}

.laptop-frame {
    background: var(--gray-800);
    border-radius: 12px 12px 0 0;
    padding: 8px;
    box-shadow: var(--shadow-xl);
}

.laptop-screen {
    background: var(--gray-50);
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.laptop-base {
    height: 16px;
    background: linear-gradient(to bottom, var(--gray-700), var(--gray-600));
    border-radius: 0 0 6px 6px;
    position: relative;
}

.laptop-base::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 4px;
    background: var(--gray-400);
    border-radius: 0 0 4px 4px;
}

/* Dashboard Mock */
.dashboard-mock {
    display: flex;
    height: 100%;
}

.dash-sidebar {
    width: 48px;
    background: var(--gray-900);
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.dash-logo-mock img {
    width: 24px;
    height: 24px;
    margin-bottom: 12px;
}

.dash-nav-item {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
}

.dash-nav-item.active {
    background: var(--teal);
}

.dash-content {
    flex: 1;
    padding: 16px;
}

.dash-cards-row {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.dash-card-mock {
    flex: 1;
    padding: 10px 12px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dash-card-mock.green { background: var(--green-bg); }
.dash-card-mock.blue { background: var(--teal-bg); }
.dash-card-mock.orange { background: #fff7ed; }

.dash-card-label {
    font-size: 9px;
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
}

.dash-card-val {
    font-size: 14px;
    font-weight: 800;
    font-family: 'Manrope', sans-serif;
    color: var(--gray-900);
}

.dash-chart-mock {
    background: white;
    border-radius: 8px;
    padding: 16px;
    box-shadow: var(--shadow-sm);
    flex: 1;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--teal), var(--teal-light));
    border-radius: 4px 4px 0 0;
    min-height: 10px;
    animation: barRise 1.5s ease-out;
}

@keyframes barRise {
    from { height: 0 !important; }
}

.chart-bar:nth-child(even) {
    background: linear-gradient(to top, var(--brown), var(--brown-light));
}

/* Tablet */
.device-tablet {
    position: absolute;
    right: -40px;
    bottom: -20px;
    z-index: 2;
    width: 200px;
}

.tablet-frame {
    background: var(--gray-800);
    border-radius: 16px;
    padding: 8px;
    box-shadow: var(--shadow-xl);
}

.tablet-screen {
    background: var(--gray-50);
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.tablet-content-mock {
    padding: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tablet-header-mock {
    height: 20px;
    background: var(--gray-200);
    border-radius: 4px;
    margin-bottom: 12px;
    width: 60%;
}

.tablet-chart-mock {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pie-chart-mock {
    width: 100%;
    max-width: 120px;
}

.tablet-list-mock {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tablet-list-item {
    height: 16px;
    background: var(--gray-200);
    border-radius: 4px;
}

.tablet-list-item:nth-child(2) { width: 80%; }
.tablet-list-item:nth-child(3) { width: 60%; }

/* =============================================
   Trust / Social Proof Section
   ============================================= */
.trust-section {
    padding: 120px 0;
    background: var(--gray-50);
}

.trust-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
}

.trust-quote {
    position: relative;
}

.trust-quote svg {
    color: var(--teal);
    margin-bottom: 16px;
}

.trust-quote blockquote {
    font-size: 22px;
    font-weight: 500;
    color: var(--gray-800);
    line-height: 1.6;
    margin-bottom: 32px;
    font-style: italic;
}

.trust-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 15px;
    color: var(--gray-900);
}

.author-info span {
    font-size: 13px;
    color: var(--gray-500);
}

.trust-numbers {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.trust-stat {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

.trust-stat-value {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--teal);
    letter-spacing: -0.02em;
}

.trust-stat-infinity {
    font-size: 56px;
    line-height: 1;
}

.trust-stat-label {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 4px;
    line-height: 1.4;
}

/* =============================================
   Data Privacy Section
   ============================================= */
.privacy-section {
    padding: 120px 0;
    background: var(--gray-900);
    overflow: hidden;
}

.privacy-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 80px;
    align-items: center;
}

.privacy-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-icon {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
}

.shield-icon > svg {
    width: 160px;
    height: 160px;
    opacity: 0.15;
}

.shield-lock {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--teal);
    opacity: 0.9;
}

.shield-lock svg {
    width: 48px;
    height: 48px;
}

.privacy-text .section-title-left {
    color: white;
}

.privacy-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 36px;
}

.privacy-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.privacy-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.privacy-feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(78,160,172,0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    flex-shrink: 0;
}

.privacy-feature strong {
    display: block;
    font-size: 15px;
    color: white;
    margin-bottom: 4px;
}

.privacy-feature p {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
}

/* =============================================
   Pricing Section
   ============================================= */
.pricing-section {
    padding: 120px 0;
    background: var(--white);
    text-align: center;
}

.pricing-desc {
    margin-bottom: 56px;
}

.pricing-single {
    max-width: 720px;
    margin: 0 auto;
}

.pricing-card {
    padding: 40px 36px;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-100);
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
}

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

.pricing-card-single {
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-card-featured {
    background: white;
    border-color: var(--teal);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(78,160,172,0.1);
}

.pricing-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

.pricing-block {
    text-align: center;
}

.pricing-plus {
    font-family: 'Manrope', sans-serif;
    font-size: 32px;
    font-weight: 300;
    color: var(--gray-300);
}

.pricing-coffee-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
    padding: 8px 20px;
    background: var(--teal-bg);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--teal-dark);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

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

.pricing-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 32px 0;
}

.pricing-includes-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
    margin-bottom: 20px;
    text-align: center;
}

.pricing-includes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 40px;
    margin-bottom: 32px;
}

.pricing-badge {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
}

.price-currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-400);
}

.price-value {
    font-family: 'Manrope', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.03em;
    line-height: 1;
}

.price-period {
    font-size: 16px;
    color: var(--gray-400);
    font-weight: 500;
}

.pricing-note {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 28px;
}

.pricing-includes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-includes li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--gray-700);
}

.pricing-includes svg {
    color: var(--teal);
    flex-shrink: 0;
}

.pricing-vat {
    margin-top: 32px;
    font-size: 14px;
    color: var(--gray-400);
}

/* =============================================
   CTA Section
   ============================================= */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a2332 50%, var(--gray-900) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: var(--teal);
    border-radius: 50%;
    opacity: 0.05;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 400px;
    height: 400px;
    background: var(--brown);
    border-radius: 50%;
    opacity: 0.05;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-logo {
    height: 40px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.cta-content p {
    font-size: 17px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 40px;
}

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

/* =============================================
   Footer
   ============================================= */
.footer {
    padding: 160px 0 60px;
    background: var(--gray-900);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 80px;
    margin-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 28px;
}

.footer-logo {
    height: 72px;
    opacity: 0.7;
    filter: invert(1);
}

.footer-left-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-product-name {
    font-size: 28px;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    font-family: 'Manrope', sans-serif;
}

.footer-tagline {
    font-size: 17px;
    color: rgba(255,255,255,0.35);
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-powered-label {
    font-size: 14px;
    color: rgba(255,255,255,0.3);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.softhood-logo {
    height: 64px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.softhood-logo:hover {
    opacity: 1;
}

.footer-softhood-link {
    font-size: 20px;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.footer-softhood-link:hover {
    opacity: 1;
}

.footer-bottom {
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.25);
}

/* =============================================
   Scroll Animations
   ============================================= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* =============================================
   Responsive Design
   ============================================= */

/* Large tablets & small desktops */
@media (max-width: 1100px) {
    .hero-visual {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .platform-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .platform-text {
        text-align: center;
    }

    .section-title-left {
        text-align: center;
    }

    .platform-features-list {
        align-items: center;
    }

    .devices-showcase {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Tablets */
@media (max-width: 900px) {
    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .feature-highlight {
        grid-column: span 1;
        grid-row: span 1;
    }

    .trust-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .trust-numbers {
        flex-direction: row;
    }

    .trust-stat {
        flex: 1;
    }

    .privacy-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .privacy-visual {
        order: -1;
    }

    .privacy-text .section-title-left {
        text-align: center;
    }

    .privacy-desc {
        text-align: center;
    }

    .privacy-feature {
        text-align: left;
    }

    .pricing-includes-grid {
        grid-template-columns: 1fr;
    }

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

/* Mobile */
@media (max-width: 640px) {
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

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

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

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        padding: 20px 24px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

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

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

    .btn {
        padding: 12px 28px;
        font-size: 15px;
    }

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

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

    .trust-numbers {
        flex-direction: column;
    }

    .trust-quote blockquote {
        font-size: 18px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .footer-left {
        flex-direction: column;
        gap: 12px;
    }

    .footer-left-text {
        align-items: center;
    }

    .footer-right {
        flex-direction: column;
        gap: 8px;
    }

    .device-tablet {
        display: none;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-row {
        flex-direction: column;
        gap: 24px;
    }

    .pricing-plus {
        font-size: 24px;
    }

    .price-value {
        font-size: 44px;
    }
}

/* Extra small */
@media (max-width: 380px) {
    .container {
        padding: 0 16px;
    }

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

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