/*
Theme Name: Geneto Web Theme
Theme URI: https://geneto.com
Author: Geneto OÜ
Author URI: https://geneto.com
Description: Geneto - Moodne ja atraktiivne teema teaduspõhisele toitumis- ja liikumisäpile.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: geneto-theme
*/

/* ==========================================================================
   CSS Variables - Geneto Brand Colors
   ========================================================================== */

:root {
    /* Brand Colors from App */
    --geneto-orange: #F5841F;
    --geneto-orange-light: #FF9A3C;
    --geneto-orange-dark: #D96F0A;
    --geneto-blue: #2D7DD2;
    --geneto-blue-light: #4A9BE8;
    --geneto-blue-dark: #1B5FA8;
    --geneto-green: #28A745;
    --geneto-green-light: #34D058;
    --geneto-yellow: #FFC107;
    --geneto-yellow-light: #FFD54F;

    /* Stunning Gradients */
    --gradient-hero: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --gradient-orange: linear-gradient(135deg, #F5841F 0%, #FF6B35 50%, #F7931E 100%);
    --gradient-blue: linear-gradient(135deg, #2D7DD2 0%, #00C6FB 100%);
    --gradient-green: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --gradient-sunset: linear-gradient(135deg, #F5841F 0%, #FFC107 100%);
    --gradient-ocean: linear-gradient(135deg, #2D7DD2 0%, #28A745 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);

    /* Neutrals */
    --white: #FFFFFF;
    --black: #000000;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-400: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
    --shadow-glow-orange: 0 10px 40px rgba(245, 132, 31, 0.4);
    --shadow-glow-blue: 0 10px 40px rgba(45, 125, 210, 0.4);
    --shadow-glow-green: 0 10px 40px rgba(40, 167, 69, 0.4);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Header */
    --header-height: 80px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
ul, ol { list-style: none; }

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--gray-900);
}

h1 { font-size: clamp(3rem, 8vw, 5.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p { margin-bottom: 1rem; color: var(--gray-600); }

.text-gradient {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-4xl) 0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-orange);
    color: var(--white);
    box-shadow: var(--shadow-glow-orange);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(245, 132, 31, 0.5);
}

.btn-glass {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
}

.btn-glass:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-4px);
}

.btn-lg {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* ==========================================================================
   Header - Transparent & Glassmorphism
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: var(--transition-base);
}

.site-header.scrolled {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: var(--space-sm) 0;
}

.site-header.scrolled .logo { color: var(--gray-900); }
.site-header.scrolled .nav-link { color: var(--gray-800); }
.site-header.scrolled .nav-link:hover { color: var(--geneto-orange); }
.site-header.scrolled .menu-toggle span { background: var(--gray-900); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
}

.logo img { height: 50px; width: auto; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-orange);
    border-radius: 2px;
    transition: var(--transition-base);
}

.nav-link:hover::after { width: 100%; }

.nav-cta { margin-left: var(--space-md); }

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition-base);
}

@media (max-width: 991px) {
    .menu-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--gradient-dark);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-xl);
        transition: var(--transition-base);
    }

    .nav-menu.active { right: 0; }
    .nav-link { font-size: 2rem; color: var(--white); }
    .nav-cta { margin: var(--space-lg) 0 0; }
}

/* ==========================================================================
   HERO SECTION - Full Screen Video/Image Background
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Video/Image Background */
.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-media video,
.hero-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video {
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Gradient Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 46, 0.95) 0%,
        rgba(45, 125, 210, 0.8) 40%,
        rgba(245, 132, 31, 0.7) 100%
    );
    z-index: 1;
}

/* Animated Background Shapes */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    z-index: 1;
    animation: pulse 8s ease-in-out infinite;
}

.hero::before {
    width: 600px;
    height: 600px;
    background: var(--geneto-orange);
    top: -200px;
    right: -200px;
}

.hero::after {
    width: 500px;
    height: 500px;
    background: var(--geneto-blue);
    bottom: -150px;
    left: -150px;
    animation-delay: 4s;
}

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

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 750px;
    color: var(--white);
    padding: var(--space-4xl) 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease;
}

.hero-badge::before { content: '🚀'; }

