:root{
  --bg:#f7f7f5;
  --bg-elevated:#ffffff;
  --bg-soft:#fbfaf8;
  --surface:#ffffff;
  --surface-alt:rgba(255,255,255,.72);
  --text:#14213d;
  --muted:#5e6678;
  --muted-strong:#495166;
  --line:rgba(20,33,61,.10);
  --line-strong:rgba(197,145,48,.28);
  --gold:#c59130;
  --gold-deep:#9b6b18;
  --gold-soft:#f4ead6;
  --navy:#182f5c;
  --shadow-sm:0 10px 30px rgba(15,23,42,.05);
  --shadow-md:0 10px 28px rgba(15,23,42,.05);
  --shadow-lg:0 18px 48px rgba(15,23,42,.08);
  --radius-sm:18px;
  --radius-md:22px;
  --radius-lg:28px;
  --sidebar-width:284px;
  --content-max:1240px;
  --content-pad:44px;
  --section-space:38px;
  --stack-gap:24px;
  --card-pad:22px;
  --font-sans:"Manrope",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  --font-serif:"Cormorant Garamond","Times New Roman",serif;
  --fs-body:16px;
  --fs-lead:18px;
  --fs-hero:clamp(2.9rem, 4.4vw, 4.6rem);
  --fs-h2:clamp(2.55rem, 3.35vw, 3.55rem);
  --fs-h3:clamp(1.16rem, 1.35vw, 1.36rem);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font-sans);
  font-size:var(--fs-body);
  line-height:1.72;
  color:var(--text);
  background:
    radial-gradient(circle at top right, rgba(197,145,48,.05), transparent 22%),
    radial-gradient(circle at bottom left, rgba(197,145,48,.035), transparent 24%),
    var(--bg);
}

body.menu-open{overflow:hidden}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
button,input,textarea{font:inherit}

h1,h2,h3,h4,h5,h6{
  margin:0;
  color:var(--text);
  line-height:1.08;
  letter-spacing:-.045em;
  font-weight:700;
}

h1,h2{font-family:var(--font-sans)}
h3,h4{font-family:var(--font-sans)}
p,li,span,a,label,small{
  color:var(--muted);
  font-size:1rem;
}

p,ul,ol{margin:0}
ul{
  margin:0;
  padding:0;
  list-style:none;
}

strong{
  color:var(--text);
  font-weight:700;
}

.container{
  width:min(100%, var(--content-max));
  margin:0 auto;
  padding-inline:var(--content-pad);
}

.feature-card,
.mini-card,
.team-card,
.info-chip,
.package-card,
.timeline-card,
.cta-banner,
.success-callout,
.content-card,
.info-card,
.form-card,
.cookie-banner,
.stack-card,
.quote-card,
.success-list-card{
  background:var(--surface);
  border:0;
  box-shadow:var(--shadow-md);
}

.surface{
  background:transparent;
  border:0;
  box-shadow:none;
}

.site-header{
  position:fixed;
  inset:0 auto 0 0;
  width:var(--sidebar-width);
  z-index:50;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(18px);
  border-right:1px solid rgba(20,33,61,.08);
}

.header-inner{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:space-between;
  padding:28px 24px 22px;
}

.brand{
  width:100%;
  display:flex;
  justify-content:center;
}

.brand img{
  width:172px;
  height:auto;
}

.main-nav{
  width:100%;
  display:grid;
  gap:10px;
  margin-block:auto;
}

