/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #E7EDDF;
    --bg-dark: #D6DFC9;
    --text: #375926;
    --text-muted: rgba(78, 93, 66, 0.8);
    --card: #FAF9F5;
    --accent: #EE9E4F;
    --accent-light: #FBAE62;
    --green-light: #8AAC6B;
    --green-mid: #4E5D42;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --border: #EEEEEE;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}


/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 0;
    box-shadow: 0 1px 16px rgba(0, 0, 0, 0.06);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-store-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    transition: transform 0.2s ease, opacity 0.2s;
    border-radius: 8px;
}

.store-btn:hover {
    transform: scale(1.04);
    opacity: 0.92;
}

.store-btn:active {
    transform: scale(0.98);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
}

.mobile-store-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}


/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg-blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: rgba(138, 172, 107, 0.35);
    top: -100px;
    right: -100px;
    animation: blobFloat 18s ease-in-out infinite;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: rgba(238, 158, 79, 0.2);
    bottom: -50px;
    left: -80px;
    animation: blobFloat 22s ease-in-out infinite reverse;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: rgba(138, 172, 107, 0.25);
    top: 40%;
    left: 30%;
    animation: blobFloat 15s ease-in-out infinite 3s;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    min-width: 0;
}

.hero-text h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 20px;
}

.highlight {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 700px;
    margin-bottom: 36px;
    font-weight: 500;
}

.hero-store-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}


/* ===== Phone Mockup (iPhone 15 Pro) ===== */
.hero-phone {
    flex-shrink: 0;
    position: relative;
}

.phone-frame {
    width: 280px;
    height: 570px;
    background: linear-gradient(145deg, #3a3a3c, #2c2c2e 40%, #1c1c1e 60%, #2c2c2e);
    border-radius: 52px;
    padding: 10px;
    position: relative;
    box-shadow:
        /* Titanium edge highlight */
        inset 0 0 0 1px rgba(255, 255, 255, 0.12),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.15),
        /* Outer frame border */
        0 0 0 1.5px #1a1a1c,
        /* Shadow layers */
        0 20px 50px rgba(0, 0, 0, 0.35),
        0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Side buttons */
.phone-frame::before {
    content: '';
    position: absolute;
    /* Power button - right side */
    right: -2.5px;
    top: 145px;
    width: 3px;
    height: 52px;
    background: linear-gradient(180deg, #4a4a4c, #3a3a3c, #4a4a4c);
    border-radius: 0 2px 2px 0;
    box-shadow: 1px 0 2px rgba(0,0,0,0.3);
}

.phone-frame::after {
    content: '';
    position: absolute;
    /* Volume buttons - left side */
    left: -2.5px;
    top: 120px;
    width: 3px;
    height: 36px;
    background: linear-gradient(180deg, #4a4a4c, #3a3a3c, #4a4a4c);
    border-radius: 2px 0 0 2px;
    box-shadow: -1px 0 2px rgba(0,0,0,0.3);
}

/* Volume down button (via screen pseudo-element) */
.phone-screen::after {
    content: '';
    position: absolute;
    left: -12.5px;
    top: 162px;
    width: 3px;
    height: 36px;
    background: linear-gradient(180deg, #4a4a4c, #3a3a3c, #4a4a4c);
    border-radius: 2px 0 0 2px;
    box-shadow: -1px 0 2px rgba(0,0,0,0.3);
    z-index: 10;
}

/* Dynamic Island */
.phone-dynamic-island {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #000;
    border-radius: 20px;
    z-index: 5;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

/* Camera dot inside Dynamic Island */
.phone-dynamic-island::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, #1a2a3a, #0a0a15);
    box-shadow: inset 0 0 2px rgba(255,255,255,0.05);
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 44px;
    overflow: hidden;
    position: relative;
    background: var(--bg);
    /* Glass reflection */
    box-shadow: inset 0 0 0 0.5px rgba(255,255,255,0.1);
}

/* Phone garden screen */
.phone-garden {
    width: 100%;
    height: 100%;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Hero area — top 40% */
.phone-hero-area {
    position: relative;
    width: 100%;
    height: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

.phone-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.phone-mascot-container {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    z-index: 2;
}

.phone-mascot-container canvas {
    width: 100%;
    height: 100%;
}

.phone-hero-shadow {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 18px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.18) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.phone-hero-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(0deg, var(--bg), transparent);
    z-index: 3;
}

/* Garden content below hero */
.phone-garden-content {
    flex: 1;
    padding: 4px 10px 12px;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.phone-garden-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0 2px;
    margin-bottom: 6px;
}

.phone-garden-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--text);
}

.phone-garden-count {
    font-size: 9px;
    font-weight: 600;
    color: var(--text-muted);
}

.phone-garden-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.phone-plant-card {
    background: var(--card);
    border-radius: 10px;
    padding: 4px 6px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 1px 4px rgba(55, 89, 38, 0.06);
    overflow: visible;
    position: relative;
}

.phone-plant-rive {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.phone-plant-rive canvas {
    width: 90px;
    height: 90px;
    margin-top: -40px;
    margin-bottom: 6px;
}

.phone-plant-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 2px 2px 0;
}

.phone-plant-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text);
}

.phone-plant-level {
    font-size: 9px;
    font-weight: 700;
    color: var(--accent);
    background: rgba(238, 158, 79, 0.12);
    padding: 1px 6px;
    border-radius: 8px;
}

.phone-plant-water {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 9px;
    font-weight: 600;
    color: var(--text-muted);
    width: 100%;
    padding: 2px 2px 0;
}

.phone-water-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.phone-water-dot.dot-ok {
    background: var(--green-light);
}


/* ===== Features ===== */
.features {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 800;
    margin-bottom: 56px;
    color: var(--text);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(55, 89, 38, 0.05);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:nth-child(2) { transition-delay: 0.08s; }
.feature-card:nth-child(3) { transition-delay: 0.16s; }
.feature-card:nth-child(4) { transition-delay: 0.24s; }

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(55, 89, 38, 0.1);
}

.feature-card.visible:hover {
    transform: translateY(-4px);
}

.feature-icon {
    margin: 0 auto 16px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 500;
}


/* ===== Evolution Section ===== */
.how-it-works {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-dark) 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 17px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: -36px;
    margin-bottom: 48px;
}

