/* Onmint Custom Stylesheet - Premium & Mockup-Perfect Design */
:root {
    --primary: #0b5e3f;
    --primary-hover: #07472e;
    --primary-light: #e8faf4;
    --primary-glow: rgba(11, 94, 63, 0.1);
    
    --accent-red: #EF4444;
    --accent-blue: #3B82F6;
    --success: #10B981;
    
    --slate-900: #0F172A;
    --slate-800: #1E293B;
    --slate-600: #475569;
    --slate-500: #64748B;
    --slate-400: #94A3B8;
    --slate-200: #E2E8F0;
    --slate-100: #F1F5F9;
    --slate-50: #F8FAFC;
    
    --border-color: rgba(11, 94, 63, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.4);
    --bg-card: #ffffff;
    --bg-secondary-solid: #f8fafc;
    --footer-bg: #0F172A;
    
    --card-shadow: 0 15px 35px -5px rgba(11, 94, 63, 0.06), 0 5px 15px -5px rgba(0, 0, 0, 0.03);
    --card-shadow-hover: 0 25px 45px -5px rgba(11, 94, 63, 0.14), 0 10px 20px -5px rgba(0, 0, 0, 0.05);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

html {
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: #f5fbf8;
    color: var(--slate-800);
    line-height: 1.6;
    position: relative;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--slate-900);
    font-weight: 700;
}

/* Base Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.container-wide {
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.text-center { text-align: center; }
.hidden { display: none !important; }

/* 🌟 Premium Organic Background Components */
.blobs-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; /* Stretches to the exact bottom of page container, preventing scroll overflow */
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.blob-bg {
    position: absolute;
    filter: blur(120px);
    border-radius: 50%;
    opacity: 0.6;
}

.blob-mint {
    top: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #bbf7d0 0%, rgba(232, 250, 244, 0.2) 70%);
}

.blob-soft-green {
    top: 300px;
    left: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #dcfce7 0%, rgba(240, 253, 244, 0.1) 70%);
}

.blob-center {
    top: 750px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(167, 243, 208, 0.25) 0%, rgba(245, 251, 248, 0) 70%);
    opacity: 0.5;
}

.blob-left-mid {
    top: 1400px;
    left: -150px;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, rgba(245, 251, 248, 0) 70%);
    opacity: 0.55;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: radial-gradient(rgba(11, 94, 63, 0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.8;
}



/* 🏢 Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 88px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(11, 94, 63, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%; /* Stretch to extreme edges of screen */
    margin: 0 auto;
    padding: 0 48px; /* Clean gap from left/right window edges */
}

.nav-right-group {
    display: flex;
    align-items: center;
    gap: 36px;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.1;
}

.logo-main, .logo .logo-text {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 11px;
    color: var(--slate-500);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    text-decoration: none;
    color: var(--slate-600);
    font-weight: 600;
    font-size: 15px;
    position: relative;
    padding: 6px 0;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a.active, .nav-links a.nav-delete-link.active {
    color: var(--primary);
    font-weight: 700;
}

.nav-links a.active::after, .nav-links a.nav-delete-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--primary);
    border-radius: 4px;
}

.nav-btn-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background-color: var(--primary);
    color: white !important;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 8px 20px -4px rgba(11, 94, 63, 0.3);
    transition: all 0.25s ease;
}

.nav-btn-download:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -4px rgba(11, 94, 63, 0.4);
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2.5px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    z-index: 999;
    padding: 32px 24px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
}

.mobile-drawer.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.drawer-link {
    text-decoration: none;
    color: var(--slate-800);
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 8px;
    border-bottom: 1.5px solid var(--slate-100);
}

.drawer-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.drawer-btn {
    text-align: center;
    background-color: var(--primary);
    color: white !important;
    border-radius: 12px;
    padding: 14px;
    border: none;
}

/* 🚀 Hero Section */
.hero-section {
    position: relative;
    padding-top: 200px; /* 10% increase */
    padding-bottom: 90px; /* 10% increase */
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    align-items: center;
    gap: 80px; /* Increased gap between text column and phone visual */
}

.hero-content {
    max-width: 650px;
}