.hero h1 {
    color: var(--white);
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.hero h1 .highlight {
    display: inline;
    position: relative;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 1.35rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
    max-width: 600px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
    max-width: 550px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.hero-apps {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-apps-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-right: var(--space-sm);
}

.app-badge {
    height: 55px;
    transition: var(--transition-base);
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}

.app-badge:hover {
    transform: translateY(-5px) scale(1.05);
}

/* Phone Mockup */
.hero-phone {
    position: absolute;
    right: 8%;
    bottom: 5%;
    width: 320px;
    z-index: 10;
    animation: float 6s ease-in-out infinite;
}

.hero-phone img {
    width: 100%;
    filter: drop-shadow(0 40px 80px rgba(0,0,0,0.5));
}

@media (max-width: 1200px) {
    .hero-phone { display: none; }
}

/* Hero Scroll Button */
.hero-scroll-btn {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-sm);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: var(--space-md) var(--space-xl);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.hero-scroll-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-50%) translateY(-4px);
    color: var(--white);
}

.hero-scroll-btn svg {
    animation: bounceRight 1.5s ease-in-out infinite;
}

@keyframes bounceRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-25px) rotate(-5deg); }
}

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

@keyframes scrollDown {
    0% { top: 8px; opacity: 1; }
    100% { top: 32px; opacity: 0; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Features Section
   ========================================================================== */

.features {
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-header p { font-size: 1.2rem; }

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(245, 132, 31, 0.1) 0%, rgba(245, 132, 31, 0.05) 100%);
    color: var(--geneto-orange);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
    border: 1px solid rgba(245, 132, 31, 0.2);
}

.section-description {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

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

.feature-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

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

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto var(--space-md);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: var(--transition-base);
}

.feature-icon.orange {
    background: linear-gradient(135deg, rgba(245,132,31,0.15) 0%, rgba(245,132,31,0.25) 100%);
    color: var(--geneto-orange);
}

.feature-icon.blue {
    background: linear-gradient(135deg, rgba(45,125,210,0.15) 0%, rgba(45,125,210,0.25) 100%);
    color: var(--geneto-blue);
}

.feature-icon.green {
    background: linear-gradient(135deg, rgba(40,167,69,0.15) 0%, rgba(40,167,69,0.25) 100%);
    color: var(--geneto-green);
}

.feature-icon.yellow {
    background: linear-gradient(135deg, rgba(255,193,7,0.15) 0%, rgba(255,193,7,0.25) 100%);
    color: #E5A800;
}

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

.feature-card:hover .feature-icon.orange {
    background: var(--gradient-orange);
    color: var(--white);
    box-shadow: var(--shadow-glow-orange);
}

.feature-card:hover .feature-icon.blue {
    background: var(--gradient-blue);
    color: var(--white);
    box-shadow: var(--shadow-glow-blue);
}

.feature-card:hover .feature-icon.green {
    background: var(--gradient-green);
    color: var(--white);
    box-shadow: var(--shadow-glow-green);
}

.feature-card:hover .feature-icon.yellow {
    background: var(--gradient-sunset);
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: var(--space-sm);
}

.feature-card p {
    font-size: 1rem;
    margin: 0 0 var(--space-md) 0;
    line-height: 1.7;
    flex: 1;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background: var(--geneto-orange);
    color: var(--white);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition-base);
    margin-top: auto;
}

.feature-link:hover {
    background: var(--geneto-orange-dark, #e07318);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 132, 31, 0.4);
    color: var(--white);
}

.feature-link svg {
    transition: transform 0.3s ease;
}

.feature-link:hover svg {
    transform: translateX(4px);
}

/* ==========================================================================
   Stats Section
   ========================================================================== */

.stats {
    background: var(--gradient-ocean);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    text-align: center;
    position: relative;
    z-index: 1;
}

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

.stat-item { color: var(--white); }

.stat-number {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ==========================================================================
   About Us Section (Homepage)
   ========================================================================== */

.about-us-section {
    background: var(--white);
    padding: var(--space-4xl) 0;
}

.about-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-us-content--centered {
    display: block;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 968px) {
    .about-us-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }
}

.about-us-text .section-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(245, 132, 31, 0.1);
    color: var(--geneto-orange);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.about-us-text .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
    line-height: 1.3;
}

.about-us-text p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    font-size: 1.05rem;
}

.about-us-text .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border: 2px solid var(--geneto-orange);
    color: var(--geneto-orange);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-us-text .btn-outline:hover {
    background: var(--geneto-orange);
    color: var(--white);
}

