*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --primary:#13d9df;
  --primary-dark:#10c6cc;
  --secondary:#19e68f;
  --dark:#1f2d3d;
  --dark-2:#24384c;
  --text:#334155;
  --muted:#6b7280;
  --bg:#eef3f7;
  --white:#ffffff;
  --line:#dbe5ec;
  --shadow:0 12px 30px rgba(17, 24, 39, .08);
  --shadow-soft:0 18px 40px rgba(15, 23, 42, .08);
  --shadow-hover:0 22px 44px rgba(15, 23, 42, .14);
  --radius:18px;
  --container:1180px;
  --header-height:78px;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

body.menu-open{
  overflow:hidden;
}

img{
  max-width:100%;
  display:block;
  height:auto;
}

a{
  text-decoration:none;
  color:inherit;
}

button,
input,
select,
textarea{
  font:inherit;
}

.container{
  width:min(100% - 32px, var(--container));
  margin:auto;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:48px;
  padding:0 24px;
  border-radius:12px;
  border:none;
  cursor:pointer;
  font-weight:700;
  transition:.25s ease;
}

.btn-primary{
  background:linear-gradient(90deg,var(--primary),var(--secondary));
  color:#fff;
  box-shadow:var(--shadow);
}

.btn-primary:hover{
  transform:translateY(-2px);
  opacity:.96;
}

.btn-outline{
  border:1px solid rgba(19,217,223,.35);
  color:var(--primary-dark);
  background:#fff;
}

.btn-outline:hover{
  transform:translateY(-2px);
  border-color:var(--primary);
}

.section{
  padding:84px 0;
}

.section-header{
  max-width:860px;
}

.section-header--center{
  max-width:900px;
  margin:0 auto;
  text-align:center;
}

.section-title{
  font-size:44px;
  line-height:1.08;
  color:#2f3a45;
  font-weight:800;
  margin-bottom:14px;
  letter-spacing:-0.025em;
  text-wrap:balance;
}

.section-subtitle{
  font-size:17px;
  line-height:1.72;
  color:var(--muted);
  max-width:760px;
  font-weight:500;
}

.section-header--center .section-subtitle{
  margin-left:auto;
  margin-right:auto;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 15px;
  border-radius:999px;
  background:rgba(19,217,223,.12);
  color:#0fbec5;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:18px;
}

.topbar{
  background:linear-gradient(90deg,var(--primary),var(--secondary));
  color:#fff;
  text-align:center;
  font-size:13px;
  padding:8px 12px;
  font-weight:600;
}

.header{
  background:#fff;
  position:sticky;
  top:0;
  z-index:1000;
  border-bottom:1px solid #edf2f7;
  backdrop-filter:saturate(180%) blur(10px);
}

.nav{
  min-height:var(--header-height);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  position:relative;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  color:#11bfc5;
  z-index:1002;
}

.logo-icon{
  width:40px;
  height:40px;
  border-radius:12px;
  background:linear-gradient(135deg,var(--primary),var(--secondary));
  color:#fff;
  display:grid;
  place-items:center;
  font-size:20px;
  font-weight:800;
  flex:0 0 auto;
}

.logo-text{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}

.logo-text strong{
  color:#2d3748;
  font-size:16px;
}

.logo-text span{
  color:#64748b;
  font-size:11px;
  font-weight:700;
}

.menu-wrap{
  display:flex;
  align-items:center;
  gap:20px;
}

.menu{
  display:flex;
  align-items:center;
  gap:26px;
  flex-wrap:wrap;
}

.menu a{
  color:#475569;
  font-size:14px;
  font-weight:600;
  position:relative;
  transition:.2s ease;
}

.menu a.active,
.menu a:hover{
  color:#111827;
}

.menu a.active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-10px;
  height:2px;
  border-radius:20px;
  background:linear-gradient(90deg,var(--primary),var(--secondary));
}

.header-cta{
  white-space:nowrap;
}

.menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border:none;
  border-radius:12px;
  background:#f1f6fa;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:1002;
  box-shadow:none;
}

