/* ===================================================================
   MEIDENT — Zahnmedizin. Design system.
   Reference match: airy clinical, sky-blue accent, rounded cards.
   =================================================================== */
:root{
  --brand:#2e97d6;
  --brand-2:#5ec2ee;
  --brand-dark:#1f7fbb;
  --brand-tint:#eaf6fd;
  --ink:#1c2b33;
  --ink-2:#3d4d56;
  --muted:#7c8b94;
  --line:#e7ecf0;
  --bg:#eef2f5;
  --panel:#ffffff;
  --panel-2:#f5f8fa;
  --shadow-sm:0 4px 18px rgba(28,43,51,.06);
  --shadow-md:0 18px 50px rgba(28,43,51,.10);
  --shadow-blue:0 16px 34px rgba(46,151,214,.32);
  --r:18px;
  --r-lg:30px;
  --wrap:1180px;
  --font:'Manrope',system-ui,-apple-system,'Segoe UI',Roboto,sans-serif;
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  margin:0;font-family:var(--font);color:var(--ink);background:var(--bg);
  font-size:17px;line-height:1.6;font-weight:500;-webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3{margin:0;line-height:1.1;letter-spacing:-.02em;font-weight:800;color:var(--ink)}
p{margin:0}
button{font-family:inherit}

.wrap{width:100%;max-width:var(--wrap);margin:0 auto;padding:0 24px}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5em;
  border:none;cursor:pointer;font-weight:700;letter-spacing:.01em;
  padding:14px 26px;border-radius:14px;transition:transform .18s ease,box-shadow .18s ease,background .18s ease;
  font-size:15px;white-space:nowrap;
}
.btn-primary{
  color:#fff;background:linear-gradient(180deg,var(--brand-2),var(--brand));
  box-shadow:var(--shadow-blue);
}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 20px 40px rgba(46,151,214,.42)}
.btn-ghost{
  color:var(--brand);background:transparent;border:1.5px solid #cfe6f5;font-weight:700;
}
.btn-ghost:hover{background:var(--brand-tint);border-color:var(--brand)}
.btn-lg{padding:17px 34px;font-size:16px;border-radius:16px}
.btn-block{width:100%}

.text-link{color:var(--brand);font-weight:700;border-bottom:1px solid transparent;transition:border-color .2s}
.text-link:hover{border-color:var(--brand)}

/* ---------- Header ---------- */
.site-header{
  position:sticky;top:0;z-index:50;background:rgba(255,255,255,.92);
  backdrop-filter:saturate(180%) blur(10px);border-bottom:1px solid var(--line);
}
.header-inner{display:flex;align-items:center;gap:22px;min-height:78px}
.header-meta{list-style:none;display:flex;gap:26px;margin:0;padding:0}
.header-meta li{display:flex;align-items:center;gap:9px;font-size:12.5px;color:var(--muted);line-height:1.25}
.header-meta strong{color:var(--ink);font-weight:700}
.header-meta svg{width:26px;height:26px;fill:var(--brand);flex:none;opacity:.9}

.brand{display:flex;align-items:center;gap:9px;margin-inline:auto}
.brand-mark{width:38px;height:38px;display:grid;place-items:center;background:var(--brand-tint);border-radius:11px}
.brand-mark svg{width:24px;height:24px;fill:var(--brand)}
.brand-name{font-weight:800;font-size:21px;letter-spacing:.04em;color:var(--ink)}

.header-contact{display:flex;flex-direction:column;align-items:flex-end;line-height:1.3}
.header-phone{font-weight:800;font-size:18px;color:var(--ink)}
.header-links{font-size:12.5px;color:var(--muted)}
.header-links a{color:var(--brand);font-weight:600}
.header-cta{padding:11px 20px}

.nav-toggle{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:8px}
.nav-toggle span{width:24px;height:2.5px;background:var(--ink);border-radius:2px;transition:.25s}