.main-nav a,
.mobile-nav a{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:10px 18px;
  border-radius:999px;
  font-size:.92rem;
  font-weight:700;
  color:var(--muted-strong);
  transition:background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.main-nav a:hover,
.mobile-nav a:hover{
  color:var(--text);
  background:rgba(255,255,255,.82);
  box-shadow:0 8px 24px rgba(15,23,42,.06);
}

.main-nav a.active,
.mobile-nav a.active{
  color:var(--gold-deep);
  background:linear-gradient(180deg, #f8efd9 0%, #f3e6c8 100%);
  box-shadow:0 16px 36px rgba(197,145,48,.18);
}

.sidebar-meta{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  text-align:center;
}

.sidebar-meta-title,
.sidebar-link,
.sidebar-langs,
.sidebar-langs a{
  font-size:.82rem;
  color:#778095;
}

.sidebar-langs{
  display:flex;
  align-items:center;
  gap:8px;
}

.sidebar-langs a.active,
.sidebar-langs a:hover,
.sidebar-link:hover{
  color:var(--gold);
}

.mobile-toggle,
.mobile-panel{display:none}

main,
.site-footer{
  margin-left:var(--sidebar-width);
}

main{
  overflow:hidden;
}

.hero,
.section,
.section-tight{
  position:relative;
}

.hero{
  padding:18px 0 12px;
}

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

.section-tight{
  padding:20px 0 42px;
}

.hero + .section,
.section + .section{
  border-top:1px solid rgba(20,33,61,.07);
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0, 1fr);
  gap:var(--stack-gap);
  align-items:center;
  min-height:min(100vh, 980px);
}

.hero-copy{
  max-width:1120px;
  padding:48px 0 40px;
  background:transparent;
  box-shadow:none;
}

.hero-copy > *{
  animation:fadeRise .8s ease both;
}

.hero-copy > *:nth-child(2){animation-delay:.06s}
.hero-copy > *:nth-child(3){animation-delay:.12s}
.hero-copy > *:nth-child(4){animation-delay:.18s}
.hero-copy > *:nth-child(5){animation-delay:.24s}
.hero-copy > *:nth-child(6){animation-delay:.3s}

.eyebrow,
.section-tag,
.badge,
.team-role{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:.85rem;
  font-weight:700;
  font-family:var(--font-serif);
}

.eyebrow,
.section-tag{
  font-size:1.16rem;
  letter-spacing:.22em;
}

.eyebrow::before,
.section-tag::before{
  content:"";
  width:34px;
  height:1px;
  background:linear-gradient(90deg, rgba(197,145,48,.1), rgba(197,145,48,.7));
}

.hero h1{
  font-size:var(--fs-hero);
  max-width:15.2ch;
  margin-top:14px;
  line-height:1.04;
}

html[lang="tr"] .page-home .hero h1{
  font-size:clamp(2.55rem, 3.25vw, 3.7rem);
  max-width:16.5ch;
  line-height:1.02;
}

html[lang="tr"] .page-home .hero .lead{
  max-width:78ch;
}

html[lang="tr"] .page-home .hero p{
  max-width:86ch;
}

html[lang="tr"] .page-home .stats-grid{
  max-width:1180px;
}

.hero p{
  max-width:78ch;
  margin-top:16px;
}

.hero .lead{
  font-size:var(--fs-lead);
  line-height:1.62;
  color:var(--muted-strong);
  max-width:68ch;
}

.badge-row,
.button-row,
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}

.badge-row{
  margin-top:24px;
}

.badge{
  min-height:40px;
  padding:10px 15px;
  border-radius:999px;
  background:rgba(255,255,255,.76);
  box-shadow:0 8px 20px rgba(15,23,42,.04);
  letter-spacing:.14em;
  font-size:.74rem;
}

.hero-actions,
.button-row{
  margin-top:28px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 24px;
  border-radius:999px;
  font-weight:700;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

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

.btn-primary{
  background:var(--navy);
  color:#fff;
  box-shadow:0 12px 24px rgba(24,47,92,.14);
}

.btn-primary:hover{
  box-shadow:0 16px 28px rgba(24,47,92,.18);
}

.btn-secondary,
.btn-ghost{
  background:rgba(255,255,255,.7);
  color:var(--text);
  box-shadow:0 10px 30px rgba(15,23,42,.06);
}

.btn-secondary{
  border:1px solid rgba(197,145,48,.34);
}

.btn-ghost{
  border:1px solid rgba(20,33,61,.10);
}

.stats-grid{
  margin-top:32px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
  max-width:1040px;
}

.metric{
  padding-top:22px;
  border-top:1px solid rgba(197,145,48,.46);
  border-radius:0;
  box-shadow:none;
  background:transparent;
}

.metric strong{
  display:block;
  font-size:1.8rem;
  line-height:1;
  color:var(--gold);
  margin-bottom:10px;
}

.metric span{
  display:block;
  max-width:22ch;
  font-size:.98rem;
}

.grid-2{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(320px, .88fr);
  gap:var(--stack-gap);
  align-items:start;
}

.grid-3,
.card-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:20px;
}

.section-subgrid{
  margin-top:32px;
}

.content-card,
.success-callout,
.quote-card,
.feature-card,
.package-card,
.timeline-card,
.success-list-card,
.testimonial-card,
.team-card,
.cta-banner,
.info-card,
.form-card{
  border-radius:var(--radius-md);
}

.content-card,
.stack-card,
.info-card,
.form-card,
.success-callout{
  padding:28px;
}