.about-us-team {
    display: flex;
    justify-content: center;
}

.team-avatars {
    display: flex;
    gap: var(--space-lg);
}

.team-avatars img {
    width: 180px;
    height: 180px;
    border-radius: var(--radius-xl);
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.team-avatars img:hover {
    transform: translateY(-5px);
}

@media (max-width: 640px) {
    .team-avatars img {
        width: 140px;
        height: 140px;
    }

    .about-us-text .section-title {
        font-size: 1.75rem;
    }
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.testimonials-section {
    background: var(--gray-50);
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.testimonials-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    position: relative;
}

.testimonials-slider {
    flex: 1;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: var(--space-xl);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
    flex: 0 0 calc(50% - var(--space-md));
    min-width: 400px;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    position: relative;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

/* Mobile testimonials - full width swipeable */
@media (max-width: 768px) {
    .testimonials-section {
        padding: var(--space-2xl) 0;
    }

    .testimonials-wrapper {
        gap: 0;
    }

    .testimonials-slider {
        margin: 0 -1rem;
        padding: 0 1rem;
    }

    .testimonials-track {
        gap: var(--space-md);
    }

    .testimonial-card {
        flex: 0 0 calc(100vw - 3rem);
        min-width: calc(100vw - 3rem);
        padding: var(--space-lg);
    }

    .testimonial-content {
        font-size: 1rem;
        line-height: 1.7;
    }

    .testimonial-quote-icon {
        display: none;
    }
}

@media (max-width: 900px) and (min-width: 769px) {
    .testimonial-card {
        flex: 0 0 100%;
        min-width: 300px;
    }
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.testimonial-quote-icon {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    color: var(--geneto-orange);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: var(--space-md);
    color: var(--geneto-yellow);
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: var(--space-xl);
    font-style: italic;
    border: none;
    padding: 0;
    quotes: none;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--gray-200);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--geneto-orange);
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-avatar.avatar-letter {
    background: var(--gradient-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
}

.testimonial-info { flex: 1; }

.testimonial-name {
    font-weight: 700;
    color: var(--gray-900);
    font-size: 1.1rem;
    display: block;
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--geneto-green);
    font-weight: 600;
}

.testimonial-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: var(--space-lg);
    padding: 0.625rem 1rem;
    background: var(--geneto-orange);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s ease;
}

.testimonial-link:hover {
    background: var(--geneto-orange-dark, #e07318);
    transform: translateX(3px);
}

/* Navigation Buttons */
.testimonial-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gray-200);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    flex-shrink: 0;
    color: var(--gray-600);
}

.testimonial-nav:hover {
    background: var(--geneto-orange);
    border-color: var(--geneto-orange);
    color: var(--white);
}

@media (max-width: 768px) {
    .testimonial-nav {
        display: none;
    }
}

/* Dots */
.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
}

.testimonials-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
}

.testimonials-dots .dot.active {
    background: var(--geneto-orange);
    transform: scale(1.2);
}

.testimonials-dots .dot:hover {
    background: var(--geneto-orange);
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */

.pricing-section {
    background: var(--gray-50);
    padding: var(--space-4xl) 0;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.pricing-cards > .pricing-card {
    flex: 0 1 340px;
    max-width: 360px;
}

@media (max-width: 1024px) {
    .pricing-cards {
        gap: var(--space-lg);
    }

    .pricing-cards > .pricing-card {
        flex: 0 1 100%;
        max-width: 420px;
    }
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid var(--gray-200);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--gray-300);
}

.pricing-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-50) 100%);
    border-radius: var(--radius-xl);
    color: var(--geneto-orange);
}

.pricing-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
}

.pricing-card-subtitle {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: var(--space-lg);
}

.pricing-card-price {
    margin-bottom: var(--space-xl);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.price-period {
    font-size: 1rem;
    color: var(--gray-500);
    font-weight: 500;
    margin-left: 4px;
}

.pricing-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-xl) 0;
    text-align: left;
    flex: 1;
}

.pricing-card-features li {
    padding: var(--space-sm) 0;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--gray-700);
    font-size: 0.95rem;
}

.pricing-card-features li svg {
    color: var(--geneto-green);
    flex-shrink: 0;
}

.pricing-card-btn {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--gray-900);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    margin-top: auto;
}

