@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root{--g1:#15422a;--g2:#1d5a38;--g3:#d6ead9;--gold:#c9a227;--gold2:#a88520;--gold-bg:#fdf9ed;--cream:#faf8f5;--paper:#f0ece4;--ink:#1c1917;--ink2:#44403c;--mu:#78716c;--ln:#e7e5e0;--white:#fff;--foot:#0f2d1c;--ff:'Inter',system-ui,-apple-system,sans-serif;--r1:4px;--r2:10px;--r3:20px;--r4:36px;--sh:0 2px 8px rgba(28,25,23,.08);--sh2:0 6px 24px rgba(28,25,23,.12);--sh3:0 12px 48px rgba(21,66,42,.2);--e:all .26s ease;--hn:60px;--cw:1180px}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:var(--ff);font-size:16px;line-height:1.7;color:var(--ink2);background:var(--cream);overflow-x:hidden}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit;transition:var(--e)}
ul,ol{list-style:none}
button{cursor:pointer;border:none;background:none;font-family:var(--ff)}

.content-zone{width:100%;max-width:var(--cw);margin:0 auto;padding:0 24px}
.segment{padding:84px 0}
.segment--paper{background:var(--paper)}
.segment--cream{background:var(--cream)}
.segment--green{background:var(--g1);color:var(--white)}
.segment--gold{background:var(--gold-bg)}
.segment--white{background:var(--white)}

.seg-head{margin-bottom:52px}
.seg-head--center{text-align:center;max-width:620px;margin-left:auto;margin-right:auto;margin-bottom:52px}
.kite{display:inline-block;background:var(--g1);color:var(--white);font-size:.7rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;padding:4px 12px;border-radius:var(--r1);margin-bottom:14px}
.segment--green .kite{background:rgba(255,255,255,.15);color:#fff}
.seg-head h2{font-size:clamp(1.55rem,2.6vw,2.2rem);font-weight:800;color:var(--ink);line-height:1.22;margin-bottom:12px}
.segment--green .seg-head h2{color:#fff}
.seg-head p{font-size:.97rem;color:var(--mu);line-height:1.8}
.segment--green .seg-head p{color:rgba(255,255,255,.68)}

.action-btn{display:inline-flex;align-items:center;gap:8px;padding:12px 26px;border-radius:var(--r1);font-size:.9rem;font-weight:700;transition:var(--e);letter-spacing:.01em;line-height:1}
.action-btn--primary{background:var(--g1);color:var(--white)}
.action-btn--primary:hover{background:var(--g2);transform:translateY(-2px);box-shadow:var(--sh3)}
.action-btn--gold{background:var(--gold);color:var(--ink)}
.action-btn--gold:hover{background:var(--gold2);transform:translateY(-2px)}
.action-btn--outline{border:2px solid var(--g1);color:var(--g1);background:transparent}
.action-btn--outline:hover{background:var(--g1);color:var(--white);transform:translateY(-2px)}
.action-btn--ghost{border:2px solid rgba(255,255,255,.4);color:rgba(255,255,255,.9);background:transparent}
.action-btn--ghost:hover{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.7)}
.action-btn--sm{padding:9px 18px;font-size:.82rem}
.action-btn i{font-size:.88em}

.top-bar{position:fixed;top:0;left:0;right:0;z-index:900;height:var(--hn);background:var(--white);border-bottom:1px solid var(--ln);transition:box-shadow .3s}
.top-bar.lifted{box-shadow:var(--sh2)}
.bar-inner{display:flex;align-items:center;justify-content:space-between;height:var(--hn)}
.site-brand{display:flex;align-items:center;gap:10px}
.site-brand img{width:34px;height:34px;border-radius:var(--r1)}
.brand-text{font-size:1.2rem;font-weight:900;color:var(--ink);letter-spacing:-.5px}
.brand-text b{color:var(--g1)}
.bar-links{display:flex;align-items:center;gap:0}
.bar-links a{font-size:.875rem;font-weight:600;color:var(--mu);padding:8px 13px;border-radius:var(--r1);transition:var(--e)}
.bar-links a:hover,.bar-links a.now{color:var(--g1);background:var(--g3)}
.bar-right{display:flex;align-items:center;gap:12px}
.menu-toggle{display:none;width:38px;height:38px;align-items:center;justify-content:center;border-radius:var(--r1);cursor:pointer;transition:var(--e);color:var(--ink2)}
.menu-toggle:hover{background:var(--paper)}

.nav-overlay{position:fixed;inset:0;z-index:1100;display:flex;flex-direction:column;background:var(--g1);opacity:0;pointer-events:none;transition:opacity .3s ease}
.nav-overlay.active{opacity:1;pointer-events:all}
.overlay-head{display:flex;align-items:center;justify-content:space-between;padding:16px 24px;border-bottom:1px solid rgba(255,255,255,.1)}
.overlay-brand{font-size:1.2rem;font-weight:900;color:#fff}
.overlay-close{width:40px;height:40px;display:flex;align-items:center;justify-content:center;border-radius:var(--r1);cursor:pointer;color:rgba(255,255,255,.7);transition:var(--e)}
.overlay-close:hover{background:rgba(255,255,255,.1);color:#fff}
.overlay-links{flex:1;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:8px;padding:40px 24px}
.overlay-links a{font-size:1.4rem;font-weight:800;color:rgba(255,255,255,.75);padding:12px 28px;border-radius:var(--r2);transition:var(--e);width:100%;max-width:300px;text-align:center}
.overlay-links a:hover,.overlay-links a.now{color:#fff;background:rgba(255,255,255,.1)}
.overlay-foot{padding:24px;border-top:1px solid rgba(255,255,255,.1);text-align:center}

.home-split{min-height:100vh;display:flex;align-items:stretch;padding-top:var(--hn);background:var(--cream)}
.split-left{flex:1;display:flex;align-items:center;padding:80px 64px 80px 24px;max-width:600px;margin:0 auto 0 auto}
.split-left-inner{width:100%}
.entry-tag{display:inline-flex;align-items:center;gap:7px;border:1.5px solid var(--g1);color:var(--g1);font-size:.72rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;padding:5px 12px;border-radius:var(--r1);margin-bottom:22px}
.entry-tag i{font-size:.68rem}
.split-left h1{font-size:clamp(2rem,3.8vw,3.1rem);font-weight:900;color:var(--ink);line-height:1.17;margin-bottom:20px}
.split-left h1 strong{color:var(--g1)}
.split-left p{font-size:1.02rem;color:var(--mu);line-height:1.82;margin-bottom:36px;max-width:480px}
.hero-ctas{display:flex;gap:14px;flex-wrap:wrap}
.hero-numbers{display:flex;gap:40px;margin-top:52px;padding-top:36px;border-top:1px solid var(--ln)}
.hero-num{}
.hero-num b{display:block;font-size:1.9rem;font-weight:900;color:var(--g1);line-height:1}
.hero-num span{font-size:.75rem;color:var(--mu);text-transform:uppercase;letter-spacing:.07em}
.split-right{width:480px;flex-shrink:0;position:relative;overflow:hidden;min-height:500px}
.split-right img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0}
.split-right-overlay{position:absolute;inset:0;background:linear-gradient(to bottom,transparent 60%,rgba(15,45,28,.7))}
.split-badge{position:absolute;bottom:32px;left:32px;right:32px;background:rgba(255,255,255,.95);border-radius:var(--r2);padding:16px 20px;display:flex;align-items:center;gap:14px;backdrop-filter:blur(8px)}
.split-badge i{font-size:1.3rem;color:var(--g1)}
.split-badge-text strong{display:block;font-size:.9rem;font-weight:800;color:var(--ink)}
.split-badge-text span{font-size:.78rem;color:var(--mu)}

.page-banner{background:var(--g1);padding:calc(var(--hn) + 44px) 0 52px;position:relative;overflow:hidden}
.page-banner::after{content:'';position:absolute;inset:0;background-image:repeating-linear-gradient(45deg,rgba(255,255,255,.03) 0,rgba(255,255,255,.03) 1px,transparent 0,transparent 50%);background-size:12px 12px}
.banner-body{position:relative;z-index:1}
.crumbs{display:flex;align-items:center;gap:7px;margin-bottom:16px}
.crumbs a,.crumbs span{font-size:.8rem;color:rgba(255,255,255,.55)}
.crumbs a:hover{color:var(--gold)}
.crumbs i{font-size:.58rem;color:rgba(255,255,255,.3)}
.page-banner h1{font-size:clamp(1.7rem,3vw,2.5rem);font-weight:900;color:#fff;line-height:1.2;margin-bottom:12px}
.page-banner .sub{font-size:.97rem;color:rgba(255,255,255,.7);line-height:1.75;max-width:540px}

.g3-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.g2-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:28px}
.g4-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}

.benefit-item{background:var(--white);border-radius:var(--r2);padding:28px 24px;border-left:4px solid var(--g1);box-shadow:var(--sh);transition:var(--e)}
.benefit-item:hover{transform:translateX(4px);box-shadow:var(--sh2)}
.ben-ico{width:48px;height:48px;border-radius:var(--r1);background:var(--g3);display:flex;align-items:center;justify-content:center;margin-bottom:16px}
.ben-ico i{font-size:1.25rem;color:var(--g1)}
.benefit-item h3{font-size:.97rem;font-weight:800;color:var(--ink);margin-bottom:8px}
.benefit-item p{font-size:.855rem;color:var(--mu);line-height:1.72}

.mode-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.mode-card{background:var(--white);border-radius:var(--r3);overflow:hidden;box-shadow:var(--sh);transition:var(--e);display:flex;flex-direction:column}
.mode-card:hover{box-shadow:var(--sh3);transform:translateY(-4px)}
.mode-img{height:200px;overflow:hidden;position:relative}
.mode-img img{width:100%;height:100%;object-fit:cover;transition:transform .45s}
.mode-card:hover .mode-img img{transform:scale(1.06)}
.mode-stamp{position:absolute;top:12px;left:12px;background:var(--g1);color:#fff;font-size:.68rem;font-weight:800;padding:4px 10px;border-radius:var(--r1);letter-spacing:.05em;text-transform:uppercase}
.mode-body{padding:22px;flex:1;display:flex;flex-direction:column}
.mode-body h3{font-size:.97rem;font-weight:800;color:var(--ink);margin-bottom:8px}
.mode-body p{font-size:.845rem;color:var(--mu);line-height:1.7;flex:1;margin-bottom:14px}
.mode-tags{display:flex;gap:6px;flex-wrap:wrap}
.mode-tag{font-size:.68rem;font-weight:700;background:var(--g3);color:var(--g1);padding:2px 9px;border-radius:var(--r1);letter-spacing:.03em}

.post-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.post-card{background:var(--white);border-radius:var(--r2);overflow:hidden;box-shadow:var(--sh);transition:var(--e);display:flex;flex-direction:column}
.post-card:hover{box-shadow:var(--sh2);transform:translateY(-3px)}
.post-thumb{height:185px;overflow:hidden}
.post-thumb img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.post-card:hover .post-thumb img{transform:scale(1.05)}
.post-body{padding:20px;flex:1;display:flex;flex-direction:column}
.post-cat{display:inline-block;border:1.5px solid var(--g1);color:var(--g1);font-size:.68rem;font-weight:700;padding:2px 10px;border-radius:var(--r1);margin-bottom:10px;letter-spacing:.04em}
.post-body h3{font-size:.94rem;font-weight:800;color:var(--ink);margin-bottom:8px;line-height:1.42}
.post-body p{font-size:.835rem;color:var(--mu);line-height:1.68;flex:1}
.post-foot{display:flex;align-items:center;justify-content:space-between;margin-top:14px;padding-top:12px;border-top:1px solid var(--ln)}
.post-date{display:flex;align-items:center;gap:5px;font-size:.76rem;color:var(--mu)}
.post-date i{font-size:.7rem;color:var(--g1)}
.post-more{display:flex;align-items:center;gap:4px;font-size:.8rem;font-weight:700;color:var(--g1);transition:gap .2s}
.post-more:hover{gap:8px}

.step-flow{display:flex;flex-direction:column;gap:32px;max-width:680px;margin:0 auto}
.step-unit{display:grid;grid-template-columns:56px 1fr;gap:20px;align-items:start}
.step-num{width:52px;height:52px;border-radius:50%;background:var(--gold);color:var(--ink);font-size:1.1rem;font-weight:900;display:flex;align-items:center;justify-content:center;flex-shrink:0;box-shadow:0 4px 16px rgba(201,162,39,.35)}
.step-unit h3{font-size:1rem;font-weight:800;color:var(--ink);margin-bottom:7px;padding-top:12px}
.step-unit p{font-size:.875rem;color:var(--mu);line-height:1.78}

.faq-set{max-width:780px;margin:0 auto;display:flex;flex-direction:column;gap:8px}
.faq-unit{background:var(--white);border:1px solid var(--ln);border-radius:var(--r2);overflow:hidden;transition:border-color .25s}
.faq-unit.open{border-color:var(--g1)}
.faq-q{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:16px 20px;cursor:pointer;font-weight:700;font-size:.91rem;color:var(--ink);user-select:none}
.faq-q .fq-mark{width:28px;height:28px;border-radius:50%;border:2px solid var(--g1);display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:var(--e)}
.faq-q .fq-mark i{font-size:.75rem;color:var(--g1);transition:transform .3s}
.faq-unit.open .faq-q .fq-mark{background:var(--g1)}
.faq-unit.open .faq-q .fq-mark i{color:#fff;transform:rotate(45deg)}
.faq-ans{max-height:0;overflow:hidden;transition:max-height .4s ease}
.faq-unit.open .faq-ans{max-height:500px}
.faq-ans-in{padding:0 20px 18px;font-size:.88rem;color:var(--mu);line-height:1.82;border-top:1px solid var(--ln)}

.callout{display:flex;gap:14px;background:var(--g3);border-radius:var(--r2);padding:18px 22px;margin:24px 0}
.callout i{font-size:1rem;color:var(--g1);flex-shrink:0;margin-top:3px}
.callout p{font-size:.875rem;color:var(--ink2);line-height:1.75}

.danger-callout{display:flex;gap:14px;background:#fff3f3;border-left:4px solid #dc2626;border-radius:var(--r2);padding:16px 20px;margin:24px 0}
.danger-callout i{color:#dc2626;flex-shrink:0;margin-top:2px;font-size:1rem}
.danger-callout p{font-size:.875rem;color:var(--ink2);line-height:1.75}

.yazi-layout{display:grid;grid-template-columns:1fr 280px;gap:48px;align-items:start}
.yazi-body h2{font-size:1.35rem;font-weight:800;color:var(--ink);margin:32px 0 12px;padding-left:14px;border-left:4px solid var(--gold)}
.yazi-body h3{font-size:1.05rem;font-weight:700;color:var(--g1);margin:24px 0 8px}
.yazi-body p{font-size:.94rem;color:var(--ink2);line-height:1.88;margin-bottom:18px}
.yazi-body ul{margin-bottom:18px;display:flex;flex-direction:column;gap:8px}
.yazi-body ul li{display:flex;align-items:flex-start;gap:10px;font-size:.94rem;color:var(--ink2);line-height:1.72}
.yazi-body ul li i{color:var(--g1);font-size:.8rem;margin-top:5px;flex-shrink:0}
.yazi-body strong{color:var(--ink);font-weight:800}
.yazi-thumb{width:100%;height:380px;object-fit:cover;border-radius:var(--r3);margin-bottom:34px;box-shadow:var(--sh2)}
.yazi-header h1{font-size:clamp(1.6rem,2.8vw,2.2rem);font-weight:900;color:var(--ink);line-height:1.2;margin-bottom:14px}
.yazi-meta{display:flex;flex-wrap:wrap;gap:16px;margin-bottom:30px}
.ymeta{display:flex;align-items:center;gap:5px;font-size:.8rem;color:var(--mu)}
.ymeta i{color:var(--g1);font-size:.75rem}
.tag-list{display:flex;gap:7px;flex-wrap:wrap;margin-top:30px;padding-top:24px;border-top:1px solid var(--ln)}
.tag-item{font-size:.76rem;font-weight:700;background:var(--g3);color:var(--g1);padding:3px 12px;border-radius:var(--r1);transition:var(--e)}
.tag-item:hover{background:var(--g1);color:#fff}

.sidebar-block{background:var(--white);border-radius:var(--r2);padding:22px;margin-bottom:20px;border:1px solid var(--ln)}
.sidebar-block h4{font-size:.82rem;font-weight:800;color:var(--ink);letter-spacing:.06em;text-transform:uppercase;margin-bottom:14px;padding-bottom:10px;border-bottom:2px solid var(--gold)}
.sidebar-links{display:flex;flex-direction:column;gap:8px}
.sidebar-links a{font-size:.845rem;color:var(--ink2);padding:7px 0;border-bottom:1px solid var(--ln);display:flex;align-items:center;gap:8px;transition:var(--e)}
.sidebar-links a:last-child{border-bottom:none}
.sidebar-links a:hover{color:var(--g1);padding-left:6px}
.sidebar-links a i{font-size:.72rem;color:var(--g1);flex-shrink:0}

.yazilar-grid{display:flex;flex-direction:column;gap:24px}
.yazi-row{background:var(--white);border-radius:var(--r2);border:1px solid var(--ln);overflow:hidden;display:grid;grid-template-columns:220px 1fr;transition:var(--e)}
.yazi-row:hover{box-shadow:var(--sh2);border-color:var(--g3);transform:translateY(-2px)}
.yazi-row-img{min-height:160px}
.yazi-row-img img{width:100%;height:100%;object-fit:cover;display:block}
.yazi-row-body{padding:20px}
.yazi-row-body h2{font-size:.94rem;font-weight:800;color:var(--ink);margin-bottom:8px;line-height:1.4}
.yazi-row-body h2 a:hover{color:var(--g1)}
.yazi-row-body p{font-size:.84rem;color:var(--mu);line-height:1.65}

.iletisim-grid{display:grid;grid-template-columns:1fr 1.4fr;gap:48px;align-items:start}
.ilet-tile{display:flex;gap:14px;background:var(--white);border:1px solid var(--ln);border-radius:var(--r2);padding:20px;margin-bottom:14px;transition:var(--e)}
.ilet-tile:hover{border-color:var(--g1)}
.ilet-ico{width:42px;height:42px;background:var(--g3);border-radius:var(--r1);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.ilet-ico i{font-size:1rem;color:var(--g1)}
.ilet-body h4{font-size:.855rem;font-weight:800;color:var(--ink);margin-bottom:3px}
.ilet-body p,.ilet-body a{font-size:.84rem;color:var(--mu);line-height:1.6}
.ilet-body a:hover{color:var(--g1)}
.map-block{border-radius:var(--r2);overflow:hidden;border:1px solid var(--ln)}
.map-block iframe{display:block;width:100%;height:400px;border:none}

.legal-sheet{max-width:820px;margin:0 auto;background:var(--white);border:1px solid var(--ln);border-radius:var(--r3);padding:52px 56px}
.legal-sheet h2{font-size:1.1rem;font-weight:800;color:var(--ink);margin:28px 0 8px;padding-top:20px;border-top:1px solid var(--ln)}
.legal-sheet h2:first-of-type{border-top:none;margin-top:0;padding-top:0}
.legal-sheet p{font-size:.875rem;color:var(--mu);line-height:1.88;margin-bottom:12px}
.legal-sheet ul{margin-bottom:12px;display:flex;flex-direction:column;gap:6px;padding-left:2px}
.legal-sheet ul li{display:flex;gap:10px;font-size:.875rem;color:var(--mu);line-height:1.7}
.legal-sheet ul li i{font-size:.72rem;color:var(--g1);flex-shrink:0;margin-top:5px}
.legal-date{display:inline-block;background:var(--g3);color:var(--g1);font-size:.78rem;font-weight:700;padding:5px 14px;border-radius:var(--r1);margin-bottom:28px}

.soc-strip{display:flex;gap:10px;flex-wrap:wrap}
.soc-btn{width:38px;height:38px;border-radius:var(--r1);display:flex;align-items:center;justify-content:center;font-size:.9rem;transition:var(--e);flex-shrink:0}
.soc-btn:hover{transform:translateY(-3px)}
.soc-ig{background:#e1306c;color:#fff}
.soc-pt{background:#e60023;color:#fff}
.soc-yt{background:#ff0000;color:#fff}
.soc-tk{background:#010101;color:#fff}
.soc-vm{background:#1ab7ea;color:#fff}
.soc-li{background:#0077b5;color:#fff}

.site-footer{background:var(--foot);padding:68px 0 0;color:rgba(255,255,255,.65)}
.footer-cols{display:grid;grid-template-columns:1.8fr 1fr 1.2fr;gap:52px}
.footer-brand{}
.foot-logo{display:flex;align-items:center;gap:10px;margin-bottom:16px}
.foot-logo img{width:32px;height:32px;border-radius:var(--r1)}
.foot-logo span{font-size:1.15rem;font-weight:900;color:#fff}
.foot-logo span em{color:var(--gold);font-style:normal}
.footer-brand p{font-size:.845rem;line-height:1.82;margin-bottom:20px}
.foot-title{font-size:.75rem;font-weight:800;color:#fff;letter-spacing:.1em;text-transform:uppercase;margin-bottom:16px}
.foot-nav{display:flex;flex-direction:column;gap:9px}
.foot-nav a{font-size:.845rem;color:rgba(255,255,255,.5);transition:var(--e)}
.foot-nav a:hover{color:var(--gold);padding-left:4px}
.foot-bar{border-top:1px solid rgba(255,255,255,.08);margin-top:48px;padding:18px 0}
.foot-bar-in{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:10px}
.foot-bar-in p{font-size:.78rem;color:rgba(255,255,255,.35)}
.foot-bar-links{display:flex;gap:20px}
.foot-bar-links a{font-size:.78rem;color:rgba(255,255,255,.35);transition:var(--e)}
.foot-bar-links a:hover{color:var(--gold)}

.gone-page{min-height:100vh;background:var(--g1);display:flex;align-items:center;justify-content:center;padding:40px}
.gone-inner{text-align:center;max-width:460px}
.gone-404{font-size:8rem;font-weight:900;color:var(--gold);line-height:1;text-shadow:0 0 60px rgba(201,162,39,.4)}
.gone-inner h1{font-size:1.7rem;font-weight:800;color:#fff;margin-bottom:12px}
.gone-inner p{color:rgba(255,255,255,.65);line-height:1.8;font-size:.95rem;margin-bottom:32px}

.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.fade-in{opacity:0;transform:translateY(22px);transition:opacity .55s ease,transform .55s ease}
.fade-in.show{opacity:1;transform:translateY(0)}

@media(max-width:1100px){
.split-right{width:380px}
.g4-grid{grid-template-columns:repeat(2,1fr)}
.footer-cols{grid-template-columns:1fr 1fr;gap:36px}
.yazi-layout{grid-template-columns:1fr}
}
@media(max-width:900px){
.segment{padding:64px 0}
.home-split{flex-direction:column;min-height:auto}
.split-left{max-width:100%;padding:60px 24px 48px}
.split-right{width:100%;height:320px}
.g3-grid,.mode-grid,.post-grid{grid-template-columns:repeat(2,1fr)}
.iletisim-grid{grid-template-columns:1fr}
.legal-sheet{padding:36px 28px}
}
@media(max-width:768px){
.bar-links,.bar-right .action-btn{display:none}
.menu-toggle{display:flex}
.g3-grid,.mode-grid,.post-grid,.g2-grid{grid-template-columns:1fr}
.g4-grid{grid-template-columns:1fr 1fr}
.footer-cols{grid-template-columns:1fr}
.foot-bar-in{flex-direction:column;text-align:center}
.yazi-row{grid-template-columns:1fr}
.yazi-row-img{height:180px}
}
@media(max-width:520px){
.hero-numbers{flex-wrap:wrap;gap:20px}
.hero-ctas{flex-direction:column}
.hero-ctas .action-btn{width:100%;justify-content:center}
.g4-grid{grid-template-columns:1fr}
.split-badge{left:16px;right:16px;bottom:16px}
}