.content-card p + p,
.section-head p + p{
  margin-top:16px;
}

.media-card,
.media-frame,
.placeholder-frame{
  position:relative;
  overflow:hidden;
  border-radius:26px;
  background:#e9edf3;
  box-shadow:var(--shadow-lg);
}

.media-card img,
.media-frame img,
.placeholder-frame img,
.team-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.media-card,
.placeholder-frame{
  aspect-ratio:1 / .9;
}

#biz-kimiz .media-card{
  margin-top:46px;
}

.quote-card{
  padding:28px;
  background:linear-gradient(180deg, #fff 0%, #fcfaf5 100%);
}

.quote-card p{
  color:var(--text);
  font-family:var(--font-serif);
  font-size:1.65rem;
  line-height:1.16;
  letter-spacing:-.03em;
}

.quote-card strong{
  display:block;
  margin-top:18px;
  color:var(--gold);
}

.feature-card,
.package-card,
.success-list-card,
.testimonial-card{
  padding:var(--card-pad);
}

.feature-card .icon,
.package-card .icon,
.success-list-card .icon{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:14px;
  margin-bottom:14px;
  color:var(--gold);
  background:linear-gradient(180deg, #faf2e0 0%, #f5e6c3 100%);
  font-weight:800;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.8);
}

.feature-card h3,
.package-card h3,
.success-list-card h3,
.team-card h3,
.timeline-card h4{
  margin-bottom:12px;
}

.feature-card p,
.package-card p,
.success-list-card p,
.timeline-card p,
.team-card p,
.testimonial-card p{
  color:var(--muted);
}

.feature-card ul,
.package-card ul,
.success-list,
.info-grid,
.form-grid{
  margin-top:18px;
}

.feature-card li,
.package-card li,
.success-list li{
  position:relative;
  padding-left:18px;
  margin-top:10px;
}

.feature-card li::before,
.package-card li::before,
.success-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.8em;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--gold);
}

.section-head{
  max-width:700px;
  margin-bottom:20px;
}

.section-head h2{
  font-size:var(--fs-h2);
  margin-top:14px;
}

.content-card > h2{
  font-size:var(--fs-h2);
  margin-bottom:20px;
  line-height:1.08;
}

.stack-card > h2,
.info-card > h2,
.form-card > h2,
.cta-content h2{
  font-size:var(--fs-h2);
  line-height:1.08;
}

.section-head p{
  margin-top:16px;
  font-size:.98rem;
}

.compact-head{
  margin:24px 0 14px;
}

.compact-head h3{
  font-size:1.28rem;
  line-height:1.16;
}

.package-card{
  min-height:100%;
}

.timeline-grid{
  display:grid;
  gap:18px;
}

.timeline-card{
  display:grid;
  grid-template-columns:56px 1fr;
  gap:16px;
  padding:18px 20px;
}

.step{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:16px;
  color:var(--navy);
  background:linear-gradient(180deg, #faf2e0 0%, #f3e4c1 100%);
  font-size:1.2rem;
  font-weight:800;
}

.section-split,
.success-top{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(300px, .7fr);
  gap:var(--stack-gap);
  align-items:start;
}

#basarilarimiz .success-top{
  grid-template-columns:minmax(0, 1fr);
  grid-template-areas:
    "head"
    "callout";
  gap:22px;
  align-items:start;
}

#basarilarimiz .success-head{
  grid-area:head;
  max-width:780px;
  margin-bottom:0;
}

#basarilarimiz .success-callout{
  grid-area:callout;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  min-height:auto;
  padding:30px 34px;
  max-width:860px;
  background:linear-gradient(180deg, #fff 0%, #fcfaf6 100%);
  border-radius:26px;
  box-shadow:var(--shadow-md);
}

.success-callout{
  align-self:stretch;
}

.success-callout h2{
  font-size:clamp(1.7rem, 2.2vw, 2.4rem);
  max-width:12ch;
}

#basarilarimiz .success-callout h2{
  max-width:none;
  line-height:1.1;
  font-size:clamp(2rem, 2.6vw, 2.9rem);
}

#basarilarimiz .success-callout p{
  margin-top:16px;
  max-width:52ch;
  font-size:1.05rem;
}

#basarilarimiz .success-callout strong{
  display:block;
  margin-top:18px;
  color:var(--gold-deep);
  font-size:1.08rem;
}

#basarilarimiz .success-callout .section-tag{
  margin-bottom:12px;
}