.pricing-card-btn:hover {
    background: var(--geneto-orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 132, 31, 0.3);
}

/* Featured Card */
.pricing-card-featured {
    border-color: var(--geneto-orange);
    box-shadow: 0 15px 40px rgba(245, 132, 31, 0.15);
}

.pricing-card-featured:hover {
    border-color: var(--geneto-orange);
    box-shadow: 0 30px 60px rgba(245, 132, 31, 0.2);
}

.pricing-card-featured .pricing-card-icon {
    background: linear-gradient(135deg, rgba(245, 132, 31, 0.15) 0%, rgba(245, 132, 31, 0.05) 100%);
}

.pricing-card-featured .pricing-card-btn {
    background: var(--geneto-orange);
}

.pricing-card-featured .pricing-card-btn:hover {
    background: var(--geneto-orange-dark, #e07318);
}

.pricing-card-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--geneto-orange);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(245, 132, 31, 0.4);
}

/* VIP Card */
.pricing-card-vip .pricing-card-icon {
    background: linear-gradient(135deg, rgba(45, 125, 210, 0.15) 0%, rgba(45, 125, 210, 0.05) 100%);
    color: var(--geneto-blue);
}

.pricing-card-vip:hover {
    border-color: var(--geneto-blue);
}

.pricing-card-vip .pricing-card-btn {
    background: var(--geneto-blue);
}

.pricing-card-vip .pricing-card-btn:hover {
    background: #1a5fa0;
    box-shadow: 0 8px 20px rgba(45, 125, 210, 0.3);
}

.pricing-card-vip .pricing-card-badge {
    background: var(--geneto-blue);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta,
.cta-section {
    background: var(--gradient-orange);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: var(--space-3xl) 0;
}

.cta::before,
.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.cta h2,
.cta-section .cta-title {
    color: var(--white);
    margin-bottom: var(--space-md);
    font-size: 2.5rem;
    font-weight: 700;
}

.cta p,
.cta-section .cta-description {
    color: rgba(255,255,255,0.95);
    font-size: 1.35rem;
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-glass { font-size: 1.125rem; padding: 1.25rem 3rem; }

.cta-section .cta-app-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.cta-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding-top: var(--space-4xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; text-align: center; } }

.footer-brand .logo { color: var(--white); margin-bottom: var(--space-md); }
.footer-brand p { font-size: 1rem; line-height: 1.8; margin-bottom: var(--space-lg); }

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

@media (max-width: 600px) { .footer-social { justify-content: center; } }

.footer-social a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: var(--gray-400);
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--gradient-orange);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow-orange);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
}

.footer-links li { margin-bottom: var(--space-sm); }

.footer-links a {
    color: var(--gray-400);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.footer-links a:hover { color: var(--white); padding-left: 8px; }

.footer-contact p {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: 1rem;
}

@media (max-width: 600px) { .footer-contact p { justify-content: center; } }

.footer-apps {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

@media (max-width: 600px) { .footer-apps { align-items: center; } }

.footer-apps img { height: 45px; transition: var(--transition-base); }
.footer-apps a:hover img { transform: scale(1.08); }

.footer-bottom {
    padding: var(--space-lg) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .footer-bottom { flex-direction: column; gap: var(--space-sm); text-align: center; }
}

.footer-legal { display: flex; gap: var(--space-lg); }
.footer-legal a { color: var(--gray-400); transition: var(--transition-fast); }
.footer-legal a:hover { color: var(--geneto-orange); }

/* ==========================================================================
   WooCommerce
   ========================================================================== */

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.woocommerce ul.products li.product {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    margin: 0;
    padding: 0;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    padding: var(--space-md) var(--space-lg) var(--space-xs);
    font-size: 1.25rem;
}

.woocommerce ul.products li.product .price {
    padding: 0 var(--space-lg) var(--space-md);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--geneto-orange);
}

.woocommerce .button,
.woocommerce button.button,
.woocommerce a.button {
    background: var(--gradient-orange) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: var(--radius-full) !important;
    padding: 1rem 2rem !important;
    font-weight: 600 !important;
    transition: var(--transition-base) !important;
}

.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-orange);
}

/* ==========================================================================
   Blog Cards
   ========================================================================== */

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
}

.post-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.post-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.post-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.post-card:hover .post-card-image img { transform: scale(1.1); }