/* ---------- Hero ---------- */
.hero{padding:26px 0 54px}
.hero-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:20px;align-items:stretch;
  background:linear-gradient(140deg,#fbfdff 0%,#eaf5fc 60%,#dceffa 100%);
  border-radius:var(--r-lg);padding:56px 56px 56px 60px;box-shadow:var(--shadow-sm);
  position:relative;overflow:hidden;
}
.hero-copy{align-self:center;max-width:520px}
.pill{
  display:inline-block;padding:9px 18px;border:1.5px solid #bfe1f4;border-radius:30px;
  color:var(--brand);font-size:12.5px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;
  background:rgba(255,255,255,.6);margin-bottom:26px;
}
.hero h1{font-size:clamp(34px,4.6vw,58px);letter-spacing:-.03em}
.hero h1 .accent{color:var(--brand);white-space:nowrap}
.lede{margin-top:22px;color:var(--ink-2);font-size:18px;max-width:440px}
.hero-actions{margin-top:32px}
.hero-chip{
  display:flex;align-items:center;gap:14px;margin-top:34px;max-width:400px;
}
.hero-chip img{width:52px;height:52px;border-radius:50%;object-fit:cover;border:3px solid #fff;box-shadow:var(--shadow-sm);flex:none}
.hero-chip p{font-size:13.5px;color:var(--ink-2);line-height:1.4}
.hero-media{border-radius:22px;overflow:hidden;box-shadow:var(--shadow-md);min-height:420px}
.hero-media img{width:100%;height:100%;object-fit:cover}

/* ---------- Section shell ---------- */
.section{padding:78px 0}
.section-head{text-align:center;max-width:760px;margin:0 auto 52px}
.section-head h2{font-size:clamp(28px,3.4vw,42px)}
.section-sub{margin-top:18px;color:var(--muted);font-size:18px}

/* ---------- Features ---------- */
.feature-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:26px}
.feature{text-align:center;padding:8px}
.feature-ico{display:inline-grid;place-items:center;width:118px;height:118px;margin-bottom:22px}
.feature-ico svg{width:100%;height:100%;filter:drop-shadow(0 12px 20px rgba(46,151,214,.22))}
.feature h3{font-size:18px;margin-bottom:12px}
.feature p{color:var(--muted);font-size:14.5px;line-height:1.55}

/* ---------- Services ---------- */
.services{background:var(--panel);border-radius:var(--r-lg);margin:0 12px}
.service-list{max-width:960px;margin:0 auto}
.service-row{border-top:1px solid var(--line)}
.service-row:last-child{border-bottom:1px solid var(--line)}
.service-main{
  width:100%;display:grid;grid-template-columns:1fr 1.35fr auto 56px;gap:26px;align-items:center;
  background:none;border:none;cursor:pointer;text-align:left;padding:28px 6px;
}
.service-title{font-weight:800;font-size:18px;color:var(--ink);line-height:1.2}
.service-desc{color:var(--muted);font-size:14px;line-height:1.5}
.service-price{font-weight:800;font-size:20px;color:var(--ink);text-align:right;white-space:nowrap}
.service-toggle{
  width:44px;height:44px;border-radius:50%;background:linear-gradient(180deg,var(--brand-2),var(--brand));
  display:grid;place-items:center;justify-self:end;transition:transform .3s;box-shadow:var(--shadow-blue)}