.success-callout .button-row,
.success-callout .hero-actions{
  margin-top:26px;
}

.success-highlights,
.success-universities,
.testimonials-wrap{
  padding-top:28px;
}

#basarilarimiz .success-highlights,
#basarilarimiz .success-universities,
#basarilarimiz .testimonials-wrap{
  padding-top:32px;
}

.testimonial-card{
  min-height:0;
  height:auto;
  box-shadow:0 8px 22px rgba(15,23,42,.04);
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  gap:16px;
}

.testimonial-card strong{
  display:block;
  margin-top:auto;
  color:var(--gold-deep);
  font-size:.97rem;
}

.content-slider{
  display:grid;
  gap:18px;
  --slider-gap:24px;
}

.content-slider.is-static{
  gap:0;
}

.content-slider-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.content-slider-status{
  color:var(--gold);
  font-family:var(--font-serif);
  font-size:1.1rem;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.content-slider-controls{
  display:flex;
  gap:10px;
}

.content-slider-btn{
  width:44px;
  height:44px;
  border:0;
  border-radius:999px;
  background:var(--surface);
  color:var(--text);
  box-shadow:var(--shadow-sm);
  cursor:pointer;
  transition:transform .2s ease, opacity .2s ease, box-shadow .2s ease;
}

.content-slider-btn:hover:not(:disabled){
  transform:translateY(-1px);
  box-shadow:0 16px 32px rgba(15,23,42,.08);
}

.content-slider-btn:disabled{
  opacity:.35;
  cursor:not-allowed;
}

.content-slider-viewport{
  overflow:hidden;
}

.content-slider.is-static .content-slider-viewport{
  overflow:visible;
}

.testimonial-grid.is-slider,
.university-grid.is-slider{
  display:flex;
  gap:var(--slider-gap);
  transition:transform .35s ease;
  width:max-content;
}

.testimonial-grid.is-slider{
  align-items:flex-start;
}

.testimonial-grid.is-slider > *,
.university-grid.is-slider > *{
  flex:0 0 auto;
}

.testimonial-card p{
  overflow:visible;
}

.content-slider.is-static .testimonial-grid.is-slider,
.content-slider.is-static .university-grid.is-slider{
  width:100% !important;
  transform:none !important;
}

.team-card{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:0;
  overflow:hidden;
}

#ekip .grid-3{
  grid-template-columns:1fr;
}

.team-card img{
  min-height:100%;
  aspect-ratio:1 / .86;
}

.team-card > div:last-child{
  padding:24px;
}

.team-role{
  margin-bottom:16px;
}

.cta-section .cta-banner{
  display:block;
  padding:30px 34px;
}

.cta-content{
  max-width:760px;
}

.cta-content h2{
  margin-top:10px;
}

.cta-content p{
  margin-top:14px;
  max-width:68ch;
}

.cta-actions{
  margin-top:24px;
  justify-content:flex-start;
}

.page-contact .hero{
  padding-top:50px;
}

.page-contact .hero-grid{
  grid-template-columns:minmax(0, 1fr) minmax(340px, .8fr);
  gap:32px;
}

.page-contact .hero-copy{
  max-width:820px;
}

.page-contact .media-frame{
  width:100%;
  aspect-ratio:1 / .95;
  min-height:0;
}

#hizmetlerimiz .grid-2.section-subgrid{
  grid-template-columns:minmax(0, 1.02fr) minmax(320px, .82fr);
  align-items:center;
}

#hizmetlerimiz .stack-card{
  max-width:760px;
}

#hizmetlerimiz .placeholder-frame{
  max-width:560px;
  justify-self:end;
  aspect-ratio:1 / 1.08;
}

#hizmetlerimiz .timeline{
  display:grid;
  gap:12px;
  margin-top:18px;
}

.page-contact .media-frame img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}

.info-grid{
  display:grid;
  gap:16px;
}

.info-chip{
  display:grid;
  grid-template-columns:44px 1fr;
  gap:16px;
  padding:20px 22px;
  border-radius:22px;
}