.post-card-content { padding: var(--space-xl); }

.post-card-meta {
    display: flex;
    gap: var(--space-md);
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: var(--space-sm);
}

.post-card h3 {
    font-size: 1.35rem;
    margin-bottom: var(--space-sm);
    transition: var(--transition-fast);
}

.post-card h3:hover { color: var(--geneto-orange); }

.post-card-excerpt {
    color: var(--gray-600);
    font-size: 1rem;
    margin-bottom: var(--space-md);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--geneto-orange);
    font-weight: 600;
}

.read-more:hover { gap: 1rem; }

/* ==========================================================================
   Tarkusepesa / Blog Archive
   ========================================================================== */

/* Hero Section */
.tarkusepesa-hero {
    position: relative;
    padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-4xl);
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
    text-align: center;
}

.tarkusepesa-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

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

.tarkusepesa-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--geneto-orange);
    top: -100px;
    right: -100px;
}

.tarkusepesa-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--geneto-blue);
    bottom: -50px;
    left: -50px;
}

.tarkusepesa-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.tarkusepesa-hero .hero-badge {
    background: rgba(245, 132, 31, 0.2);
    border: 1px solid rgba(245, 132, 31, 0.4);
    color: var(--geneto-orange);
}

.tarkusepesa-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.tarkusepesa-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto;
}

/* Posts Section */
.tarkusepesa-posts {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
    min-height: 50vh;
}

.tarkusepesa-posts .posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

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

@media (max-width: 640px) {
    .tarkusepesa-posts .posts-grid {
        grid-template-columns: 1fr;
    }
}

/* Post Card */
.tarkusepesa-posts .post-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

.tarkusepesa-posts .post-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Thumbnail */
.post-card-thumbnail {
    position: relative;
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.post-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.post-card:hover .post-card-thumbnail img {
    transform: scale(1.08);
}

.post-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.post-card:hover .post-card-overlay {
    opacity: 1;
}

.post-card-no-image {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
}

.post-card-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
}

/* Card Body */
.post-card-body {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.post-card-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
}

.post-date {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.post-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--geneto-orange);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: background 0.2s;
}

.post-category:hover {
    background: var(--geneto-orange-dark, #e07318);
    color: var(--white);
}

.post-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: var(--space-sm);
}

.post-card-title a {
    color: var(--gray-900);
    text-decoration: none;
    transition: color 0.2s;
}

.post-card-title a:hover {
    color: var(--geneto-orange);
}

.post-card-excerpt {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    flex: 1;
}

.post-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--geneto-orange);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.post-card-btn:hover {
    background: var(--geneto-orange-dark, #e07318);
    transform: translateX(4px);
    color: var(--white);
}

.post-card-btn svg {
    transition: transform 0.3s ease;
}

.post-card-btn:hover svg {
    transform: translateX(4px);
}

/* Pagination */
.posts-pagination {
    margin-top: var(--space-3xl);
}

.posts-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.posts-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 var(--space-md);
    background: var(--white);
    color: var(--gray-700);
    font-weight: 600;
    border-radius: var(--radius-lg);
    text-decoration: none;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.posts-pagination .page-numbers:hover {
    background: var(--geneto-orange);
    color: var(--white);
    border-color: var(--geneto-orange);
}

.posts-pagination .page-numbers.current {
    background: var(--geneto-orange);
    color: var(--white);
    border-color: var(--geneto-orange);
}

.posts-pagination .prev,
.posts-pagination .next {
    padding: 0;
}

/* No Posts */
.no-posts-found {
    text-align: center;
    padding: var(--space-4xl) var(--space-lg);
    color: var(--gray-500);
}

.no-posts-found svg {
    margin-bottom: var(--space-lg);
    opacity: 0.5;
}

.no-posts-found h2 {
    font-size: 1.5rem;
    color: var(--gray-700);
    margin-bottom: var(--space-sm);
}

.no-posts-found p {
    margin-bottom: var(--space-xl);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.blog-card-image {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.blog-card-content {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
    font-size: 0.85rem;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--gray-500);
}

.blog-category {
    background: var(--geneto-orange);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-card-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--gray-900);
    text-decoration: none;
    transition: color 0.2s;
}

.blog-card-title a:hover {
    color: var(--geneto-orange);
}

.blog-card-excerpt {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
    flex: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--geneto-orange);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.blog-card-link:hover {
    gap: 0.75rem;
}

/* Pagination */
.geneto-pagination,
.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-2xl);
}