.menu-toggle span{
  display:block;
  width:20px;
  height:2px;
  background:#1f2d3d;
  position:relative;
  transition:.25s ease;
}

.menu-toggle span::before,
.menu-toggle span::after{
  content:"";
  position:absolute;
  left:0;
  width:20px;
  height:2px;
  background:#1f2d3d;
  transition:.25s ease;
}

.menu-toggle span::before{
  top:-6px;
}

.menu-toggle span::after{
  top:6px;
}

.menu-toggle.active span{
  background:transparent;
}

.menu-toggle.active span::before{
  transform:translateY(6px) rotate(45deg);
}

.menu-toggle.active span::after{
  transform:translateY(-6px) rotate(-45deg);
}

.mobile-panel{
  display:none;
}

.mobile-overlay{
  display:none;
}

/* HERO */
.hero{
  background:linear-gradient(180deg,#f4f9fb 0%, #eef3f7 100%);
  overflow:hidden;
  position:relative;
}

.hero-wrap{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  align-items:center;
  gap:40px;
  min-height:650px;
  position:relative;
}

.hero-text .eyebrow{
  margin-bottom:18px;
}

.hero-text h1{
  font-size:60px;
  line-height:1.02;
  font-weight:800;
  color:#2d3748;
  max-width:760px;
  margin-bottom:18px;
  letter-spacing:-0.03em;
  text-wrap:balance;
}

.hero-text p{
  color:#64748b;
  font-size:18px;
  line-height:1.75;
  max-width:650px;
  margin-bottom:28px;
}

.hero-badges{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin:28px 0 24px;
}

.badge-box{
  background:#fff;
  border-radius:14px;
  padding:14px 18px;
  box-shadow:var(--shadow);
  font-weight:700;
  color:#334155;
  border:1px solid rgba(219,229,236,.75);
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:12px;
}

.hero-note{
  margin-top:18px;
  color:#64748b;
  font-size:14px !important;
  line-height:1.7;
  max-width:660px;
}

.hero-visual{
  position:relative;
  min-height:520px;
  display:flex;
  align-items:flex-end;
  justify-content:center;
}

.circle-main{
  position:absolute;
  width:370px;
  height:370px;
  border-radius:50%;
  background:radial-gradient(circle at center, #1ee9d6 0%, #0fd6e4 55%, #21df92 100%);
  right:40px;
  top:70px;
  filter:blur(.2px);
  opacity:.95;
}

.circle-small{
  position:absolute;
  border-radius:50%;
  background:linear-gradient(135deg,var(--primary),var(--secondary));
}

.circle-small.one{
  width:70px;
  height:70px;
  top:70px;
  left:50px;
}

.circle-small.two{
  width:36px;
  height:36px;
  top:150px;
  left:10px;
}

.circle-small.three{
  width:44px;
  height:44px;
  right:10px;
  bottom:80px;
}

.hero-person{
  position:relative;
  z-index:2;
  width:390px;
  max-width:100%;
  border-radius:24px;
  object-fit:cover;
  filter:drop-shadow(0 20px 35px rgba(0,0,0,.15));
}

/* BRANDS */
.brands{
  background:linear-gradient(90deg,var(--primary),var(--secondary));
  color:#fff;
  padding:16px 0;
}

.brands-row{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:20px;
  text-align:center;
  font-weight:700;
  letter-spacing:1px;
  opacity:.95;
}

/* SERVICES */
.services-grid{
  margin-top:40px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.service-card{
  background:#fff;
  padding:26px 22px;
  border-radius:18px;
  border:1px solid #edf2f7;
  box-shadow:var(--shadow-soft);
  transition:.25s ease;
  display:flex;
  flex-direction:column;
}

.service-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-hover);
}

.service-icon{
  width:58px;
  height:58px;
  border-radius:16px;
  display:grid;
  place-items:center;
  font-size:24px;
  margin-bottom:18px;
  background:linear-gradient(135deg, rgba(19,217,223,.14), rgba(25,230,143,.14));
  color:#0fbec5;
}

.service-card h3{
  font-size:21px;
  line-height:1.2;
  color:#334155;
  margin-bottom:12px;
  letter-spacing:-0.01em;
}

.service-card p{
  font-size:14px;
  line-height:1.75;
  color:#64748b;
  margin-bottom:18px;
  min-height:118px;
}

.service-links{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 18px;
}

.service-links a{
  font-size:12px;
  color:#0fbec5;
  background:#f4fbfc;
  border:1px solid #dceff2;
  border-radius:999px;
  padding:6px 10px;
  font-weight:700;
  transition:.2s ease;
}

.service-links a:hover{
  background:#eaf9fb;
}

.seo-block{
  background:#fff;
  padding:32px;
  border-radius:20px;
  border:1px solid #e8eef3;
  box-shadow:var(--shadow-soft);
  margin-top:36px;
}

.seo-block h3{
  font-size:30px;
  line-height:1.15;
  color:#334155;
  margin-bottom:14px;
  letter-spacing:-0.02em;
}

.seo-block p{
  color:#64748b;
  line-height:1.8;
  margin-bottom:14px;
}

.seo-block p:last-child{
  margin-bottom:0;
}

/* ABOUT */
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.about-content .eyebrow{
  margin-bottom:18px;
}

.about-content .section-title{
  max-width:720px;
}

.about-content p{
  color:#64748b;
  line-height:1.8;
  margin-bottom:14px;
}

.about-art{
  min-height:420px;
  position:relative;
}

.floating-shape{
  position:absolute;
  border-radius:50%;
  background:linear-gradient(135deg,var(--primary),var(--secondary));
}

.floating-shape.a{
  width:80px;
  height:80px;
  top:20px;
  left:50px;
}

.floating-shape.b{
  width:56px;
  height:56px;
  right:60px;
  bottom:80px;
}

.floating-shape.c{
  width:28px;
  height:28px;
  right:20px;
  bottom:150px;
}

/* CITIES */
.cities-grid{
  margin-top:36px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.city-card{
  background:#fff;
  border:1px solid #edf2f7;
  border-radius:18px;
  box-shadow:var(--shadow-soft);
  padding:26px 22px;
  transition:.25s ease;
}

.city-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow-hover);
}

