/* Variables */
:root {
    --primary-color: #1a4d6d;
    --secondary-color: #2a5f7f;
    --accent-color: #d4a86a;
    --light-bg: #f5f1ed;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --border-radius: 16px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
    opacity: 1;
    transition: opacity 0.5s ease;
}

body.loading {
    opacity: 0.8;
}

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

/* Navigation */
.navbar {
    background: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

.navbar:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 4rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    height: 50px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    letter-spacing: -0.5px;
}

.logo:hover {
    color: var(--accent-color);
    transform: scale(1.02);
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    justify-self: start;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.93rem;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 3px solid transparent;
}

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

.nav-links a.active {
    color: var(--accent-color);
    font-weight: 600;
    border-bottom-color: var(--accent-color);
}

.nav-links a:hover:not(.active) {
    border-bottom-color: rgba(212, 168, 106, 0.3);
}

.cta-btn {
    display: none;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f1ed 0%, #fefdfb 100%);
    min-height: 700px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 106, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 77, 109, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 168, 106, 0.15);
    color: var(--accent-color);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 168, 106, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -1px;
}

.accent-text {
    background: linear-gradient(135deg, var(--accent-color), #c9905f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 600px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 168, 106, 0.1);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    line-height: 1.4;
}

/* Hero Badges & Stats */
.badges-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0 3rem;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(212, 168, 106, 0.08);
    padding: 1.2rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 168, 106, 0.15);
    text-align: center;
    gap: 0.6rem;
    transition: all 0.3s;
}

.badge-item:hover {
    background: rgba(212, 168, 106, 0.12);
    transform: translateY(-2px);
}

.badge-icon {
    font-size: 1.8rem;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.3;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-item {
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #c9905f);
    color: white;
    box-shadow: 0 5px 15px rgba(212, 168, 106, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 168, 106, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(26, 77, 109, 0.1);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 10px 25px rgba(26, 77, 109, 0.2);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

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

.phone-mockup {
    width: 280px;
    height: 580px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 168, 106, 0.1);
    position: relative;
    animation: float 4s ease-in-out infinite;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 35px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.screen-content {
    padding: 40px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    color: white;
}

.app-header {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.app-header::before {
    content: '✦';
    color: var(--accent-color);
}

.onboarding-preview {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.preview-step {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
    text-align: center;
}

.preview-step.active {
    opacity: 1;
    transform: translateY(0);
}

.preview-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.preview-step p {
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Experience Section */
.experience {
    padding: 5rem 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.experience-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

.flow-step {
    background: linear-gradient(135deg, #ffffff 0%, #fafaf9 100%);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(212, 168, 106, 0.2);
    transition: var(--transition);
    animation: slideUp 0.6s ease-out forwards;
    opacity: 0;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.flow-step::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 168, 106, 0.05), transparent);
    border-radius: var(--border-radius);
    pointer-events: none;
}

.flow-step:hover {
    border-color: var(--accent-color);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 168, 106, 0.15);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), #c9905f);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.flow-arrow {
    text-align: center;
    font-size: 2rem;
    color: var(--accent-color);
    opacity: 0.5;
    display: none;
}

@media (min-width: 768px) {
    .flow-arrow {
        display: block;
    }
}

/* Features Section */
.features-preview {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f1ed 0%, #fefdfb 100%);
}

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

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafaf9 100%);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(212, 168, 106, 0.15);
    position: relative;
    overflow: hidden;
}

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

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 168, 106, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Trust Section */
.trust-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 106, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.trust-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.trust-content {
    position: relative;
    z-index: 1;
}

.trust-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.trust-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.stat {
    background: rgba(255, 255, 255, 0.12);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    opacity: 0.95;
    font-weight: 500;
}

/* Banner Section */
.banner-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    position: relative;
    overflow: hidden;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 168, 106, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.banner-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

.banner-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.banner-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.app-store-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.store-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.store-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(212, 168, 106, 0.5);
}

.store-badge span {
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section p {
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    display: inline-block;
}

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-section a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-section a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.8;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 700px;
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f1ed 0%, #fefdfb 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.gradient-orb.top-left {
    width: 500px;
    height: 500px;
    top: -10%;
    left: -5%;
    background: radial-gradient(circle, rgba(212, 168, 106, 0.15), transparent 70%);
}

.gradient-orb.bottom-right {
    width: 600px;
    height: 600px;
    bottom: -15%;
    right: -10%;
    background: radial-gradient(circle, rgba(26, 77, 109, 0.08), transparent 70%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 1024px) {
    .hero-grid {
        gap: 3rem;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Hero Content - Left Column */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    width: 100%;
    align-items: flex-start;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 168, 106, 0.12);
    color: var(--accent-color);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(212, 168, 106, 0.3);
    width: fit-content;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1.15;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    transform: scaleX(0);
    transform-origin: left;
    animation: expandWidth 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards;
}

@keyframes expandWidth {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

.accent-text {
    background: linear-gradient(135deg, var(--accent-color), #c9905f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 500px;
}

/* Badges Section */
.badges-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
    width: 100%;
}

@media (max-width: 768px) {
    .badges-section {
        grid-template-columns: 1fr;
    }
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(212, 168, 106, 0.08);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 168, 106, 0.15);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.badge-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 168, 106, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.badge-item:hover {
    background: rgba(212, 168, 106, 0.16);
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(212, 168, 106, 0.35);
    box-shadow: 0 10px 30px rgba(212, 168, 106, 0.15);
}

.badge-item:hover::before {
    opacity: 1;
}

.badge-icon {
    font-size: 1.5rem;
    min-width: 40px;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.3;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 1.5rem;
    width: 100%;
}

@media (max-width: 768px) {
    .stats-section {
        grid-template-columns: 1fr;
    }
}

.stat-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 168, 106, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 168, 106, 0.15);
    border-color: rgba(212, 168, 106, 0.15);
}

.stat-item:hover::after {
    opacity: 1;
}

.stat-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.4rem;
}

