/* 
 * PSİKOLOGv2 — MODERN TAMA GÖRE YENİDEN TASARLANDI
 * Glassmorphism + Soft Gradients + Clean Typography
 */

/* ───────── ROOT VARIABLES ───────── */
:root {
    --primary: #6366f1;
    --primary-light: color-mix(in srgb, var(--primary) 12%, transparent);
    --primary-dark: #3730a3;
    --accent: #8b5cf6;
    --glass-bg: rgba(255,255,255,.72);
    --glass-border: rgba(255,255,255,.45);
    --surface: #f8fafc;
    --text: #0f172a;
    --text-light: #475569;
    --text-muted: #94a3b8;
    --radius: 20px;
    --radius-sm: 12px;
    --shadow: 0 8px 32px color-mix(in srgb, var(--primary) 12%, transparent);
    --shadow-lg: 0 24px 60px color-mix(in srgb, var(--primary) 18%, transparent);
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ───────── RESET & BASE ───────── */
* { margin:0; padding:0; box-sizing:border-box; }

body {
    font-family: var(--font-main);
    color: var(--text);
    background: var(--surface);
    overflow-x: hidden;
    line-height: 1.6;
}

a { text-decoration:none; color:inherit; transition:color .3s; }
img { max-width:100%; height:auto; border-radius:var(--radius-sm); }

/* ───────── HERO SECTION — FULLSCREEN MODERN SLIDER ───────── */
.hero-new {
    position: relative;
    min-height: calc(100vh - 88px);
    min-height: calc(100svh - 88px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Animated gradient background */
.hero-bg-layer {
    position: absolute; inset:0; z-index:0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--accent-2) 100%);
    animation: heroGradientShift 15s ease-in-out infinite alternate;
}

@keyframes heroGradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-bg-layer::before {
    content:''; position:absolute; inset:0;
    background: linear-gradient(180deg, color-mix(in srgb, var(--primary) 30%, transparent) 0%, color-mix(in srgb, var(--accent) 58%, transparent) 100%);
}

/* Floating organic shapes */
.hero-organic-shapes {
    position:absolute; inset:0; z-index:2; overflow:hidden;
}

.shape {
    position: absolute; border-radius:50%; filter:blur(80px);
    opacity:.35; mix-blend-mode:screen;
}

.shape-s1 { width:700px; height:700px; background:var(--accent); top:-150px; right:-100px; animation:heroShapeFloat 20s ease-in-out infinite alternate; }
.shape-s2 { width:500px; height:500px; background:var(--primary); bottom:-80px; left:8%; animation:heroShapeFloat 16s ease-in-out infinite alternate-reverse; }
.shape-s3 { width:400px; height:400px; background:var(--accent-2); top:35%; left:45%; animation:heroShapeFloat 22s ease-in-out infinite alternate; }
.shape-s4 { width:600px; height:600px; background:color-mix(in srgb, var(--accent-2) 70%, #fff); bottom:-200px; right:15%; animation:heroShapeFloat 18s ease-in-out infinite alternate-reverse; }
.shape-s5 { width:350px; height:350px; background:color-mix(in srgb, var(--primary) 36%, #fff); top:15%; left:20%; animation:heroShapeFloat 24s ease-in-out infinite alternate; }

@keyframes heroShapeFloat {
    0%   { transform: translate(0,0) scale(1); }
    33%  { transform: translate(40px,-60px) scale(1.15); }
    66%  { transform: translate(-30px,40px) scale(.9); }
    100% { transform: translate(20px,-20px) scale(1.1); }
}

/* Particle dots */
.hero-particles {
    position:absolute; inset:0; z-index:1; pointer-events:none;
}

/* Slide track */
.hero-inner {
    position:relative; z-index:3; width:100%; min-height:calc(100vh - 88px); min-height:calc(100svh - 88px);
    display:flex; align-items:center; justify-content:center; overflow:hidden;
}

.hero-content-area {
    width:100%; max-width:none; margin:0; padding:0;
    position:relative;
}

/* Individual slides */
.hero-slides-track {
    position:relative; width:100%; height:calc(100vh - 88px); height:calc(100svh - 88px); min-height:720px;
}

.hero-slide {
    position:absolute; inset:0; opacity:0;
    transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
    transform: scale(1.05) translateY(20px);
    overflow:hidden;
}

.hero-slide.active {
    opacity:1; transform:scale(1) translateY(0); z-index:2;
}

/* Slide background image */
.slide-bg {
    position:absolute; inset:0; z-index:0;
    background-size:cover; background-position:center;
    filter:brightness(.76) saturate(1.04);
    transform:scale(1.04);
}

.hero-slide.active .slide-bg {
    transition:transform 8s ease-out;
    transform:scale(1.02);
}

/* Slide overlay */
.slide-overlay {
    position:absolute; inset:0; z-index:1;
    background:
        linear-gradient(135deg,
            color-mix(in srgb, var(--primary) 58%, transparent) 0%,
            color-mix(in srgb, var(--accent) 46%, transparent) 45%,
            color-mix(in srgb, var(--accent-2) 34%, transparent) 100%
        ),
        linear-gradient(180deg,
            color-mix(in srgb, var(--dark) 34%, transparent) 0%,
            color-mix(in srgb, var(--dark) 18%, transparent) 42%,
            color-mix(in srgb, var(--dark) 58%, transparent) 100%
        );
    mix-blend-mode:multiply;
}

/* Slide content */
.hero-slide .container {
    position:relative;
    z-index:3;
    min-height:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding-left:120px;
    padding-right:120px;
}

.hero-badge.glass {
    display:inline-flex; align-items:center; gap:8px;
    padding:12px 28px; border-radius:50px;
    background:rgba(255,255,255,.2); backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,.35);
    font-size:14px; color:#fff; font-weight:600; margin-bottom:32px;
    animation:badgeFadeIn 1s cubic-bezier(.4,0,.2,1) both .2s;
}

@keyframes badgeFadeIn { from{opacity:0;transform:translateY(-20px);} to{opacity:1;transform:none;} }

.hero-headline {
    font-size:clamp(2.5rem,6vw,4.8rem); font-weight:900; color:#fff;
    line-height:1.1; margin-bottom:24px; letter-spacing:-0.03em;
    text-shadow:0 4px 40px rgba(0,0,0,.25);
}

.hero-desc {
    font-size:clamp(1.05rem,2vw,1.3rem); color:rgba(255,255,255,.9);
    max-width:600px; margin:0 auto 48px; line-height:1.7;
}

.hero-actions-row {
    display:flex; gap:16px; justify-content:center; flex-wrap:wrap;
}

/* CTA buttons */
.hero-btn {
    padding:18px 42px; border-radius:52px; font-weight:700; font-size:16px;
    cursor:pointer; transition:all .4s cubic-bezier(.4,0,.2,1);
    border:none; outline:none; display:inline-flex; align-items:center; gap:10px;
    text-decoration:none; position:relative; overflow:hidden;
}

.hero-btn-white {
    background:#fff; color:var(--primary-dark);
    box-shadow:0 8px 32px rgba(255,255,255,.2);
}
.hero-btn-white:hover { transform:translateY(-4px) scale(1.04); box-shadow:0 16px 48px rgba(255,255,255,.35); }

.hero-btn-glass {
    background:rgba(255,255,255,.18); color:#fff; backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.35);
}
.hero-btn-glass:hover { background:rgba(255,255,255,.3); transform:translateY(-4px); }

/* Slide indicators (dots) */
.hero-indicators {
    position:absolute; bottom:100px; left:50%; transform:translateX(-50%);
    display:flex; gap:10px; z-index:10;
}

.hero-dot {
    width:12px; height:12px; border-radius:50%; cursor:pointer;
    background:rgba(255,255,255,.3); border:2px solid rgba(255,255,255,.4);
    transition:all .3s; padding:0;
}

.hero-dot.active {
    background:#fff; width:36px; border-radius:6px; border-color:#fff;
}

/* Navigation arrows */
.hero-nav-btn {
    position:absolute; top:50%; transform:translateY(-50%); z-index:10;
    width:52px; height:52px; border-radius:50%; cursor:pointer;
    background:rgba(255,255,255,.12); backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.25); color:#fff; font-size:20px;
    display:flex; align-items:center; justify-content:center;
    transition:all .3s; text-decoration:none;
}
.hero-nav-btn:hover { background:rgba(255,255,255,.25); transform:translateY(-50%) scale(1.1); }

.hero-prev { left:24px; }
.hero-next { right:24px; }

/* Scroll down animation */
.hero-scroll-down {
    position:absolute; bottom:36px; left:50%; transform:translateX(-50%);
    display:flex; flex-direction:column; align-items:center; gap:6px;
    color:rgba(255,255,255,.6); font-size:11px; letter-spacing:.15em; z-index:10;
}

.scroll-line-anim {
    width:1px; height:40px; background:linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
    animation:scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%,100% { opacity:.4; transform:scaleY(.8) translateY(-5px); }
    50% { opacity:1; transform:scaleY(1.2) translateY(0); }
}

/* Slide animation classes */
.slide-up-anim { opacity:0; transform:translateY(30px) !important; }
.slide-up-anim.active { animation:slideUpIn .8s cubic-bezier(.4,0,.2,1) both; }

.delay-1 { transition-delay:.15s !important; }
.delay-2 { transition-delay:.3s !important; }

@keyframes slideUpIn { to{opacity:1;transform:none;} }

/* Floating stats cards */
.hero-stats-row { margin-top:72px; display:flex; gap:32px; justify-content:center; flex-wrap:wrap; }
.hero-stat-card {
    background:rgba(255,255,255,.14); backdrop-filter:blur(16px); border:1px solid rgba(255,255,255,.28);
    padding:20px 28px; border-radius:var(--radius-sm); text-align:center; min-width:140px; animation:statFade .8s ease-out both; color:#fff;
}
.hero-stat-card .num { font-size:32px; font-weight:900; display:block; }
.hero-stat-card .lbl { font-size:13px; opacity:.75; margin-top:4px; display:block; }

@keyframes statFade { from{opacity:0;transform:translateY(20px);} to{opacity:1;transform:none;} }

/* ───────── SECTION BASE ───────── */
.section-modern { padding: 120px 24px; position:relative; overflow:hidden; }

.section-modern::before,
.section-modern .bg-soft {
    position:absolute; inset:0; pointer-events:none; z-index:0;
}

.bg-waves {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='400' viewBox='0 0 1440 400'%3E%3Cpath fill='%23eef2ff' d='M0,288L48,272C96,256,192,224,288,213.3C384,203,480,213,576,229.3C672,245,768,267,864,261.3C960,256,1056,224,1152,208C1248,192,1344,192,1392,192L1440,192L1440,400L1392,400C1344,400,1248,400,1152,400C1056,400,960,400,864,400C768,400,672,400,576,400C480,400,384,400,288,400C192,400,96,400,48,400L0,400Z'/%3E%3C/svg%3E"); 
    background-size:cover; background-position:bottom; bottom:0; top:auto; height:300px;
}

.section-container { max-width:1200px; margin:0 auto; position:relative; z-index:2; }

/* Section Header — Modern Glass */
.section-header { text-align:center; margin-bottom:72px; }
.section-header .eyebrow {
    display:inline-flex; align-items:center; gap:8px;
    font-size:14px; font-weight:700; letter-spacing:.08em;
    color:var(--primary); background:var(--primary-light);
    padding:8px 20px; border-radius:50px; margin-bottom:20px; text-transform:uppercase;
}

.section-header h2 {
    font-size:clamp(2rem,4vw,3.2rem); font-weight:900; color:var(--text); margin-bottom:16px; line-height:1.2;
}

.section-header p {
    font-size:1.15rem; color:var(--text-light); max-width:600px; margin:0 auto; line-height:1.7;
} /* ───────── ABOUT — GLASS CARD LAYOUT ───────── */
.about-modern { display:flex; gap:64px; align-items:center; flex-wrap:wrap; }

.about-image-wrapper { position:relative; flex:1; min-width:320px; }

.about-image-wrapper img {
    width:100%; border-radius:var(--radius); box-shadow:var(--shadow-lg); object-fit:cover;
    max-height:480px;
}

/* decoration dot behind image */
.about-image-wrapper::before {
    content:''; position:absolute; top:-20px; left:-20px; width:100px; height:100px;
    border-radius:50%; background:var(--primary-light); z-index:-1;
}

.about-content { flex:1; min-width:320px; }

.about-badge-row { display:flex; gap:16px; margin-bottom:32px; flex-wrap:wrap; }
.about-badge-item {
    background: var(--glass-bg); backdrop-filter:blur(12px); padding:16px 24px; border-radius:var(--radius-sm); border:1px solid var(--glass-border); display:flex; align-items:center; gap:12px;
}
.about-badge-item .icon-circle { width:48px; height:48px; border-radius:50%; display:flex; align-items:center; justify-content:center; background:var(--primary-light); color:var(--primary); font-size:20px; }
.about-badge-item .txt strong { display:block; font-weight:700; color:var(--text); }
.about-badge-item .txt span { font-size:13px; color:var(--text-muted); }

.about-content-inner h3 { font-size:1.8rem; font-weight:800; margin-bottom:20px; color:var(--text); line-height:1.3; }
.about-content-inner p  { color:var(--text-light); font-size:1.05rem; line-height:1.8; margin-bottom:16px; }

/* ───────── SERVICES — HORIZONTAL GLASS CARDS ───────── */
.services-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:28px; }

.svc-modern {
    background: rgba(255,255,255,.7); backdrop-filter:blur(16px); border:1px solid rgba(255,255,255,.4); border-radius:var(--radius); padding:0; overflow:hidden; transition: all .5s cubic-bezier(.4,0,.2,1); position:relative;
}

.svc-modern:hover { transform:translateY(-8px) scale(1.02); box-shadow: var(--shadow-lg); border-color:var(--primary-light); }

.svc-modern-img-wrap { position:relative; overflow:hidden; height:200px; }

.svc-modern-img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.svc-modern:hover .svc-modern-img-wrap img { transform:scale(1.08); }

.svc-modern-body { padding:28px 24px; }

.svc-modern-icon-row { display:flex; gap:6px; margin-bottom:12px; }
.svc-dot { width:6px; height:6px; border-radius:50%; background:var(--primary); opacity:.6; }
.svc-dot:first-child { opacity:.9; }

.svc-modern h4 { font-size:1.3rem; font-weight:800; margin-bottom:10px; color:var(--text); }
.svc-modern p  { font-size:.97rem; color:var(--text-light); line-height:1.7; margin-bottom:20px; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }

.svc-link { color:var(--primary); font-weight:700; font-size:.95rem; display:inline-flex; align-items:center; gap:6px; transition:gap .3s, color .3s; }
.svc-link:hover { gap:12px; color:var(--accent); }

/* ───────── WHY / FEATURES ───────── */
.why-section { background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); padding:120px 24px; position:relative; overflow:hidden; color:#fff; }

.why-section::after { content:'';position:absolute;inset:0;background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='%23ffffff10'/%3E%3C/svg%3E"); }

.features-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:32px; max-width:1100px; margin:0 auto; position:relative; z-index:2; }

.feature-card { background:rgba(255,255,255,.1); backdrop-filter:blur(12px); border:1px solid rgba(255,255,255,.2); border-radius:var(--radius); padding:36px 28px; transition:all .4s; text-align:center; }
.feature-card:hover { background:rgba(255,255,255,.2); transform:translateY(-6px); }

.feature-icon-circle { width:72px; height:72px; border-radius:50%; background:rgba(255,255,255,.18); display:flex; align-items:center; justify-content:center; margin:0 auto 24px; font-size:30px; transition:all .4s; }
.feature-card:hover .feature-icon-circle { background:rgba(255,255,255,.35); transform:rotate(10deg) scale(1.1); }

.features-grid h4 { font-size:1.2rem; font-weight:700; margin-bottom:8px; }
.features-grid p  { color:rgba(255,255,255,.85); font-size:.95rem; line-height:1.6; }

/* ───────── TESTIMONIALS — GLASS SLIDER CARDS ───────── */
.testi-modern-wrap { position:relative; overflow:hidden; }

.testi-track { display:flex; gap:24px; overflow-x:auto; scroll-snap-type:x mandatory; scroll-behavior:smooth; -webkit-overflow-scrolling:touch; padding-bottom:16px; scrollbar-width:none; }
.testi-track::-webkit-scrollbar { display:none; }

.testi-card { 
    min-width:340px; max-width:400px; flex-shrink:0; scroll-snap-align:start;
    background: rgba(255,255,255,.75); backdrop-filter:blur(18px); border:1px solid rgba(255,255,255,.45);
    border-radius:var(--radius); padding:36px 28px; position:relative; transition:all .4s; 
}
.testi-card:hover { transform:translateY(-4px); box-shadow: var(--shadow); background: rgba(255,255,255,.92); }

.testi-stars { display:flex; gap:4px; margin-bottom:16px; color:#fbbf24; font-size:18px; }
.testi-card > p  { color:var(--text-light); font-size:1rem; line-height:1.75; margin-bottom:24px; font-style:italic; }

.testi-user { display:flex; align-items:center; gap:14px; border-top:1px solid rgba(0,0,0,.08); padding-top:20px; }
.testi-avatar { width:56px; height:56px; border-radius:50%; overflow:hidden; object-fit:cover; border:3px solid var(--primary-light); }
.testi-user strong { display:block; font-size:.97rem; color:var(--text); }
.testi-user span  { font-size:13px; color:var(--text-muted); }

/* ───────── BLOG — CARDS WITH MODERN OVERLAY ───────── */
.blog-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:28px; }

.blog-card-modern { background:#fff; border-radius:var(--radius); overflow:hidden; box-shadow:none; transition: all .5s; border:1px solid rgba(0,0,0,.04); }
.blog-card-modern:hover { transform:translateY(-6px); box-shadow: var(--shadow-lg); }

.blog-img-wrap { position:relative; overflow:hidden; height:220px; }
.blog-img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.blog-card-modern:hover .blog-img-wrap img { transform:scale(1.06); }

.blog-date-overlay { position:absolute; top:16px; left:16px; background:var(--primary); color:#fff; padding:8px 14px; border-radius:50px; font-size:12px; font-weight:700; }
.blog-category-badge { position:absolute; bottom:16px; right:16px; background:rgba(255,255,255,.9); backdrop-filter:blur(8px); padding:6px 14px; border-radius:50px; font-size:13px; font-weight:600; color:var(--primary-dark); }

.blog-body { padding:24px; }
.blog-body h4   { font-size:1.18rem; font-weight:800; line-height:1.35; margin-bottom:10px; color:var(--text); transition:color .3s; }
.blog-card-modern:hover .blog-body h4 { color:var(--primary); }
.blog-body p    { font-size:.93rem; color:var(--text-light); line-height:1.7; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; margin-bottom:16px; }
.blog-meta      { display:flex; align-items:center; gap:10px; font-size:.85rem; color:var(--text-muted); }
.blog-meta .dot { width:4px; height:4px; border-radius:50%; background:var(--primary); opacity:.6; }

/* ───────── STATS BAR — UNDER HERO ───────── */
.stats-bar-new {
    background:#fff; border-top:1px solid rgba(0,0,0,.05); display:flex; justify-content:center; gap:80px; flex-wrap:wrap; padding:48px 24px;
}

.stat-item { text-align:center; }
.stat-item .num { font-size:38px; font-weight:900; background:linear-gradient(135deg,var(--primary),var(--accent)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; line-height:1.1; }
.stat-item .lbl { font-size:.9rem; color:var(--text-muted); margin-top:4px; font-weight:600; }

/* ───────── FOOTER — DARK MODERN ───────── */
.footer-new { background:linear-gradient(135deg,#0f172a 0%,#1e293b 100%); color:#fff; padding:80px 24px 32px; position:relative; overflow:hidden; }

.footer-new::before { content:'';position:absolute;top:0;left:50%;transform:translateX(-50%);width:900px;height:1px;background:linear-gradient(to right,transparent,color-mix(in srgb, var(--primary) 50%, transparent),transparent); }

.footer-grid { max-width:1200px;margin:0 auto;display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:48px; margin-bottom:48px; position:relative;z-index:2; border-radius:var(--radius) var(--radius) 0 0; }
.footer-new .ft-title { font-size:1.3rem; font-weight:800; margin-bottom:20px; color:#fff; }

.footer-grid p, .footer-new li { color:rgba(255,255,255,.7); font-size:.93rem; line-height:1.8; }
.footer-new a    { color:rgba(255,255,255,.7); transition:color .3s; }
.footer-new a:hover  { color:var(--accent-2); }

.footer-grid ul { list-style:none; }
.footer-grid li a { display:flex; align-items:center; gap:8px; padding:6px 0; transition:gap .3s,color .3s; }
.footer-grid li a:hover { gap:12px; color:var(--accent-2); }

.f-social { display:flex; gap:12px; margin-top:24px; }
.f-social a { width:44px; height:44px; border-radius:50%; background:rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; transition:all .3s; font-size:18px; color:#fff; border:1px solid rgba(255,255,255,.1); }
.f-social a:hover { background:var(--primary); transform:translateY(-4px) scale(1.08); }

.ft-bottom { max-width:1200px;margin:0 auto;border-top:1px solid rgba(255,255,255,.08);padding-top:32px;display:flex;justify-content:space-between;flex-wrap:wrap;gap:16px;font-size:.87rem;color:rgba(255,255,255,.4);position:relative;z-index:2; }

/* ───────── RESPONSIVE ───────── */
@media (max-width:768px) {
    .hero-new,
    .hero-inner {
        min-height:calc(100vh - 66px);
        min-height:calc(100svh - 66px);
    }
    .hero-slides-track {
        height:calc(100vh - 66px);
        height:calc(100svh - 66px);
        min-height:640px;
    }
    .hero-slide .container {
        padding-left:18px;
        padding-right:18px;
        width:100vw;
        max-width:100vw;
        overflow:hidden;
    }
    .hero-badge.glass {
        padding:10px 18px;
        max-width:calc(100vw - 36px);
    }
    .hero-headline {
        width:100%;
        max-width:260px;
        margin-left:auto;
        margin-right:auto;
        font-size:clamp(1.35rem,6.3vw,1.65rem);
        line-height:1.14;
        overflow-wrap:break-word;
        letter-spacing:0;
        white-space:normal;
    }
    .hero-desc {
        width:100%;
        max-width:270px;
        margin-left:auto;
        margin-right:auto;
        margin-bottom:32px;
        font-size:.92rem;
        overflow-wrap:break-word;
        white-space:normal;
    }
    .hero-actions-row {
        width:100%;
        max-width:280px;
        margin-left:auto;
        margin-right:auto;
        flex-direction:column;
        align-items:center;
    }
    .hero-btn {
        width:min(100%, 280px);
        justify-content:center;
        padding:16px 24px;
    }
    .hero-nav-btn {
        display:none;
    }
    .hero-indicators {
        bottom:28px;
    }
    .hero-scroll-down {
        display:none;
    }
    .section-modern  { padding:80px 16px; }
    .about-modern   { flex-direction:column; gap:40px; }
    .hero-stats-row  { gap:16px; margin-top:48px; }
    .hero-stat-card  { min-width:120px; padding:16px; }
    .stats-bar-new   { gap:32px; }
    .testi-card      { min-width:290px; }
    .features-grid   { grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:20px; }
    .footer-grid     { grid-template-columns:1fr; }
}