.city-card h3{
  font-size:24px;
  color:#334155;
  margin-bottom:10px;
  letter-spacing:-0.01em;
}

.city-card p{
  color:#64748b;
  font-size:14px;
  line-height:1.75;
  margin-bottom:16px;
}

.city-card ul{
  list-style:none;
  display:grid;
  gap:10px;
  margin-bottom:18px;
}

.city-card li{
  color:#475569;
  display:flex;
  gap:10px;
  font-size:14px;
  line-height:1.6;
}

.city-card li::before{
  content:"✓";
  min-width:22px;
  width:22px;
  height:22px;
  border-radius:50%;
  background:rgba(19,217,223,.12);
  color:#0ebec4;
  display:grid;
  place-items:center;
  font-size:12px;
  font-weight:800;
  margin-top:1px;
}

/* CONTACT */
.contact-box{
  display:grid;
  grid-template-columns:1fr 420px;
  gap:32px;
  align-items:stretch;
  margin-top:28px;
}

.contact-left{
  background:#f4f8fb;
  border-radius:20px;
  padding:34px;
  border:1px solid #e6edf3;
  min-height:420px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.contact-left h3{
  line-height:1.15;
  letter-spacing:-0.02em;
}

.contact-left p{
  line-height:1.8;
}

.link-list{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px 20px;
  margin-top:30px;
}

.link-list a{
  color:#0fbec5;
  font-size:14px;
  font-weight:600;
}

.contact-form{
  background:linear-gradient(180deg,var(--primary),var(--secondary));
  border-radius:20px;
  padding:28px;
  box-shadow:var(--shadow-soft);
  color:#fff;
}

.contact-form h3{
  font-size:24px;
  line-height:1.2;
  margin-bottom:10px;
  letter-spacing:-0.01em;
}

.contact-form p{
  font-size:14px;
  line-height:1.75;
  margin-bottom:18px;
  color:#f5feff;
}

.form-group{
  margin-bottom:14px;
}

.input,
.textarea,
.select{
  width:100%;
  border:none;
  outline:none;
  border-radius:12px;
  padding:14px 14px;
  font-size:14px;
  color:#334155;
  background:#fff;
}

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

.contact-form .btn{
  width:100%;
  background:#1fd4f0;
  color:#fff;
  font-weight:800;
}

/* WHY */
.why-wrap{
  text-align:center;
}

.why-wrap .section-title,
.why-wrap .section-subtitle{
  margin-left:auto;
  margin-right:auto;
}

.why-grid{
  margin-top:46px;
  display:grid;
  grid-template-columns:420px 1fr;
  gap:36px;
  align-items:center;
  text-align:left;
}

.why-image{
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
  min-height:360px;
}

.why-image img{
  width:280px;
  height:280px;
  object-fit:cover;
  border-radius:50%;
  position:relative;
  z-index:2;
  box-shadow:var(--shadow-soft);
}

.why-image .shape{
  position:absolute;
  width:130px;
  height:130px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--primary),var(--secondary));
  left:40px;
  bottom:20px;
}