.info-chip .icon{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:linear-gradient(180deg, #faf2e0 0%, #f3e4c1 100%);
  color:var(--gold);
  font-size:1.35rem;
}

.info-chip h4{
  margin-bottom:6px;
}

.info-chip a{
  color:var(--muted-strong);
}

.info-chip a:hover{
  color:var(--gold-deep);
}

.form-grid{
  display:grid;
  gap:14px;
}

.form-status{
  margin-top:18px;
  padding:14px 16px;
  border-radius:16px;
  font-size:.95rem;
  line-height:1.6;
}

.form-status.is-success{
  background:rgba(53, 122, 76, .08);
  color:#2b6a43;
}

.form-status.is-error{
  background:rgba(168, 68, 50, .08);
  color:#9d3d2f;
}

.input,
.textarea{
  width:100%;
  border:1px solid rgba(20,33,61,.08);
  border-radius:18px;
  background:#fbfbfc;
  color:var(--text);
  padding:17px 18px;
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.textarea{
  min-height:170px;
  resize:vertical;
}

.hp-field{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  opacity:0;
  pointer-events:none;
}

.consent-box{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-top:2px;
}

.consent-box input{
  width:18px;
  height:18px;
  margin-top:4px;
  accent-color:var(--gold);
  flex:0 0 auto;
}

.consent-box span{
  font-size:.92rem;
  line-height:1.6;
  color:var(--muted);
}

.form-submit{
  min-height:46px;
  padding-inline:22px;
  justify-self:start;
}

.input:focus,
.textarea:focus{
  border-color:rgba(197,145,48,.44);
  box-shadow:0 0 0 4px rgba(197,145,48,.10);
  background:#fff;
}

.site-footer{
  padding:18px 0 26px;
  border-top:1px solid rgba(20,33,61,.07);
}

.footer-line{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
}

.footer-line p{
  text-align:center;
  flex:none;
  margin:0;
  font-size:.92rem;
  color:#6c7485;
}

.footer-call{
  color:var(--gold-deep);
  font-weight:600;
  font-size:.92rem;
  opacity:.9;
}

.whatsapp-sticky,
.floating-btn{
  position:fixed;
  right:28px;
  width:52px;
  height:52px;
  border:0;
  border-radius:20px;
  display:grid;
  place-items:center;
  z-index:40;
  background:var(--navy);
  color:#fff;
  box-shadow:0 18px 36px rgba(24,47,92,.18);
}

.whatsapp-sticky{
  left:calc(var(--sidebar-width) + 18px);
  right:auto;
  bottom:20px;
  background:linear-gradient(180deg, #c59130 0%, #b17b1f 100%);
}

.whatsapp-sticky i{
  font-size:1.5rem;
}

.back-to-top{
  bottom:22px;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.back-to-top.visible{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.cookie-banner{
  position:fixed;
  right:22px;
  bottom:88px;
  z-index:60;
  width:min(360px, calc(100vw - 32px));
  padding:22px;
  border-radius:26px;
  opacity:0;
  visibility:hidden;
  transform:translateY(14px);
  transition:opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.cookie-banner.is-visible{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.cookie-banner-title{
  font-size:1.35rem;
  margin-bottom:8px;
}

.cookie-banner-text{
  margin-bottom:18px;
}

.cookie-banner-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.reveal{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .55s ease, transform .55s ease;
}

.reveal.is-visible{
  opacity:1;
  transform:none;
}

.onepage-section{
  scroll-margin-top:28px;
}

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

@media (max-width: 1280px){
  :root{
    --content-pad:42px;
    --section-space:34px;
  }

  .hero h1{
    max-width:13.6ch;
  }

  .grid-2,
  .section-split,
  .page-contact .hero-grid{
    grid-template-columns:minmax(0, 1fr);
  }

  #basarilarimiz .success-callout{
    max-width:none;
  }

  .page-contact .media-frame{
    max-width:720px;
  }

  .team-card{
    grid-template-columns:260px 1fr;
  }
}

@media (max-width: 1080px){
  :root{
    --sidebar-width:0px;
    --content-pad:26px;
    --section-space:30px;
  }

  .site-header{
    position:sticky;
    inset:0 0 auto 0;
    width:auto;
    border-right:0;
    border-bottom:1px solid rgba(20,33,61,.08);
  }

  .header-inner{
    min-height:auto;
    padding:16px 24px;
    flex-direction:row;
    justify-content:space-between;
    gap:20px;
  }

  .brand{
    width:auto;
    justify-content:flex-start;
  }

  .brand img{
    width:156px;
  }

  .main-nav,
  .sidebar-meta{
    display:none;
  }

  .mobile-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    padding:0 18px;
    border:1px solid rgba(20,33,61,.08);
    border-radius:999px;
    background:#fff;
    color:var(--text);
  }

  .mobile-panel{
    display:block;
    position:absolute;
    left:16px;
    right:16px;
    top:calc(100% + 10px);
    padding:16px;
    border-radius:26px;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(16px);
    box-shadow:var(--shadow-lg);
    opacity:0;
    visibility:hidden;
    transform:translateY(-8px);
    transition:opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .mobile-panel.open{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
  }

  .mobile-nav{
    display:grid;
    gap:8px;
  }

  .mobile-nav a{
    width:100%;
  }

  main,
  .site-footer{
    margin-left:0;
  }

  .hero{
    padding-top:14px;
  }

  .hero-grid{
    min-height:auto;
  }

  .hero-copy{
    padding:44px 0 38px;
  }

  .hero p,
  .hero .lead,
  html[lang="tr"] .page-home .hero p,
  html[lang="tr"] .page-home .hero .lead{
    max-width:none;
  }

  .stats-grid,
  .grid-3,
  .card-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .cta-section .cta-banner{
    grid-template-columns:minmax(0, 1fr);
    align-items:start;
  }

  .cta-actions{
    justify-content:flex-start;
  }

  .whatsapp-sticky{
    left:18px;
    bottom:18px;
  }

  .back-to-top{
    right:18px;
    bottom:18px;
  }
}

@media (max-width: 760px){
  :root{
    --section-space:24px;
    --card-pad:20px;
  }

  .header-inner{
    padding:14px 16px;
    gap:14px;
  }

  .brand img{
    width:138px;
  }

  .mobile-toggle{
    min-height:42px;
    padding:0 14px;
    font-size:.92rem;
  }

  .mobile-panel{
    left:12px;
    right:12px;
    padding:14px;
    border-radius:20px;
  }

  .hero h1{
    max-width:none;
    font-size:clamp(2.2rem, 11vw, 3.4rem);
    line-height:1.02;
  }

  .hero .lead{
    font-size:1rem;
  }

  .hero-copy{
    padding:28px 0 24px;
  }

  .eyebrow,
  .section-tag{
    font-size:.92rem;
    letter-spacing:.16em;
  }

  .eyebrow::before,
  .section-tag::before{
    width:24px;
  }

  .badge-row,
  .button-row,
  .hero-actions{
    gap:10px;
  }

  .badge{
    min-height:34px;
    padding:8px 12px;
    font-size:.68rem;
    letter-spacing:.1em;
  }

  .btn{
    width:100%;
    min-height:48px;
    padding:0 18px;
  }

  .stats-grid,
  .grid-3,
  .card-grid{
    grid-template-columns:1fr;
  }

  .stats-grid{
    gap:16px;
  }

  .content-card,
  .info-card,
  .form-card,
  .success-callout,
  .quote-card,
  .feature-card,
  .package-card,
  .timeline-card,
  .success-list-card,
  .testimonial-card,
  .team-card > div:last-child,
  .cta-section .cta-banner{
    padding:26px;
  }

  .team-card{
    grid-template-columns:1fr;
  }

  .team-card img{
    aspect-ratio:1 / .72;
  }

  #hizmetlerimiz .stack-card,
  #hizmetlerimiz .placeholder-frame{
    max-width:none;
    width:100%;
    justify-self:stretch;
  }

  #hizmetlerimiz .stack-card h2{
    max-width:none;
  }

  #hizmetlerimiz .stack-card p{
    max-width:none;
  }

  .timeline-card{
    grid-template-columns:1fr;
  }

  .timeline-card .step{
    margin-bottom:4px;
  }

  .step{
    width:56px;
    height:56px;
    border-radius:16px;
  }

  .content-slider-head{
    align-items:flex-start;
    gap:12px;
  }

  .content-slider-status{
    font-size:.98rem;
  }

  .content-slider-btn{
    width:40px;
    height:40px;
  }

  .testimonial-card strong{
    font-size:.92rem;
  }

  .page-contact .media-frame{
    aspect-ratio:1 / .9;
  }

  .info-grid{
    gap:14px;
  }

  .consent-box{
    gap:10px;
  }

  .consent-box span{
    font-size:.88rem;
  }

  .cookie-banner{
    right:12px;
    left:12px;
    bottom:78px;
    width:auto;
    padding:18px;
    border-radius:22px;
  }

  .cookie-banner-actions .btn{
    width:auto;
    flex:1 1 0;
  }

  #hizmetlerimiz .grid-2.section-subgrid{
    display:none;
  }
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  *,
  *::before,
  *::after{
    animation:none !important;
    transition:none !important;
  }
  .reveal{
    opacity:1;
    transform:none;
  }
}