.evolution-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.evo-step {
    text-align: center;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.evo-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.evo-step:nth-child(3) { transition-delay: 0.08s; }
.evo-step:nth-child(5) { transition-delay: 0.16s; }
.evo-step:nth-child(7) { transition-delay: 0.24s; }

.evo-visual {
    width: 240px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.evo-visual canvas {
    width: 230px;
    height: 230px;
    margin-top: -95px;
}

.evo-dark-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.evo-mystery {
    opacity: 0.5;
}

.evo-question {
    font-size: 64px;
    font-weight: 800;
    color: var(--text-muted);
    opacity: 0.3;
}

.evo-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px;
    box-shadow: 0 3px 12px rgba(238, 158, 79, 0.35);
}

.evo-number-mystery {
    background: linear-gradient(135deg, rgba(78, 93, 66, 0.4), rgba(78, 93, 66, 0.25));
    box-shadow: 0 3px 12px rgba(78, 93, 66, 0.15);
}

.evo-desc {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.evo-arrow {
    flex-shrink: 0;
    margin-bottom: 36px;
}


/* ===== CTA ===== */
.cta {
    padding: 80px 0;
    background: var(--bg-dark);
}

.cta-inner {
    display: flex;
    align-items: center;
    gap: 48px;
    background: var(--card);
    border-radius: var(--radius-xl);
    padding: 56px 64px;
    overflow: visible;
    box-shadow: 0 8px 32px rgba(55, 89, 38, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.cta-inner.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-mascot {
    width: 200px;
    height: 167px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.cta-mascot canvas {
    width: 320px;
    height: 320px;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}


.cta-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
}

.cta-content p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 28px;
    font-weight: 500;
}

.cta-store-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}


/* ===== Footer ===== */
.footer {
    padding: 40px 0;
    background: var(--green-mid);
    color: rgba(255, 255, 255, 0.85);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.footer-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}


/* ===== About Section ===== */
.about {
    padding: 80px 0 100px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-mission {
    margin-bottom: 32px;
}

.about-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.about-text p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 500;
    margin-bottom: 12px;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-stat {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(55, 89, 38, 0.05);
}

.about-stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.2;
    margin-bottom: 4px;
}

.about-stat-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Footer social links */
.footer-socials {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-legal {
    text-align: left;
}

.footer-socials a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
}

.footer-socials a:hover {
    color: #fff;
    transform: scale(1.15);
}


/* ===== Blog ===== */
.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blog-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 2px 8px rgba(55, 89, 38, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(55, 89, 38, 0.1);
}

.blog-card-icon {
    flex-shrink: 0;
}

.blog-card-date {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-content h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--text);
    margin: 4px 0 8px;
}

.blog-card-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 12px;
}