.nav-links a,
.nav-links span.current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 var(--space-md);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
}

.nav-links a {
    background: var(--white);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
}

.nav-links a:hover {
    background: var(--geneto-orange);
    color: var(--white);
    border-color: var(--geneto-orange);
}

.nav-links span.current {
    background: var(--geneto-orange);
    color: var(--white);
}

.no-posts {
    text-align: center;
    padding: var(--space-4xl) 0;
}

.no-posts h2 {
    margin-bottom: var(--space-md);
}

.no-posts p {
    color: var(--gray-600);
}

/* ==========================================================================
   Single Article Page
   ========================================================================== */

/* Article Hero */
.article-hero {
    position: relative;
    padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
}

.article-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

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

.article-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--geneto-orange);
    top: -200px;
    right: -100px;
}

.article-shape-2 {
    width: 350px;
    height: 350px;
    background: var(--geneto-blue);
    bottom: -100px;
    left: -100px;
}

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

.article-meta-top {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.article-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--geneto-orange);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: background 0.2s;
}

.article-category:hover {
    background: var(--geneto-orange-dark);
    color: var(--white);
}

.article-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.article-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.article-excerpt {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.article-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.article-author .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.article-author .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.article-author .author-name {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

.article-author .reading-time {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* Featured Image */
.article-featured-image {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding-bottom: var(--space-2xl);
}

.featured-image-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.featured-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Article Content Layout */
.article-content-section {
    padding: var(--space-2xl) 0;
    background: var(--white);
}

.article-layout {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: var(--space-2xl);
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

/* Sidebar Share Buttons */
.article-sidebar {
    position: relative;
}

.share-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.share-buttons.sticky {
    position: sticky;
    top: calc(var(--header-height) + var(--space-lg));
}

@media (max-width: 768px) {
    .share-buttons {
        flex-direction: row;
        justify-content: center;
        padding-bottom: var(--space-lg);
        border-bottom: 1px solid var(--gray-200);
        margin-bottom: var(--space-lg);
    }

    .share-buttons.sticky {
        position: static;
    }
}

.share-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-xs);
}

@media (max-width: 768px) {
    .share-label {
        display: none;
    }
}

.share-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--gray-600);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-facebook:hover {
    background: #1877f2;
    color: var(--white);
}

.share-twitter:hover {
    background: #000;
    color: var(--white);
}

.share-linkedin:hover {
    background: #0a66c2;
    color: var(--white);
}

.share-copy:hover,
.share-copy.copied {
    background: var(--geneto-green);
    color: var(--white);
}

/* Article Content */
.article-content {
    max-width: 720px;
}

.article-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: var(--space-2xl) 0 var(--space-md);
    line-height: 1.3;
}

.article-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: var(--space-xl) 0 var(--space-sm);
    line-height: 1.4;
}

.article-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: var(--space-lg) 0 var(--space-sm);
}

.article-content p {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--gray-700);
    margin-bottom: var(--space-md);
}

.article-content a {
    color: var(--geneto-orange);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-content a:hover {
    color: var(--geneto-orange-dark);
}

.article-content ul,
.article-content ol {
    margin: var(--space-md) 0;
    padding-left: var(--space-lg);
}

.article-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: var(--space-sm);
}

.article-content ul li {
    list-style-type: disc;
}

.article-content ol li {
    list-style-type: decimal;
}

.article-content blockquote {
    margin: var(--space-xl) 0;
    padding: var(--space-lg) var(--space-xl);
    background: var(--gray-50);
    border-left: 4px solid var(--geneto-orange);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.article-content blockquote p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--gray-700);
    margin: 0;
}

.article-content img {
    border-radius: var(--radius-lg);
    margin: var(--space-xl) 0;
}

.article-content figure {
    margin: var(--space-xl) 0;
}

.article-content figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-top: var(--space-sm);
}

.article-content pre,
.article-content code {
    font-family: 'Fira Code', monospace;
    background: var(--gray-900);
    color: var(--gray-100);
    border-radius: var(--radius-md);
}

.article-content code {
    padding: 0.2em 0.4em;
    font-size: 0.9em;
}