.hero-content .badge {
    display: inline-block;
    padding: 7px 18px;
    background-color: var(--primary-light);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 15.5px; /* 10% increase */
    border-radius: 22px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

/* Increased font sizing as requested */
.hero-title {
    font-size: 75px; /* 10% increase */
    line-height: 1.12;
    letter-spacing: -1.8px;
    margin-bottom: 24px;
    color: var(--slate-900);
}

.hero-title .highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 22px; /* 10% increase */
    color: var(--slate-600);
    margin-bottom: 36px;
    font-weight: 500;
}

/* Grid actions containing the two green gradient CTA buttons */
.hero-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: flex-start;
}

.watch-video-container {
    grid-column: span 2;
    margin-top: 8px;
}

.download-trigger-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.user-sublabel {
    font-size: 12px; /* 10% increase */
    color: var(--slate-500);
    font-weight: 700;
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 30px; /* 10% increase */
    border-radius: 16px;
    font-weight: 700;
    font-size: 16.5px; /* 10% increase */
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    font-family: var(--font-body);
}

/* Green gradient buttons styling as requested in image no. 2 */
.btn-gradient-green {
    background: linear-gradient(135deg, #0b5e3f 0%, #137c51 100%);
    color: white !important;
    border: none;
    box-shadow: 0 10px 25px -4px rgba(11, 94, 63, 0.35);
}

.btn-gradient-green:hover {
    background: linear-gradient(135deg, #07472e 0%, #0e6f47 100%);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -4px rgba(11, 94, 63, 0.45);
}

/* Make partner button slightly distinct but still gradient */
.btn-gradient-green.btn-partner-hero {
    background: linear-gradient(135deg, #137c51 0%, #189863 100%);
}

.btn-gradient-green.btn-partner-hero:hover {
    background: linear-gradient(135deg, #0b5e3f 0%, #137c51 100%);
}

.btn-secondary {
    background-color: white;
    color: var(--slate-800);
    border: 2px solid var(--slate-100);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
}

.watch-video-btn-styled {
    display: inline-flex;
    padding: 14px 28px;
    border-radius: 14px;
}

.partner-download-hero {
    margin-top: 28px;
    font-size: 14px;
    color: var(--slate-600);
}

.partner-download-hero a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.partner-download-hero a:hover {
    text-decoration: underline;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-ring {
    position: absolute;
    width: 530px;
    height: 530px;
    border: 3px dashed rgba(11, 94, 63, 0.08);
    border-radius: 50%;
    animation: rotate 60s linear infinite;
    z-index: 1;
}

/* Phone screen directly visible (Mockup frame removed as requested) */
.phone-direct-image {
    position: relative;
    z-index: 2;
    max-width: 400px;
    width: 100%;
}

.hero-app-image {
    width: 100%;
    height: auto;
    display: block;
}

/* 📊 Stats Section - Fixed visibility index & borders */
.stats-section {
    position: relative;
    z-index: 100; /* Ensure high z-index visibility above background blobs */
    padding: 40px 0;
}

.stats-card {
    background-color: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(11, 94, 63, 0.06);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.stat-item:not(:last-child) {
    border-right: 1.5px solid var(--slate-100);
}

.stat-icon {
    width: 52px;
    height: 52px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-text h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--slate-900);
    line-height: 1.2;
}

.stat-text p {
    font-size: 13px;
    color: var(--slate-500);
    font-weight: 600;
}

/* 🩺 Services Overview Section */
.services-section {
    padding: 80px 0;
    position: relative;
    z-index: 10;
}

.services-header {
    max-width: 600px;
    margin: 0 auto 52px auto;
}

.services-header h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.services-header p {
    color: var(--slate-500);
}

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

.service-card {
    background: white;
    border-radius: 20px;
    padding: 32px 24px;
    border: 1px solid rgba(11, 94, 63, 0.05);
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(11, 94, 63, 0.15);
}

.service-emoji {
    font-size: 36px;
    display: inline-block;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 13.5px;
    color: var(--slate-500);
    line-height: 1.5;
}

/* 🤝 Vision / About Us Card wrapper */
.vision-section {
    padding: 40px 0;
    position: relative;
    z-index: 10;
}
/* Mockup matching new layout for Vision section */
.vision-card-new {
    background-color: white;
    border-radius: 24px;
    padding: 40px 48px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(11, 94, 63, 0.08);
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.vision-card-grid {
    display: grid;
    grid-template-columns: 380px 1px 1fr 340px; /* Increased left column to 380px */
    gap: 40px;
    align-items: center;
}

.founder-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.founder-header-info {
    margin-bottom: 24px;
    width: 100%;
}

.founder-header-info h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--slate-900);
    margin: 0 0 6px 0;
    letter-spacing: -0.5px;
}

.founder-subtitle {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    text-transform: none;
    letter-spacing: normal;
}

.founder-photo-wrapper {
    position: relative;
    width: 364px;
    height: 465px; /* Increased height to accommodate the larger oval backdrop */
    margin: 0 auto;
}

.founder-dots-bg {
    position: absolute;
    top: 0;
    left: -12px;
    width: 110px;
    height: 160px;
    background-image: radial-gradient(rgba(148, 163, 184, 0.3) 2px, transparent 2px);
    background-size: 10px 10px;
    z-index: 0;
}

.founder-circle-bg {
    position: absolute;
    bottom: -15px; /* Shifted slightly to the bottom */
    left: 50%;
    transform: translateX(-50%) rotate(30deg);
    width: 306px; /* Increased by 10% from 278px */
    height: 459px; /* Increased by 10% from 417px */
    background-color: #d1fae5;
    border-radius: 50%;
    z-index: 1;
}

.founder-photo-new {
    position: absolute;
    bottom: -10px; /* Shifted slightly to the bottom */
    left: 50%;
    transform: translateX(-50%);
    width: 285px; /* Increased by 7% from 266px */
    height: auto;
    z-index: 2;
}

.vision-card-divider {
    width: 1px;
    height: 300px;
    background-color: #e2e8f0;
    align-self: center;
}

.vision-column-center {
    display: flex;
    flex-direction: column;
}

.quote-container-new {
    display: flex;
    flex-direction: column;
}

.quote-mark-new {
    font-size: 64px;
    font-family: var(--font-heading);
    line-height: 1;
    color: var(--primary);
    margin-bottom: -15px;
    font-weight: 800;
}

.quote-text-new {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--slate-900);
    line-height: 1.4;
    margin: 0;
}

.green-highlight-text {
    color: var(--primary);
}

.quote-underline {
    width: 48px;
    height: 4px;
    background-color: var(--primary);
    margin-top: 12px;
    margin-bottom: 24px;
    border-radius: 2px;
}

.vision-title-new {
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 0.5px;
    margin: 0 0 8px 0;
}

.vision-desc-new {
    font-size: 14.5px;
    color: var(--slate-600);
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.vision-checklist-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 20px;
}

.checklist-item-new {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--slate-800);
}

.check-icon-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800;
    flex-shrink: 0;
}

.vision-column-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.heart-icon-img {
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.vision-footer-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 16px;
    width: 100%;
}

.tagline-line {
    flex: 1;
    height: 1px;
    background-color: #cbd5e1;
}

.tagline-text {
    font-family: var(--font-heading);
    font-size: 16.5px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .vision-card-grid {
        grid-template-columns: 380px 1px 1fr;
    }
    .vision-column-right {
        display: none;
    }
}

@media (max-width: 991px) {
    .vision-card-new {
        padding: 32px 24px;
    }
    .vision-card-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .founder-column {
        align-items: center;
    }
    .founder-header-info {
        text-align: center;
    }
    .founder-header-info h3, .founder-subtitle {
        text-align: center;
    }
    .vision-card-divider {
        display: none;
    }
    .vision-checklist-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .vision-footer-tagline {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .tagline-line {
        display: none;
    }
    .tagline-text {
        white-space: normal;
    }
}

@media (max-width: 576px) {
    .vision-checklist-new {
        grid-template-columns: 1fr;
    }
}


.vision-card {
    background-color: white;
    border-radius: 24px;
    padding: 28px 44px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(11, 94, 63, 0.08);
    display: grid;
    grid-template-columns: 0.84fr 1.16fr;
    gap: 40px;
    align-items: center;
    position: relative;
}

.founder-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    justify-content: space-between;
    position: relative;
    height: 100%;
}

.founder-text-header {
    text-align: center;
    margin-top: 16px;
    margin-bottom: 0;
    width: 100%;
}

.founder-text-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--slate-900);
    letter-spacing: -0.5px;
}