.blog-card-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
}

/* Blog post */
.blog-back {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 24px;
    transition: color 0.2s;
}

.blog-back:hover {
    color: var(--text);
}

.blog-meta {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 32px;
}

/* About page */
.about-hero-block {
    margin-bottom: 36px;
}

.about-hero-block h2 {
    margin-top: 0;
}

.about-stats-row {
    display: flex;
    gap: 16px;
    margin: 40px 0;
}

.about-stats-row .about-stat {
    flex: 1;
}

.about-company-details {
    margin-top: 48px;
}


/* ===== Legal & Support Pages ===== */
.legal-page {
    padding: 140px 0 80px;
    min-height: 100vh;
}

.legal-container {
    max-width: 800px;
}

.legal-container h1 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
}

.legal-updated {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 32px;
}

.legal-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-top: 36px;
    margin-bottom: 12px;
}

.legal-container h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-top: 20px;
    margin-bottom: 8px;
}

.legal-container p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 12px;
    font-weight: 500;
}

.legal-container ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-container li {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 4px;
    font-weight: 500;
}

.legal-container a {
    color: var(--accent);
    font-weight: 600;
    transition: opacity 0.2s;
}

.legal-container a:hover {
    opacity: 0.8;
}

.legal-address {
    background: var(--card);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 16px 0 24px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 500;
}

/* Support page cards */
.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 56px;
}

.support-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(55, 89, 38, 0.05);
}

.support-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(55, 89, 38, 0.1);
}

.support-icon {
    margin-bottom: 14px;
}

.support-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
    margin-top: 0;
}

.support-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
    font-weight: 500;
}

.support-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent) !important;
    transition: opacity 0.2s;
}

.support-link:hover {
    opacity: 0.8;
}

/* Support contact section */
.support-contact-section {
    margin-bottom: 56px;
}

.support-contact-section h2 {
    margin-top: 0;
}

.support-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.support-contact-item {
    background: var(--card);
    border-radius: var(--radius);
    padding: 24px;
}

.support-contact-item h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-top: 0;
    margin-bottom: 8px;
}

.support-contact-item a {
    font-size: 15px;
    font-weight: 700;
    color: var(--accent);
    display: block;
    margin-bottom: 6px;
}

.support-contact-item p {
    font-size: 13px;
    margin-bottom: 0;
}

/* FAQ section */
.support-faq h2 {
    margin-top: 0;
}

.faq-item {
    background: var(--card);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 12px;
}

.faq-item h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-top: 0;
    margin-bottom: 6px;
}

.faq-item p {
    font-size: 14px;
    margin-bottom: 0;
}

/* Footer legal line */
.footer-legal {
    text-align: right;
}

.footer-company {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    margin-top: 4px;
}


/* ===== Responsive ===== */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-store-buttons {
        justify-content: center;
    }

    .phone-frame {
        width: 240px;
        height: 490px;
        border-radius: 44px;
    }

    .phone-screen {
        border-radius: 36px;
    }

    .phone-dynamic-island {
        width: 86px;
        height: 24px;
        top: 16px;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 40px 32px;
    }

    .cta-store-buttons {
        justify-content: center;
    }

    .evolution-steps {
        flex-wrap: wrap;
        gap: 12px;
    }

    .evo-visual {
        width: 160px;
        height: 160px;
    }

    .evo-visual canvas {
        width: 150px;
        height: 150px;
    }

    .evo-dark-img {
        width: 140px;
        height: 140px;
    }

    .evo-arrow {
        display: none;
    }

    .support-contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: row;
    }

    .about-stat {
        flex: 1;
    }
}

@media (max-width: 640px) {
    .nav-links, .nav-store-buttons {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        text-align: center;
    }

    .about-stats {
        flex-direction: column;
    }

    .about-stats-row {
        flex-direction: column;
    }

    .blog-card {
        flex-direction: column;
        gap: 16px;
    }

    .footer-row {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
    }

    .footer-company {
        text-align: center;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .support-contact-grid {
        grid-template-columns: 1fr;
    }

    .legal-page {
        padding: 120px 0 60px;
    }

    .container {
        padding: 0 20px;
    }
}