.article-content pre {
    padding: var(--space-lg);
    overflow-x: auto;
    margin: var(--space-lg) 0;
}

.article-content pre code {
    padding: 0;
    background: none;
}

/* Article Tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-sm);
    padding-top: var(--space-2xl);
    margin-top: var(--space-2xl);
    border-top: 1px solid var(--gray-200);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.tags-label {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.article-tags a {
    display: inline-block;
    padding: 0.4rem 0.85rem;
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: 0.85rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.2s ease;
}

.article-tags a:hover {
    background: var(--geneto-orange);
    color: var(--white);
}

/* Author Box */
.author-box-section {
    background: var(--gray-50);
    padding: var(--space-3xl) 0;
}

.author-box {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xl);
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

@media (max-width: 640px) {
    .author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.author-box-avatar {
    flex-shrink: 0;
}

.author-box-avatar img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--geneto-orange);
}

.author-box-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--geneto-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-xs);
}

.author-box-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

.author-box-bio {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* Post Navigation */
.post-navigation-section {
    padding: var(--space-2xl) 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}

.post-nav-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .post-nav-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

.post-nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-nav-link:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.post-nav-prev {
    justify-content: flex-start;
}

.post-nav-next {
    justify-content: flex-end;
    text-align: right;
}

.post-nav-arrow {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--geneto-orange);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.post-nav-link:hover .post-nav-arrow {
    background: var(--geneto-orange);
    color: var(--white);
}

.post-nav-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.post-nav-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-nav-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Related Posts */
.related-posts-section {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

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

@media (max-width: 640px) {
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

.related-posts-section .post-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

.related-posts-section .post-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Article CTA */
.article-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: var(--space-4xl) 0;
    text-align: center;
}

.article-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.article-cta h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.article-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xl);
}

.article-cta .cta-app-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.mb-0 { margin-bottom: 0; }

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   App Store Buttons
   ========================================================================== */

.app-store-btn,
.google-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    border-radius: var(--radius-lg);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-base);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-store-btn:hover,
.google-play-btn:hover {
    background: var(--black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.hero-app-buttons .app-store-btn,
.hero-app-buttons .google-play-btn,
.cta-app-buttons .app-store-btn,
.cta-app-buttons .google-play-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-app-buttons .app-store-btn:hover,
.hero-app-buttons .google-play-btn:hover,
.cta-app-buttons .app-store-btn:hover,
.cta-app-buttons .google-play-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.footer-app-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-app-buttons .app-store-btn,
.footer-app-buttons .google-play-btn {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
}

/* ==========================================================================
   Testimonial Avatar (Letter style)
   ========================================================================== */

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
    flex-shrink: 0;
}

/* ==========================================================================
   Phone Mockup Image
   ========================================================================== */

.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
    border-radius: var(--radius-xl);
}

@media (max-width: 768px) {
    .phone-image {
        max-width: 280px;
    }
}

/* ==========================================================================
   Page Template Styles
   ========================================================================== */

/* Page Hero - centered, simpler version */
.page-hero .article-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero .article-title {
    margin-bottom: var(--space-md);
}

.page-hero .article-excerpt {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* Page Layout - full width content without sidebar */
.page-layout {
    display: block;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Page content section */
.page-content-section {
    padding: var(--space-3xl) 0;
}

.page-content-section .container {
    max-width: 1200px;
}

/* Make sure page content uses the same nice typography */
.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    color: var(--gray-900);
    font-weight: 700;
    line-height: 1.3;
}

.page-content h2 {
    font-size: 1.75rem;
    margin: var(--space-2xl) 0 var(--space-md);
}

.page-content h3 {
    font-size: 1.4rem;
    margin: var(--space-xl) 0 var(--space-sm);
}

.page-content p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.page-content ul,
.page-content ol {
    margin: var(--space-md) 0;
    padding-left: var(--space-lg);
}

.page-content li {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: var(--space-xs);
}

.page-content a {
    color: var(--geneto-orange);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.page-content a:hover {
    color: var(--geneto-orange-dark);
}

.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

.page-content blockquote {
    border-left: 4px solid var(--geneto-orange);
    padding-left: var(--space-lg);
    margin: var(--space-xl) 0;
    font-style: italic;
    color: var(--gray-600);
}

/* Responsive adjustments for pages */
@media (max-width: 768px) {
    .page-hero .article-excerpt {
        font-size: 1.1rem;
    }

    .page-content-section {
        padding: var(--space-2xl) 0;
    }

    .page-content h2 {
        font-size: 1.5rem;
    }

    .page-content h3 {
        font-size: 1.25rem;
    }
}

/* ==========================================================================
   About Page (Meist) Styles
   ========================================================================== */

/* About Hero */
.about-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.about-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.about-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--geneto-orange);
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.about-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--geneto-blue);
    bottom: -150px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.about-shape-3 {
    width: 300px;
    height: 300px;
    background: var(--geneto-green);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 6s ease-in-out infinite;
}

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

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: var(--space-lg);
    backdrop-filter: blur(10px);
}