.why-card{
  background:#fff;
  border-radius:20px;
  padding:34px;
  box-shadow:var(--shadow-soft);
  border:1px solid #eef2f7;
}

.why-card h3{
  font-size:30px;
  line-height:1.14;
  color:#334155;
  margin-bottom:18px;
  letter-spacing:-0.02em;
}

.check-list{
  display:grid;
  gap:14px;
}

.check-list li{
  list-style:none;
  display:flex;
  gap:12px;
  color:#475569;
  line-height:1.65;
}

.check-list li::before{
  content:"✓";
  min-width:24px;
  width:24px;
  height:24px;
  border-radius:50%;
  background:rgba(19,217,223,.12);
  color:#0ebec4;
  display:grid;
  place-items:center;
  font-size:14px;
  font-weight:800;
  margin-top:2px;
}

/* PORTFOLIO */
.portfolio{
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.12) 0, rgba(255,255,255,0) 28%),
    radial-gradient(circle at bottom right, rgba(255,255,255,.10) 0, rgba(255,255,255,0) 24%),
    linear-gradient(135deg,#18dbe1 0%, #20d7aa 100%);
  color:#fff;
  position:relative;
  overflow:hidden;
}

.portfolio .container{
  position:relative;
  z-index:2;
}

.portfolio .eyebrow{
  background:rgba(255,255,255,.16);
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
  margin:0 auto 18px;
}

.portfolio .section-title{
  color:#fff;
  text-align:center;
  max-width:900px;
  margin:0 auto 18px;
  font-size:48px;
  line-height:1.08;
  font-weight:800;
  letter-spacing:-0.025em;
  text-wrap:balance;
}

.portfolio .section-subtitle{
  color:rgba(255,255,255,.92);
  text-align:center;
  max-width:760px;
  margin:0 auto;
  font-size:18px;
  line-height:1.72;
  font-weight:500;
}

.portfolio-grid{
  margin-top:44px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.work-card{
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.20);
  border-radius:20px;
  padding:14px;
  backdrop-filter:blur(8px);
  box-shadow:0 16px 35px rgba(15, 23, 42, .12);
  transition:transform .25s ease, box-shadow .25s ease;
}

.work-card:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 40px rgba(15, 23, 42, .18);
}

.work-card img{
  width:100%;
  height:300px;
  object-fit:cover;
  border-radius:14px;
  margin-bottom:16px;
}

.work-card h4{
  font-size:20px;
  line-height:1.2;
  font-weight:800;
  margin-bottom:8px;
}

.work-card p{
  font-size:14px;
  line-height:1.75;
  opacity:.96;
  margin-top:0;
}

/* STATS */
.stats{
  padding-top:56px;
}

.stats .section-header{
  max-width:900px;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:24px;
}

.stat-card{
  background:#fff;
  border-radius:18px;
  padding:28px 20px;
  box-shadow:var(--shadow-soft);
  text-align:center;
  border:1px solid #edf2f7;
}