.founder-text-header p {
    font-family: var(--font-heading);
    font-size: 13.5px;
    color: var(--slate-500);
    font-weight: 600;
    line-height: 1.6; /* Balanced line spacing */
    letter-spacing: 0.8px; /* Extra spacing on the company names */
    text-transform: uppercase;
}

.founder-portrait-container {
    position: relative;
    width: 100%;
    height: 350px; /* 10% height increase */
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
    margin-top: 12px; /* Pad from the top of the card to prevent touching the top edge */
}

.founder-bg-circle {
    position: absolute;
    bottom: -10px;
    width: 300px; /* 20% size decrease from 375px */
    height: 300px;
    background-color: #dcfce7;
    border-radius: 50%;
    z-index: 1;
}

.founder-photo {
    position: relative;
    z-index: 2;
    max-height: 350px; /* 10% height increase */
    width: auto;
    object-fit: contain;
}

.vision-content-inner {
    position: relative;
}

.quote-icon {
    font-size: 48px;
    font-family: var(--font-heading);
    line-height: 0.5;
    color: var(--primary);
    opacity: 0.15;
    position: absolute;
    top: -12px;
    left: -12px;
}

.vision-quote {
    font-size: 25px;
    font-weight: 700;
    color: var(--slate-900);
    line-height: 1.4;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.vision-quote .highlight-text {
    color: var(--primary);
}

.vision-header {
    font-size: 17px;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.vision-paragraph {
    font-size: 15.5px;
    color: var(--slate-600);
    line-height: 1.5;
    margin-bottom: 16px;
}

.vision-checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-icon {
    width: 20px;
    height: 20px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    padding: 4px;
    flex-shrink: 0;
}

.check-item span {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--slate-800);
}

.vision-vector-graphic {
    position: absolute;
    bottom: -20px;
    right: 20px;
    opacity: 0.4;
    pointer-events: none;
}

/* 📥 Download strip separated by vertical border line in one div card as requested */
.download-section {
    padding: 80px 0;
    position: relative;
    z-index: 10;
}

.download-main-card {
    background-color: white;
    border-radius: 28px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(11, 94, 63, 0.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

.download-left-col {
    padding: 40px 48px;
    border-right: 1px solid rgba(11, 94, 63, 0.08); /* Separator border line */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
}

.download-right-col {
    padding: 40px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.coming-soon-label {
    display: inline-block;
    padding: 5px 12px;
    background-color: #fef3c7; /* soft amber/yellow background */
    color: #b45309; /* dark amber text */
    border: 1px solid #fde68a;
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 14px;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-body);
}

.disabled-badge {
    opacity: 0.6;
    cursor: not-allowed;
}

.download-text-group h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--slate-900);
}

.download-text-group p {
    color: var(--slate-500);
    font-size: 14.5px;
}

.qr-code-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
}