.service-toggle svg{width:20px;height:20px;fill:none;stroke:#fff;stroke-width:2.4;stroke-linecap:round;stroke-linejoin:round;transition:transform .3s}
.service-row.is-open .service-toggle svg{transform:rotate(90deg)}
.service-detail{
  display:grid;grid-template-columns:220px 1fr;gap:34px;align-items:start;
  max-height:0;overflow:hidden;opacity:0;transition:max-height .4s ease,opacity .35s,padding .4s;
}
.service-row.is-open .service-detail{max-height:520px;opacity:1;padding:0 6px 34px}
.service-detail img{border-radius:16px;width:220px;height:200px;object-fit:cover}
.service-bullets{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:16px}
.service-bullets li{position:relative;padding-left:22px;color:var(--ink-2);font-size:15px}
.service-bullets li::before{content:"";position:absolute;left:0;top:9px;width:7px;height:7px;border-radius:50%;background:var(--brand)}
.service-bullets li:has(.text-link)::before{display:none}
.service-bullets li:has(.text-link){padding-left:0;margin-top:4px}

/* ---------- Consultation ---------- */
.consult{
  background:linear-gradient(120deg,#eef7fc,#dcecf6);border-radius:var(--r-lg);margin:0 12px;
  position:relative;overflow:hidden;
}
.consult-grid{display:grid;grid-template-columns:1fr 460px;gap:48px;align-items:center}
.consult-copy h2{font-size:clamp(26px,3vw,38px)}
.consult-lead{margin:26px 0 18px;font-weight:700;color:var(--ink)}
.check-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:16px}
.check-list li{position:relative;padding-left:34px;color:var(--ink-2);font-size:16px}
.check-list li::before{
  content:"";position:absolute;left:0;top:2px;width:22px;height:22px;border-radius:50%;
  background:var(--brand) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l4 4 10-11'/%3E%3C/svg%3E") center/13px no-repeat;
}
.consult-card{background:#fff;border-radius:24px;padding:30px;box-shadow:var(--shadow-md)}
.card-title{font-size:15.5px;font-weight:700;color:var(--ink);line-height:1.45;margin-bottom:22px}
.field-label{display:block;font-size:13px;color:var(--muted);font-weight:600;margin:16px 0 9px}
.method-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.method{
  display:flex;align-items:center;gap:9px;padding:13px 14px;border-radius:12px;border:1.5px solid var(--line);
  background:#fff;color:var(--ink-2);font-weight:700;font-size:13.5px;cursor:pointer;transition:.18s}
.method svg{width:18px;height:18px;fill:currentColor;flex:none}
.method:hover{border-color:#bfe1f4}
.method.is-active{background:linear-gradient(180deg,var(--brand-2),var(--brand));color:#fff;border-color:transparent;box-shadow:var(--shadow-blue)}
.input{
  width:100%;padding:15px 16px;border-radius:12px;border:1.5px solid var(--line);
  font-size:15px;font-family:inherit;color:var(--ink);background:#fbfdfe;transition:border-color .18s}
.input:focus{outline:none;border-color:var(--brand);background:#fff}
.consult-card .btn{margin-top:22px}
.consent{display:flex;align-items:flex-start;gap:9px;margin-top:16px;font-size:12.5px;color:var(--muted)}
.consent input{margin-top:2px;accent-color:var(--brand);width:15px;height:15px}
.consent a{color:var(--brand);font-weight:600}
.form-note{margin-top:14px;font-size:14px;font-weight:700;color:var(--brand-dark);text-align:center}

/* ---------- Clinic / video ---------- */
.video-card{
  display:block;position:relative;width:100%;max-width:720px;margin:0 auto;border:none;cursor:pointer;
  border-radius:24px;overflow:hidden;box-shadow:var(--shadow-md);background:#000}
.video-card img{width:100%;height:420px;object-fit:cover;opacity:.88;transition:.3s}
.video-card:hover img{opacity:.78;transform:scale(1.02)}
.video-play{
  position:absolute;top:44%;left:50%;transform:translate(-50%,-50%);
  width:86px;height:86px;border-radius:50%;background:rgba(255,255,255,.92);display:grid;place-items:center;
  box-shadow:0 12px 34px rgba(0,0,0,.25);transition:.25s}
.video-play svg{width:34px;height:34px;fill:var(--brand);margin-left:4px}
.video-card:hover .video-play{transform:translate(-50%,-50%) scale(1.08)}
.video-play.sm{width:58px;height:58px}.video-play.sm svg{width:22px;height:22px}
.video-label{
  position:absolute;left:0;right:0;bottom:26px;text-align:center;color:#fff;font-weight:700;
  font-size:14px;line-height:1.4;text-shadow:0 2px 10px rgba(0,0,0,.4)}
.video-label small{font-weight:500;opacity:.85;font-size:12px}

/* ---------- Team ---------- */
.team-featured{
  display:grid;grid-template-columns:1fr 440px;gap:0;background:var(--panel);border-radius:26px;
  box-shadow:var(--shadow-sm);overflow:hidden;border:1px solid var(--line)}
.team-featured-copy{padding:46px 46px 40px}
.team-featured-copy h3{font-size:30px}
.team-role{color:var(--muted);font-size:14px;margin:8px 0 22px;font-weight:600}
.team-bio p{color:var(--ink-2);font-size:14.5px;line-height:1.6;margin-bottom:12px}
.team-featured-actions{display:flex;align-items:center;gap:24px;margin-top:26px;flex-wrap:wrap}
.team-featured-photo{position:relative;background:linear-gradient(160deg,#eaf5fc,#d7ecf7)}
.team-featured-photo img{width:100%;height:100%;min-height:430px;object-fit:cover;object-position:top center}

.team-carousel{display:flex;align-items:center;gap:14px;margin-top:34px;justify-content:center}
.team-track{display:flex;gap:10px;overflow:hidden;flex:1;max-width:900px;justify-content:center}
.team-item{
  flex:0 0 138px;text-align:center;padding:14px 8px;border-radius:16px;cursor:pointer;
  background:none;border:1px solid transparent;transition:.2s}
.team-item:hover{background:var(--panel);border-color:var(--line)}
.team-item.is-active .team-item-name{color:var(--brand)}
.team-item img{width:74px;height:74px;border-radius:50%;object-fit:cover;object-position:top center;margin:0 auto 12px;border:3px solid #fff;box-shadow:var(--shadow-sm);transition:.2s}
.team-item.is-active img{outline:2.5px solid var(--brand);outline-offset:2px}
.team-item-name{font-weight:800;font-size:12px;letter-spacing:.03em;text-transform:uppercase;color:var(--ink)}
.team-item-role{font-size:11.5px;color:var(--muted);margin-top:5px;line-height:1.3}
.car-arrow{
  width:44px;height:44px;flex:none;border-radius:50%;border:none;cursor:pointer;
  background:linear-gradient(180deg,var(--brand-2),var(--brand));display:grid;place-items:center;
  box-shadow:var(--shadow-blue);transition:.2s}
.car-arrow svg{width:20px;height:20px;fill:none;stroke:#fff;stroke-width:2.4;stroke-linecap:round;stroke-linejoin:round}
.car-arrow:hover{transform:scale(1.08)}
.car-arrow:disabled{opacity:.4;cursor:default;transform:none}

/* ---------- Director ---------- */
.director{overflow:hidden}
.director-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center;
  background:linear-gradient(120deg,#f4fafd,#e6f3fb);border-radius:var(--r-lg);padding:56px}
.director-copy h2{font-size:clamp(26px,3vw,38px)}
.director-sub{color:var(--muted);margin:18px 0 26px;font-size:16px}
.director blockquote{
  position:relative;margin:0;padding:0 0 0 26px;color:var(--ink-2);font-size:16px;line-height:1.6;
  border-left:3px solid var(--brand);font-style:italic}
.quote-mark{position:absolute;left:8px;top:-10px;color:var(--brand);font-size:34px;font-weight:800;line-height:1}
.director-sign{display:flex;align-items:center;gap:14px;margin-top:28px}
.director-sign img{width:56px;height:56px;border-radius:50%;object-fit:cover;border:3px solid #fff;box-shadow:var(--shadow-sm)}
.director-sign strong{display:block;color:var(--ink);font-size:15px}
.director-sign span{font-size:13px;color:var(--muted)}
.license-card{
  border:none;cursor:pointer;background:none;display:flex;flex-direction:column;align-items:center;gap:22px;
  padding:20px}
.license-doc{
  width:230px;height:290px;background:linear-gradient(160deg,#fff,#f2f8fc);border-radius:14px;
  box-shadow:var(--shadow-md);position:relative;transform:rotate(-4deg);transition:.3s;
  border:1px solid var(--line);padding:34px 26px}
.license-card:hover .license-doc{transform:rotate(-1deg) translateY(-6px)}
.license-doc::before{content:"";position:absolute;top:0;left:0;width:100%;height:10px;background:linear-gradient(90deg,var(--brand-2),var(--brand));border-radius:14px 14px 0 0}
.license-lines{display:flex;flex-direction:column;gap:14px;margin-top:14px}
.license-lines span{height:8px;background:#e3edf3;border-radius:4px}
.license-lines span:nth-child(1){width:70%}
.license-lines span:nth-child(2){width:100%}
.license-lines span:nth-child(3){width:90%}
.license-lines span:nth-child(4){width:100%}
.license-lines span:nth-child(5){width:60%}
.license-seal{position:absolute;bottom:22px;right:22px;width:52px;height:52px;border-radius:50%;background:var(--brand-tint);display:grid;place-items:center}
.license-seal svg{width:26px;height:26px;fill:none;stroke:var(--brand);stroke-width:2;stroke-linecap:round}
.license-hint{color:var(--muted);font-size:13.5px;font-weight:600;text-align:center;line-height:1.5}

/* ---------- Cases ---------- */
.cases{background:var(--panel);border-radius:var(--r-lg);margin:0 12px}
.case-card{
  position:relative;display:grid;grid-template-columns:390px 1fr;gap:36px;
  background:var(--panel-2);border-radius:24px;padding:34px;max-width:1000px;margin:0 auto}
.case-media{display:flex;flex-direction:column;gap:12px}
.case-video{position:relative;border:none;cursor:pointer;border-radius:16px;overflow:hidden;background:#000}
.case-video img{width:100%;height:210px;object-fit:cover;opacity:.9}
.case-thumbs{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.case-thumbs figure{margin:0;position:relative;border-radius:12px;overflow:hidden}
.case-thumbs img{width:100%;height:104px;object-fit:cover}
.case-thumbs figcaption{
  position:absolute;left:10px;bottom:10px;background:#fff;color:var(--ink);font-size:11px;font-weight:700;
  padding:4px 12px;border-radius:20px;box-shadow:var(--shadow-sm)}
.case-text{position:relative}
.case-patient{display:flex;align-items:center;gap:12px;margin-bottom:18px}
.case-avatar{width:46px;height:46px;border-radius:50%;background:var(--brand-tint);color:var(--brand);
  display:grid;place-items:center;font-weight:800;font-size:15px}
.case-patient strong{display:block;font-size:16px;color:var(--ink)}
.case-patient span{font-size:13px;color:var(--muted)}
.case-block{margin-bottom:16px;color:var(--ink-2);font-size:14px;line-height:1.55}
.case-tag{display:block;font-size:11px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:var(--muted);margin-bottom:4px}
.case-counter{position:absolute;right:0;bottom:-8px;font-size:13px;color:var(--muted);font-weight:700}
.case-prev{position:absolute;left:-18px;top:50%;transform:translateY(-50%)}
.case-next{position:absolute;right:-18px;top:50%;transform:translateY(-50%)}

/* ---------- FAQ ---------- */
.faq{max-width:1000px;margin:74px auto 0}
.faq-title{text-align:center;font-size:clamp(24px,2.8vw,34px);margin-bottom:40px}
.faq-cols{display:grid;grid-template-columns:1fr 1fr;gap:16px 36px}
.faq-item{border-bottom:1px solid var(--line)}
.faq-item summary{
  list-style:none;cursor:pointer;display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:20px 4px;font-weight:700;font-size:16px;color:var(--ink)}
.faq-item summary::-webkit-details-marker{display:none}
.faq-ico{position:relative;width:22px;height:22px;flex:none}
.faq-ico::before,.faq-ico::after{content:"";position:absolute;background:var(--brand);border-radius:2px;transition:.25s}
.faq-ico::before{top:10px;left:2px;width:18px;height:2.4px}
.faq-ico::after{left:10px;top:2px;width:2.4px;height:18px}
.faq-item[open] .faq-ico::after{transform:rotate(90deg);opacity:0}
.faq-item p{padding:0 4px 22px;color:var(--muted);font-size:14.5px;line-height:1.6;margin:0}

/* ---------- Map ---------- */
.map-section{position:relative;padding:64px 0;overflow:hidden}
.map-bg{
  position:absolute;inset:0;background:var(--panel-2);
  background-image:
    linear-gradient(rgba(214,226,234,.6) 1px,transparent 1px),
    linear-gradient(90deg,rgba(214,226,234,.6) 1px,transparent 1px),
    radial-gradient(circle at 68% 52%,rgba(46,151,214,.14),transparent 42%);
  background-size:46px 46px,46px 46px,100% 100%;
}
.map-bg::after{
  content:"";position:absolute;top:48%;left:66%;width:34px;height:34px;border-radius:50% 50% 50% 0;
  background:var(--brand);transform:translate(-50%,-100%) rotate(-45deg);box-shadow:0 10px 22px rgba(46,151,214,.5)}
.map-section .wrap{position:relative}
.map-card{
  background:#fff;border-radius:24px;padding:44px;max-width:440px;box-shadow:var(--shadow-md)}
.map-card h2{font-size:clamp(24px,2.6vw,32px)}
.map-info{display:grid;grid-template-columns:1fr 1fr;gap:22px;margin:28px 0 30px}
.map-tag{display:flex;align-items:center;gap:8px;font-size:13px;font-weight:700;color:var(--brand);margin-bottom:8px}
.map-tag svg{width:18px;height:18px;fill:var(--brand)}
.map-info p{color:var(--ink-2);font-size:15px;line-height:1.5}

/* ---------- Footer ---------- */
.site-footer{background:var(--panel);border-top:1px solid var(--line);margin-top:12px}
.footer-top{display:flex;align-items:center;gap:26px;padding:38px 24px;flex-wrap:wrap}
.footer-top .brand{margin:0}
.footer-links{display:flex;flex-direction:column;gap:6px;font-size:13.5px}
.footer-links a{color:var(--brand);font-weight:600}
.footer-links a:hover{text-decoration:underline}
.footer-social{display:flex;gap:10px}
.footer-social a{width:40px;height:40px;border-radius:50%;background:var(--brand-tint);display:grid;place-items:center;transition:.2s}
.footer-social a:hover{background:var(--brand)}
.footer-social svg{width:20px;height:20px;fill:var(--brand);transition:.2s}
.footer-social a:hover svg{fill:#fff}
.footer-contact{display:flex;flex-direction:column;margin-inline:auto;text-align:right}
.footer-phone{font-weight:800;font-size:19px}
.footer-mail{font-size:13.5px;color:var(--muted)}
.footer-legal{
  display:grid;grid-template-columns:2fr 1fr 1fr;gap:26px;padding:26px 24px 46px;
  border-top:1px solid var(--line);font-size:11.5px;color:var(--muted);line-height:1.6}
.footer-legal em{color:var(--brand-dark);font-style:italic}

/* ---------- Reveal ---------- */
.reveal{opacity:0;transform:translateY(26px);transition:opacity .7s ease,transform .7s ease}
.reveal.in{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){
  .reveal{opacity:1;transform:none;transition:none}
  html{scroll-behavior:auto}
}

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width:1080px){
  .header-meta{display:none}
  .feature-grid{grid-template-columns:1fr 1fr;gap:36px}
}
@media (max-width:900px){
  body{font-size:16px}
  .hero-grid{grid-template-columns:1fr;padding:36px}
  .hero-media{min-height:300px;order:-1}
  .hero-media img{height:320px}
  .consult-grid{grid-template-columns:1fr;gap:32px}
  .team-featured{grid-template-columns:1fr}
  .team-featured-photo img{min-height:340px}
  .director-grid{grid-template-columns:1fr;padding:40px;gap:32px}
  .license-card{order:-1}
  .case-card{grid-template-columns:1fr;gap:24px}
  .case-prev{left:6px}.case-next{right:6px}
  .faq-cols{grid-template-columns:1fr;gap:0}
  .footer-legal{grid-template-columns:1fr}
}
@media (max-width:720px){
  .header-contact{display:none}
  .header-cta{display:none}
  .nav-toggle{display:flex;margin-left:auto}
  .brand{margin:0}
  .section{padding:56px 0}
  .service-main{grid-template-columns:1fr auto;gap:8px 16px;padding:22px 4px}
  .service-desc{grid-column:1/-1;order:3}
  .service-price{order:2}
  .service-toggle{display:none}
  .service-detail{grid-template-columns:1fr}
  .service-row.is-open .service-detail{max-height:900px}
  .service-detail img{width:100%;height:180px}
  .method-grid{grid-template-columns:1fr 1fr}
  .map-info{grid-template-columns:1fr 1fr}
  .footer-top{justify-content:center;text-align:center}
  .footer-contact{margin:0 auto;text-align:center}
  .team-item{flex-basis:120px}
}
@media (max-width:480px){
  .wrap{padding:0 16px}
  .services,.consult,.cases{margin:0 6px}
  .hero-grid,.director-grid{padding:26px}
  .consult-card{padding:22px}
  .feature-grid{grid-template-columns:1fr}
  .map-card{padding:30px}
}