.stat-number{
  font-size:34px;
  line-height:1.1;
  color:#2f3a45;
  font-weight:800;
  margin-bottom:10px;
  letter-spacing:-0.02em;
}

.stat-label{
  display:inline-block;
  background:linear-gradient(90deg,var(--primary),var(--secondary));
  color:#fff;
  font-size:13px;
  font-weight:700;
  padding:8px 12px;
  border-radius:999px;
}

.testimonial-wrap{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:34px;
  align-items:center;
  margin-top:46px;
}

.testimonial-card{
  background:linear-gradient(90deg,var(--primary),var(--secondary));
  color:#fff;
  border-radius:20px;
  padding:28px;
  box-shadow:var(--shadow-soft);
  display:grid;
  grid-template-columns:120px 1fr;
  gap:24px;
  align-items:center;
}

.testimonial-logo{
  width:120px;
  height:120px;
  border-radius:50%;
  background:#fff;
  display:grid;
  place-items:center;
  color:#ef4444;
  font-weight:800;
  font-size:15px;
  text-align:center;
  padding:12px;
}

.testimonial-card p{
  margin-bottom:14px;
  line-height:1.75;
}

.testimonial-name{
  font-weight:800;
}

.testimonial-role{
  font-size:14px;
  opacity:.9;
}

/* FAQ */
.faq-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
  margin-top:34px;
}

.faq-item{
  background:#fff;
  border-radius:18px;
  border:1px solid #edf2f7;
  box-shadow:var(--shadow-soft);
  padding:24px;
}

.faq-item h3{
  font-size:21px;
  line-height:1.28;
  color:#334155;
  margin-bottom:10px;
  letter-spacing:-0.01em;
}

.faq-item p{
  color:#64748b;
  font-size:14px;
  line-height:1.75;
}

/* CTA */
.cta{
  padding:64px 0 20px;
}

.cta-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:38px 40px;
  background:#f1f6fa;
  border-radius:22px;
  border:1px solid #e5edf3;
}

.cta-box .eyebrow{
  margin-bottom:14px;
}

.cta-box h2{
  font-size:48px;
  line-height:1.05;
  color:#2f3a45;
  max-width:700px;
  letter-spacing:-0.03em;
  text-wrap:balance;
}

/* FOOTER */
.footer{
  background:#0f2238;
  color:#d8e3ee;
  padding-top:48px;
  margin-top:32px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.25fr 1fr 1fr 1fr;
  gap:32px;
  padding-bottom:34px;
}

.footer h4{
  color:#fff;
  font-size:18px;
  margin-bottom:16px;
}

.footer p,
.footer li,
.footer a{
  font-size:14px;
  line-height:1.7;
  color:#cdd8e3;
}

.footer ul{
  list-style:none;
  display:grid;
  gap:10px;
}

.payments{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}

.pay{
  background:#fff;
  color:#1f2937;
  border-radius:8px;
  padding:10px 12px;
  font-size:13px;
  font-weight:700;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding:18px 0 24px;
  text-align:center;
  font-size:13px;
  color:#a9b9c9;
}

/* FLOATING */
.floating-left,
.floating-right{
  position:fixed;
  z-index:80;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  color:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,.16);
  font-weight:800;
}

.floating-left{
  left:14px;
  bottom:120px;
  width:52px;
  height:120px;
  background:linear-gradient(180deg,var(--primary),var(--secondary));
  writing-mode:vertical-rl;
  text-orientation:mixed;
  font-size:12px;
  padding:10px 0;
}

.floating-right{
  right:14px;
  bottom:18px;
  width:54px;
  height:54px;
  background:#25d366;
  font-size:24px;
}

/* COOKIE */
.cookie-box{
  position:fixed;
  left:14px;
  bottom:18px;
  z-index:90;
  width:280px;
  background:#fff;
  border-radius:14px;
  box-shadow:var(--shadow-soft);
  border:1px solid #e6edf3;
  padding:16px;
}

.cookie-box h5{
  font-size:14px;
  color:#1f2937;
  margin-bottom:8px;
}