.qr-code {
    width: 90px;
    height: 90px;
    background-color: white;
    padding: 10px;
    border: 1.5px solid var(--slate-100);
    border-radius: 16px;
    color: var(--primary);
}

.qr-text h4 {
    font-size: 16px;
    font-weight: 800;
}

.qr-text p {
    font-size: 13px;
    color: var(--slate-500);
    font-weight: 500;
}

.download-right-col h3 {
    font-size: 22px;
    margin-bottom: 24px;
}

.badges-group {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.store-badge {
    height: 46px;
    display: inline-block;
    transition: transform 0.2s ease;
}

.store-badge:hover {
    transform: translateY(-2px);
}

.store-badge img {
    height: 100%;
    display: block;
}

/* Direct APK Links styling in bottom promo */
.apk-direct-downloads {
    border-top: 1px dashed var(--slate-100);
    padding-top: 24px;
}

.apk-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.apk-links-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.apk-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background-color: var(--primary-light);
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 13.5px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.apk-link-btn:hover {
    background-color: var(--primary);
    color: white;
}

.apk-link-btn.partner-btn {
    background-color: var(--slate-50);
    color: var(--slate-800);
    border: 1px solid var(--slate-100);
}

.apk-link-btn.partner-btn:hover {
    background-color: var(--slate-800);
    color: white;
    border-color: var(--slate-800);
}

/* 🏢 Footer */
.footer {
    background-color: white;
    border-top: 1.5px solid var(--slate-100);
    padding: 28px 0 16px 0; /* Halved top and bottom padding */
    position: relative;
    z-index: 10;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 16px; /* Halved bottom padding */
    border-bottom: 1px solid var(--slate-100);
}

.footer-left-group {
    display: flex;
    align-items: flex-start;
    gap: 48px; /* Very small spacing gap as requested */
}

.footer-brand {
    max-width: 250px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
}

.footer-tagline {
    font-size: 11px;
    color: var(--slate-500);
    font-weight: 500;
    margin-top: 2px;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    text-decoration: none;
    color: var(--slate-600);
    font-weight: 600;
    font-size: 14.5px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-links .delete-link-btn {
    color: var(--accent-red);
}

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

.social-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: right;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--slate-100);
    border-radius: 50%;
    color: var(--slate-600);
    transition: all 0.2s ease;
}