.stat-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.3;
}

/* Hero Visual - Right Column */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 500px;
}

@media (max-width: 768px) {
    .hero-visual {
        min-height: 400px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .nav-links {
        display: none;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .experience-flow {
        grid-template-columns: 1fr;
    }
}

/* Page Hero Section */
.page-hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f1ed 0%, #fefdfb 100%);
    text-align: center;
}

.page-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Story Section */
.story-section {
    padding: 6rem 0;
    background: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.story-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.story-highlight {
    font-weight: 600;
    color: var(--accent-color);
    padding: 1rem;
    background: rgba(212, 168, 106, 0.1);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.story-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(26, 77, 109, 0.2);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.95;
}

/* Mission Section */
.mission-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f1ed 0%, #fefdfb 100%);
}

.section-heading {
    font-size: 2.8rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.section-subtext {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(212, 168, 106, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 168, 106, 0.15);
    border-color: var(--accent-color);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafaf9 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(212, 168, 106, 0.15);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 168, 106, 0.2);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.team-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.team-role {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.team-bio {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Journey Timeline */
.journey-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f1ed 0%, #fefdfb 100%);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--accent-color);
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    padding-right: 52%;
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: 52%;
    text-align: left;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--accent-color);
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid white;
    z-index: 10;
}

.timeline-date {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 168, 106, 0.15);
}

.timeline-content h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Core Features Section */
.core-features-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f1ed 0%, #fefdfb 100%);
}

.core-features-section .section-heading {
    position: relative;
    display: inline-block;
}

.core-features-section .section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    border-radius: 2px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(212, 168, 106, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 168, 106, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    border-radius: 20px;
}

.feature-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 168, 106, 0.2);
    border-color: rgba(212, 168, 106, 0.3);
}

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

.feature-item:hover::after {
    opacity: 1;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    min-height: 4rem;
}

.feature-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.feature-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.feature-checklist {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.8rem;
    list-style: none;
    margin-top: auto;
}

.feature-checklist li {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 168, 106, 0.1);
    transition: all 0.3s ease;
}

.feature-checklist li:last-child {
    border-bottom: none;
}

.feature-checklist li:hover {
    transform: translateX(5px);
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .features-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-item {
        flex-direction: column;
    }
}

/* Premium Features Section */
.premium-features-section {
    padding: 6rem 0;
    background: white;
}

.premium-features-section .section-heading {
    position: relative;
    display: inline-block;
}

.premium-features-section .section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    border-radius: 2px;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.premium-feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafaf9 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 168, 106, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.premium-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.premium-feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 168, 106, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    border-radius: 20px;
}

.premium-feature-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(212, 168, 106, 0.25);
    border-color: rgba(212, 168, 106, 0.3);
}

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

.premium-feature-card:hover::after {
    opacity: 1;
}

.premium-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(212, 168, 106, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-badge.platinum {
    background: linear-gradient(135deg, #d4a86a, #f0c887);
    box-shadow: 0 4px 15px rgba(212, 168, 106, 0.4);
}

.premium-feature-card .feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    min-height: 4rem;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.premium-feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.premium-feature-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.premium-feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .premium-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Safety Section */
.safety-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f1ed 0%, #fefdfb 100%);
}

.safety-section .section-heading {
    position: relative;
    display: inline-block;
}

.safety-section .section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    border-radius: 2px;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.safety-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(26, 77, 109, 0.25);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.safety-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent);
    transition: all 0.5s ease;
    pointer-events: none;
}

.safety-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(26, 77, 109, 0.4);
}

.safety-card:hover::before {
    top: -10%;
    right: -10%;
}

.safety-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    min-height: 4rem;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
}

.safety-card:hover .safety-icon {
    transform: scale(1.15) rotate(-5deg);
}

.safety-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.safety-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .safety-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .safety-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