.cookie-box p{
  font-size:12px;
  color:#64748b;
  line-height:1.7;
  margin-bottom:12px;
}

.cookie-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.cookie-actions .full{
  grid-column:1/-1;
}

.cookie-btn{
  border:none;
  border-radius:8px;
  height:38px;
  cursor:pointer;
  font-weight:700;
  font-size:12px;
}

.cookie-btn.primary{
  background:linear-gradient(90deg,var(--primary),var(--secondary));
  color:#fff;
}

.cookie-btn.light{
  background:#f1f5f9;
  color:#334155;
}

/* RESPONSIVE */
@media (max-width:1180px){
  .hero-wrap,
  .about-grid,
  .contact-box,
  .why-grid,
  .testimonial-wrap,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .services-grid,
  .portfolio-grid,
  .faq-grid{
    grid-template-columns:repeat(2,1fr);
  }

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

  .cities-grid{
    grid-template-columns:1fr;
  }

  .brands-row{
    grid-template-columns:repeat(3,1fr);
  }

  .cta-box{
    flex-direction:column;
    align-items:flex-start;
  }

  .cta-box h2{
    font-size:40px;
  }

  .hero-text h1{
    font-size:50px;
  }

  .portfolio .section-title{
    font-size:40px;
    max-width:820px;
  }

  .portfolio .section-subtitle{
    font-size:17px;
    max-width:700px;
  }
}

@media (max-width:900px){
  .menu-wrap{
    display:none;
  }

  .menu-toggle{
    display:inline-flex;
  }

  .mobile-overlay{
    position:fixed;
    inset:0;
    background:rgba(15,34,56,.45);
    z-index:998;
  }

  .mobile-overlay.show{
    display:block;
  }

  .mobile-panel{
    position:fixed;
    top:0;
    right:0;
    width:min(92vw, 360px);
    height:100vh;
    background:#fff;
    z-index:999;
    box-shadow:-10px 0 24px rgba(0,0,0,.12);
    padding:95px 22px 24px;
    transform:translateX(100%);
    transition:.28s ease;
    display:block;
  }

  .mobile-panel.open{
    transform:translateX(0);
  }

  .mobile-menu{
    display:grid;
    gap:10px;
  }

  .mobile-menu a{
    padding:14px 14px;
    border-radius:12px;
    background:#f7fafc;
    color:#334155;
    font-size:15px;
    font-weight:700;
    border:1px solid #edf2f7;
  }

  .mobile-menu a.mobile-cta{
    background:linear-gradient(90deg,var(--primary),var(--secondary));
    color:#fff;
    border:none;
    text-align:center;
  }
}

@media (max-width:768px){
  .section{
    padding:68px 0;
  }

  .hero-wrap{
    min-height:auto;
    padding:50px 0;
  }

  .hero-text h1{
    font-size:36px;
    line-height:1.08;
  }

  .hero-text p{
    font-size:16px;
  }

  .section-title{
    font-size:31px;
    line-height:1.14;
  }

  .section-subtitle{
    font-size:15px;
    line-height:1.7;
  }

  .services-grid,
  .portfolio-grid,
  .stats-grid,
  .link-list,
  .brands-row,
  .faq-grid{
    grid-template-columns:1fr;
  }

  .testimonial-card{
    grid-template-columns:1fr;
    text-align:center;
  }

  .contact-left,
  .contact-form,
  .seo-block,
  .why-card{
    padding:22px;
  }

  .cta-box h2{
    font-size:31px;
    line-height:1.12;
  }

  .cookie-box{
    width:calc(100% - 28px);
  }

  .floating-left{
    display:none;
  }

  .hero-actions{
    flex-direction:column;
    align-items:flex-start;
  }

  .hero-actions .btn{
    width:100%;
  }

  .portfolio .eyebrow{
    margin-bottom:14px;
  }

  .portfolio .section-title{
    font-size:31px;
    line-height:1.14;
    max-width:100%;
  }

  .portfolio .section-subtitle{
    font-size:15px;
    line-height:1.65;
    max-width:100%;
  }

  .work-card img{
    height:260px;
  }
}