.about-badge svg {
    color: var(--geneto-orange);
}

.about-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.about-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Mission Section */
.about-mission {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

@media (max-width: 968px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

.mission-content .section-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(245, 132, 31, 0.1);
    color: var(--geneto-orange);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.mission-content .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
    line-height: 1.3;
}

.mission-content p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.stat-card {
    background: var(--gray-50);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.stat-card .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--geneto-orange);
    margin-bottom: var(--space-xs);
}

.stat-card .stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Values Section */
.about-values {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

.about-values .section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.about-values .section-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(245, 132, 31, 0.1);
    color: var(--geneto-orange);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.about-values .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

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

@media (max-width: 640px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.value-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(245, 132, 31, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--geneto-orange);
}

.value-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

.value-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Team Section */
.about-team {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.about-team .section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.about-team .section-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(245, 132, 31, 0.1);
    color: var(--geneto-orange);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.about-team .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

.about-team .section-description {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

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

@media (max-width: 640px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
}

.team-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-lg);
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
}

.team-role {
    display: block;
    color: var(--geneto-orange);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: var(--space-xs);
}

.team-credentials {
    color: var(--gray-500);
    font-size: 0.85rem;
}

/* Founders Grid - Larger cards for management */
.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .founders-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

.founder-card {
    display: flex;
    gap: var(--space-xl);
    padding: var(--space-xl);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.founder-image {
    width: 160px;
    height: 160px;
    flex-shrink: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.founder-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
}

.founder-role {
    display: block;
    color: var(--geneto-orange);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.founder-credentials {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
}

.founder-bio {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: auto;
}

@media (max-width: 640px) {
    .founder-card {
        flex-direction: column;
        text-align: center;
    }

    .founder-image {
        width: 140px;
        height: 140px;
        margin: 0 auto;
    }

    .founder-info {
        align-items: center;
    }
}

/* Advisors Section */
.about-advisors {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

.about-advisors .section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.about-advisors .section-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(45, 125, 210, 0.1);
    color: var(--geneto-blue);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.about-advisors .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

.about-advisors .section-description {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.advisors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

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

@media (max-width: 640px) {
    .advisors-grid {
        grid-template-columns: 1fr;
    }
}

.advisor-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.advisor-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.advisor-avatar {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
}

.advisor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advisor-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.advisor-role {
    color: var(--gray-500);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Partners Section */
.about-partners {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.about-partners .section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.about-partners .section-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(40, 167, 69, 0.1);
    color: var(--geneto-green);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.about-partners .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-2xl) var(--space-xl);
    background: var(--gray-900);
    border-radius: var(--radius-xl);
    min-height: 200px;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.partner-card img {
    max-width: 250px;
    width: 100%;
    height: auto;
    margin-bottom: var(--space-lg);
    opacity: 0.85;
    transition: all var(--transition-base);
}

.partner-card:hover img {
    opacity: 1;
}

.partner-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

/* About CTA */
.about-cta {
    padding: var(--space-4xl) 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--geneto-orange);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    top: -200px;
    right: -100px;
}

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

.about-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.about-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-hero {
        min-height: 50vh;
        padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
    }

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

    .about-description {
        font-size: 1.1rem;
    }

    .about-mission,
    .about-values,
    .about-team,
    .about-advisors,
    .about-partners,
    .about-cta {
        padding: var(--space-3xl) 0;
    }

    .mission-content .section-title,
    .about-values .section-title,
    .about-team .section-title,
    .about-advisors .section-title,
    .about-partners .section-title {
        font-size: 1.75rem;
    }

    .stat-card .stat-number {
        font-size: 2rem;
    }
}