.social-icons a:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-copyright {
    padding-top: 14px;
    font-size: 13px;
    color: var(--slate-400);
}

/* Animations */
@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

.animate-pulse-slow {
    animation: pulse 12s ease-in-out infinite;
}

.animate-pulse-delayed {
    animation: pulse 16s ease-in-out infinite;
    animation-delay: 2s;
}

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

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Slide Animations */
.animate-slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 📱 Responsive Adaptations (Strict Mobile Layouts) */
@media (max-width: 1024px) {
    .hero-section {
        padding-top: 110px;
        padding-bottom: 50px;
    }
    
    .hero-content .badge {
        margin-bottom: 12px;
    }
    
    .hero-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px;
    }
    
    .hero-content {
        display: contents;
    }
    
    .badge { order: 1; }
    .hero-title { order: 2; }
    .hero-subtitle { order: 3; }
    .hero-visual { order: 4; margin: 24px 0; }
    .hero-actions-grid { order: 5; width: 100%; max-width: 520px; margin: 0 auto; }
    .partner-download-hero { order: 6; }
    
    .stats-card {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .stat-item:nth-child(2) {
        border-right: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vision-card {
        grid-template-columns: 1fr;
        gap: 52px;
        padding: 40px;
    }
    
    .founder-card-inner {
        align-items: center;
        text-align: center;
    }
    
    .founder-text-header {
        text-align: center;
    }
    
    .founder-portrait-container {
        margin-left: 0;
        margin-top: 12px;
        border-top-left-radius: 0;
    }
    
    .download-main-card {
        grid-template-columns: 1fr;
    }
    
    .download-left-col {
        border-right: none;
        border-bottom: 1px solid rgba(11, 94, 63, 0.08);
    }
    
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }
    
    .footer-left-group {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    
    .social-title {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px !important;
    }
    
    .glow-ring {
        display: none !important;
    }
    
    .founder-photo-wrapper {
        width: 100% !important;
        max-width: 280px !important;
        height: 320px !important;
    }
    
    .founder-circle-bg {
        width: 200px !important;
        height: 280px !important;
    }
    
    .founder-photo-new {
        width: 195px !important;
    }

    .hero-section {
        padding-top: 110px;
        padding-bottom: 40px;
    }
    
    .hero-content .badge {
        margin-bottom: 12px;
    }
    
    .navbar {
        height: 80px;
    }
    
    .mobile-drawer {
        top: 80px;
    }
    
    .nav-links, .header-actions .nav-btn-download {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-actions-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .watch-video-container {
        grid-column: span 1;
    }
    
    .stats-card {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .stat-item {
        border-right: none !important;
        justify-content: flex-start;
        padding-left: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-checklist {
        grid-template-columns: 1fr;
    }
    
    .badges-group {
        flex-direction: column;
        align-items: center;
    }
}


/* ==========================================================================
   Restored Account Deletion (GDPR) Page Styles
   ========================================================================== */

/* Compliance Strip */
.compliance-strip {
    background-color: var(--primary-light);
    border-top: 1px solid rgba(11, 94, 63, 0.1);
    border-bottom: 1px solid rgba(11, 94, 63, 0.1);
    padding: 20px 0;
}

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

.compliance-text {
    font-size: 13px;
    color: var(--slate-700);
    line-height: 1.5;
    flex-grow: 1;
}

.compliance-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.compliance-link:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Account Deletion Page Layout */
.page-main {
    padding-top: 140px;
    padding-bottom: 60px;
    position: relative;
    background-color: transparent;
}

.account-page-container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: flex-start;
    position: relative;
    z-index: 10;
}

.info-panel h1 {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.panel-subtitle {
    font-size: 16px;
    color: var(--slate-600);
    margin-bottom: 36px;
}

.details-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.details-item {
    display: flex;
    gap: 16px;
}

.details-icon {
    font-size: 22px;
    margin-top: 2px;
}

.details-text h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.details-text ul {
    list-style: none;
}

.details-text ul li {
    font-size: 14px;
    color: var(--slate-600);
    margin-bottom: 6px;
    position: relative;
    padding-left: 16px;
}

.details-text ul li::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.details-text p {
    font-size: 14px;
    color: var(--slate-600);
}

/* Glass Form Panel */
.form-panel {
    display: flex;
    justify-content: center;
}

.glass-form-card {
    width: 100%;
    max-width: 460px;
    background-color: var(--glass-bg);
    border: 1.5px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.form-title {
    font-size: 24px;
    margin-bottom: 6px;
}

.form-desc {
    font-size: 13px;
    color: var(--slate-500);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--slate-700);
    margin-bottom: 8px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(11, 94, 63, 0.15);
    background-color: var(--slate-50);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--slate-800);
    transition: all 0.2s ease;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: white;
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-checkbox-group {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.form-checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

.form-checkbox-group label {
    font-size: 12px;
    color: var(--slate-600);
    cursor: pointer;
    user-select: none;
}

/* Deletion Success Screen & Token Verification */
.success-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.success-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.success-desc {
    font-size: 14px;
    color: var(--slate-600);
    margin-bottom: 24px;
}

.success-steps {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
    margin-bottom: 28px;
    padding: 0 16px;
}

.step-line {
    position: absolute;
    top: 14px;
    left: 40px;
    right: 40px;
    height: 2px;
    background-color: rgba(11, 94, 63, 0.1);
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.step-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid rgba(11, 94, 63, 0.1);
    color: var(--slate-400);
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-num.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.step-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--slate-500);
    text-align: center;
}

.token-verification-box {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-light);
    border: 1px solid rgba(11, 94, 63, 0.15);
    border-radius: 12px;
    margin-bottom: 20px;
}

.mini-desc {
    font-size: 11px;
    color: var(--slate-600);
    margin-bottom: 12px;
}

.form-group-row {
    display: flex;
    gap: 10px;
}

.form-group-row input {
    flex-grow: 1;
    padding: 8px 12px;
    border: 1.5px solid var(--slate-200);
    border-radius: 8px;
    font-size: 13px;
}

.form-group-row input:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-danger {
    background-color: var(--accent-red);
    color: white !important;
    border: none;
}

.btn-danger:hover {
    background-color: #dc2626;
}

.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
}

/* Checkmark Success Icon Animation */
.checkmark {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: var(--success);
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px var(--success);
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}
.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: var(--success);
    fill: none;
    animation: stroke .6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke .3s cubic-bezier(0.65, 0, 0.45, 1) .8s forwards;
}

@keyframes stroke { 100% { stroke-dashoffset: 0; } }
@keyframes scale { 0%, 100% { transform: none; } 50% { transform: scale3d(1.1, 1.1, 1); } }
@keyframes fill { 100% { box-shadow: inset 0px 0px 0px 30px #ECFDF5; } }

/* Button loader */
.btn-loader {
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-top: 2px solid transparent;
    border-radius: 50%;
    display: inline-block;
    animation: spin 1s linear infinite;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

/* Deletion layout mobile responsive adjustments */
@media (max-width: 1024px) {
    .account-page-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
