/* ===== RESET & DESIGN TOKENS ===== */
:root {
  --navy-950: #071522;
  --navy-900: #0c1e2d;
  --navy-800: #123246;
  --navy-700: #1b4965;
  --blue-600: #2c7da0;
  --blue-500: #4aa4c6;
  --blue-100: #e4f4f9;
  --teal-600: #168c8c;
  --teal-500: #37b7ad;
  --gold-600: #bd7e2d;
  --gold-500: #e7a84e;
  --gold-100: #fff3df;
  --cream: #faf8f3;
  --white: #fff;
  --slate-700: #3f515d;
  --slate-500: #6d7d86;
  --line: #e4eaed;
  --shadow-sm: 0 8px 24px rgba(7, 21, 34, .07);
  --shadow-md: 0 16px 40px rgba(7, 21, 34, .12);
  --shadow-lg: 0 25px 70px rgba(7, 21, 34, .18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--navy-900); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.container { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }
.section { padding: 112px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 54px; }
.section-eyebrow { display: inline-flex; align-items: center; gap: 12px; color: var(--teal-600); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.section-eyebrow::before, .section-eyebrow::after { content: ''; width: 22px; height: 2px; background: var(--gold-500); }
.section-title { font-family: 'Playfair Display', serif; color: var(--navy-950); font-size: clamp(32px, 4vw, 50px); font-weight: 600; line-height: 1.15; margin: 14px 0 18px; letter-spacing: -.5px; }
.section-sub { color: var(--slate-500); font-size: 15px; max-width: 590px; margin: auto; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 0 23px; border-radius: 6px; border: 1px solid transparent; font-weight: 600; font-size: 13px; transition: transform .3s var(--ease), box-shadow .3s, background .3s, color .3s; }
.btn:hover { transform: translateY(-3px); }
.btn-primary { color: var(--white); background: var(--teal-600); box-shadow: 0 8px 20px rgba(22, 140, 140, .25); }
.btn-primary:hover { background: var(--navy-800); box-shadow: 0 12px 28px rgba(12, 30, 45, .2); }
.btn-ghost { color: var(--white); border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.08); }
.btn-ghost:hover { background: var(--white); color: var(--navy-900); }
.btn-block { width: 100%; }

/* ===== HEADER ===== */
.site-header { position: fixed; z-index: 100; top: 0; width: 100%; color: var(--white); transition: background .35s, box-shadow .35s, color .35s; }
.site-header.scrolled { color: var(--navy-900); background: rgba(255,255,255,.96); box-shadow: 0 3px 24px rgba(7,21,34,.1); backdrop-filter: blur(12px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 80px; }
.logo { display: inline-flex; align-items: center; gap: 10px; min-width: 200px; }
.logo-mark { display: grid; place-items: center; width: 40px; height: 40px; color: var(--white); background: var(--teal-600); border-radius: 10px 3px 10px 3px; font-size: 19px; box-shadow: 4px 4px 0 rgba(231,168,78,.85); }
.logo-text { display: flex; flex-direction: column; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 20px; line-height: 1; }
.logo-text em { color: var(--gold-500); font-style: normal; }
.logo-sub { margin-top: 5px; font-family: 'Poppins', sans-serif; color: inherit; font-size: 8px; font-weight: 500; letter-spacing: 1.2px; text-transform: uppercase; opacity: .8; }
.main-nav { display: flex; align-items: center; gap: 23px; font-size: 12px; font-weight: 500; }
.main-nav > a:not(.nav-cta) { position: relative; padding: 31px 0; }
.main-nav > a:not(.nav-cta)::after { content: ''; position: absolute; left: 0; right: 0; bottom: 23px; width: 0; height: 2px; margin: auto; background: var(--gold-500); transition: width .3s; }
.main-nav > a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta { min-height: 40px; padding: 0 16px; margin-left: 4px; font-size: 11px; }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.nav-toggle span { display: block; width: 25px; height: 2px; margin: 5px 0; background: currentColor; transition: .3s; }

/* ===== HERO SLIDER ===== */
.slider { position: relative; height: min(800px, 100vh); min-height: 620px; color: var(--white); overflow: hidden; background: var(--navy-950); }
.slides, .slide { position: absolute; inset: 0; }
.slide { display: flex; align-items: center; background-position: center; background-size: cover; opacity: 0; visibility: hidden; transform: scale(1.06); transition: opacity .8s, transform 6s var(--ease), visibility .8s; }
.slide.active { opacity: 1; visibility: visible; transform: scale(1); }
.slide-content { width: min(1160px, calc(100% - 48px)); margin: 58px auto 0; }
.slide-tag { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 21px; color: var(--gold-500); font-size: 12px; font-weight: 600; letter-spacing: 2.6px; text-transform: uppercase; }
.slide-tag::before { content: ''; width: 35px; height: 2px; background: var(--gold-500); }
.slide h1 { max-width: 690px; font-family: 'Playfair Display', serif; font-size: clamp(45px, 6.5vw, 78px); line-height: 1.08; letter-spacing: -1.5px; animation: slideIn .8s .1s both; }
.slide h1 span { color: var(--gold-500); }
.slide p { max-width: 535px; margin: 24px 0 31px; color: rgba(255,255,255,.82); font-size: 16px; animation: slideIn .8s .2s both; }
.slide-actions { display: flex; gap: 13px; animation: slideIn .8s .3s both; }
.slider-arrows { position: absolute; right: 5%; bottom: 70px; display: flex; gap: 9px; }
.arrow { display: grid; place-items: center; width: 45px; height: 45px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: var(--white); background: rgba(0,0,0,.15); transition: .3s; }
.arrow:hover { border-color: var(--gold-500); color: var(--navy-900); background: var(--gold-500); }
.slider-dots { position: absolute; left: 5%; bottom: 89px; display: flex; gap: 8px; }
.slider-dot { width: 28px; height: 3px; border: 0; border-radius: 2px; background: rgba(255,255,255,.4); transition: width .3s, background .3s; }
.slider-dot.active { width: 55px; background: var(--gold-500); }

/* ===== ABOUT ===== */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; }
.about-images { position: relative; height: 540px; }
.about-img-main { width: 78%; height: 80%; overflow: hidden; border-radius: 7px; box-shadow: var(--shadow-lg); }
.about-img-main img, .about-img-sub img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.about-img-main:hover img, .about-img-sub:hover img { transform: scale(1.05); }
.about-img-sub { position: absolute; right: 0; bottom: 2%; width: 52%; height: 48%; padding: 8px; background: var(--cream); border-radius: 7px; box-shadow: var(--shadow-md); }
.about-badge { position: absolute; left: -32px; bottom: 13%; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 125px; height: 125px; color: var(--white); text-align: center; border-radius: 50%; background: var(--teal-600); box-shadow: 0 0 0 8px var(--cream); transform: rotate(-8deg); }
.badge-num { font-family: 'Playfair Display', serif; color: var(--gold-500); font-size: 37px; font-weight: 700; line-height: 1; }
.badge-text { margin-top: 6px; font-size: 9px; letter-spacing: .6px; text-transform: uppercase; }
.about-content .section-title { max-width: 600px; }
.about-content .lead { color: var(--slate-700); font-size: 16px; font-weight: 500; }
.about-content p { margin-bottom: 17px; color: var(--slate-500); font-size: 14px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 20px; margin: 27px 0 30px; list-style: none; }
.about-features li { color: var(--slate-700); font-size: 12px; font-weight: 500; }
.about-features i { margin-right: 8px; color: var(--teal-600); }
.about-stats { display: flex; gap: 34px; padding-top: 24px; border-top: 1px solid var(--line); }
.stat { display: flex; flex-direction: column; }
.stat-num { color: var(--teal-600); font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; line-height: 1.1; }
.stat-num::after { content: '+'; color: var(--gold-500); }
.stat-label { margin-top: 4px; color: var(--slate-500); font-size: 10px; text-transform: uppercase; letter-spacing: .4px; }

/* ===== SERVICES ===== */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 3px 12px rgba(7,21,34,.03); transition: transform .35s var(--ease), box-shadow .35s, border-color .35s; }
.service-card:hover { border-color: transparent; box-shadow: var(--shadow-md); transform: translateY(-8px); }
.service-img { position: relative; height: 178px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service-card:hover .service-img img { transform: scale(1.08); }
.service-cat { position: absolute; top: 13px; left: 13px; padding: 5px 9px; color: var(--navy-900); border-radius: 4px; background: var(--gold-500); font-size: 9px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; }
.service-body { position: relative; padding: 25px 20px 21px; }
.service-icon { position: absolute; top: -22px; right: 18px; display: grid; place-items: center; width: 44px; height: 44px; color: var(--white); border: 3px solid var(--white); border-radius: 50%; background: var(--teal-600); font-size: 16px; box-shadow: 0 5px 12px rgba(22,140,140,.25); transition: transform .35s; }
.service-card:hover .service-icon { transform: rotate(10deg) scale(1.08); }
.service-body h3 { margin-bottom: 8px; font-family: 'Playfair Display', serif; color: var(--navy-900); font-size: 20px; line-height: 1.2; }
.service-body p { color: var(--slate-500); font-size: 12px; line-height: 1.7; }

/* ===== GALLERY ===== */
.gallery { background: var(--navy-950); }
.gallery .section-title { color: var(--white); }
.gallery .section-sub { color: rgba(255,255,255,.58); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 205px; gap: 12px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 6px; cursor: pointer; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), filter .4s; }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(7,21,34,.72)); opacity: 0; transition: opacity .35s; }
.gallery-item:hover img { transform: scale(1.08); filter: saturate(1.15); }
.gallery-item:hover::after { opacity: 1; }
.gallery-zoom { position: absolute; z-index: 2; top: 50%; left: 50%; display: grid; place-items: center; width: 44px; height: 44px; color: var(--navy-900); border-radius: 50%; background: var(--gold-500); opacity: 0; transform: translate(-50%,-35%) scale(.6); transition: opacity .3s, transform .3s; }
.gallery-item:hover .gallery-zoom { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.lightbox { position: fixed; z-index: 300; inset: 0; display: flex; align-items: center; justify-content: center; padding: 40px; background: rgba(3,12,20,.94); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(100%, 1000px); max-height: 85vh; border-radius: 5px; box-shadow: var(--shadow-lg); }
.lightbox-close { position: absolute; top: 25px; right: 30px; border: 0; color: var(--white); background: none; font-size: 28px; }
.lightbox-nav { position: absolute; top: 50%; border: 0; color: var(--white); background: transparent; font-size: 24px; transform: translateY(-50%); }
.lightbox-nav.prev { left: 28px; }.lightbox-nav.next { right: 28px; }

/* ===== WHY ===== */
.why { background: var(--blue-100); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card { padding: 30px 25px; border: 1px solid rgba(44,125,160,.12); border-radius: var(--radius-md); background: rgba(255,255,255,.72); transition: transform .35s, box-shadow .35s, background .35s; }
.why-card:hover { background: var(--white); box-shadow: var(--shadow-md); transform: translateY(-6px); }
.why-icon { display: grid; place-items: center; width: 53px; height: 53px; margin-bottom: 19px; color: var(--teal-600); border-radius: 50%; background: rgba(55,183,173,.16); font-size: 22px; transition: transform .4s; }
.why-card:hover .why-icon { transform: rotateY(180deg); }
.why-card h3 { margin-bottom: 7px; color: var(--navy-900); font-family: 'Playfair Display', serif; font-size: 20px; }
.why-card p { color: var(--slate-500); font-size: 12px; }

/* ===== FAQ ===== */
.faq { background: var(--cream); }
.faq-wrap { max-width: 840px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 21px 5px; border: 0; color: var(--navy-900); background: transparent; font-size: 14px; font-weight: 600; text-align: left; }
.faq-q i { color: var(--teal-600); font-size: 13px; transition: transform .3s; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.faq-a p { overflow: hidden; color: var(--slate-500); font-size: 13px; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }.faq-item.open .faq-a p { padding: 0 35px 21px 5px; }

/* ===== CLIENTS ===== */
.clients { background: var(--white); }
.clients-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 13px; }
.client-card { padding: 24px 13px; border: 1px solid var(--line); border-radius: var(--radius-sm); text-align: center; transition: transform .3s, box-shadow .3s, border-color .3s; }
.client-card:hover { border-color: var(--teal-500); box-shadow: var(--shadow-sm); transform: translateY(-5px); }
.client-card > i { margin-bottom: 13px; color: var(--teal-600); font-size: 26px; }
.client-card h4 { margin-bottom: 4px; font-family: 'Playfair Display', serif; font-size: 16px; }
.client-card p { color: var(--slate-500); font-size: 10px; line-height: 1.5; }
.clients-marquee { overflow: hidden; margin-top: 54px; padding: 21px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.marquee-track { display: flex; width: max-content; gap: 45px; color: var(--slate-500); animation: marquee 35s linear infinite; }
.marquee-track span { white-space: nowrap; font-size: 12px; font-weight: 500; }.marquee-track i { margin-right: 7px; color: var(--gold-500); }

/* ===== CONTACT ===== */
.contact { background: var(--cream); padding-bottom: 0; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; padding-bottom: 90px; }
.contact-info .section-title { margin-bottom: 14px; }.contact-info .lead { max-width: 400px; color: var(--slate-500); font-size: 14px; }
.contact-list { display: grid; gap: 20px; margin-top: 33px; list-style: none; }
.contact-list li { display: flex; align-items: flex-start; gap: 14px; }.contact-ico { display: grid; flex: 0 0 auto; place-items: center; width: 38px; height: 38px; color: var(--teal-600); border-radius: 50%; background: var(--blue-100); font-size: 14px; }
.contact-list strong { display: block; margin-bottom: 3px; color: var(--navy-900); font-size: 12px; }.contact-list p { max-width: 300px; color: var(--slate-500); font-size: 12px; line-height: 1.6; }.contact-list a:hover { color: var(--teal-600); }
.contact-socials, .footer-socials { display: flex; gap: 8px; margin-top: 28px; }.contact-socials a, .footer-socials a { display: grid; place-items: center; width: 34px; height: 34px; color: var(--teal-600); border: 1px solid rgba(22,140,140,.25); border-radius: 50%; font-size: 12px; transition: .3s; }.contact-socials a:hover { color: var(--white); background: var(--teal-600); transform: translateY(-3px); }
.contact-form-wrap { padding: 36px; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-md); }.contact-form h3 { margin-bottom: 24px; color: var(--navy-900); font-family: 'Playfair Display', serif; font-size: 27px; }.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }.form-group { position: relative; margin-bottom: 18px; }.form-group label { display: block; margin-bottom: 7px; color: var(--slate-700); font-size: 11px; font-weight: 600; }.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 40px 13px 14px; outline: 0; border: 1px solid var(--line); border-radius: 5px; color: var(--navy-900); background: #fbfcfc; font-size: 12px; transition: border .3s, box-shadow .3s; }.form-group textarea { resize: vertical; min-height: 105px; padding-right: 14px; }.form-group select { appearance: none; cursor: pointer; }.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal-500); box-shadow: 0 0 0 3px rgba(55,183,173,.12); }.field-icon { position: absolute; right: 14px; bottom: 14px; color: var(--slate-500); font-size: 12px; pointer-events: none; }.select-icon { bottom: 15px; }.form-status { min-height: 20px; margin-top: 12px; color: var(--teal-600); font-size: 12px; text-align: center; }.form-status.error { color: #c44b4b; }
.map-wrap { height: 300px; }.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: saturate(.65); }

/* ===== FOOTER ===== */
.site-footer { color: rgba(255,255,255,.65); background: var(--navy-950); }.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .9fr 1.2fr; gap: 55px; padding-top: 75px; padding-bottom: 65px; }.logo-light { color: var(--white); }.footer-col > p { max-width: 270px; margin-top: 22px; font-size: 12px; line-height: 1.8; }.footer-col h4 { margin: 8px 0 20px; color: var(--white); font-size: 14px; }.footer-col ul { display: grid; gap: 10px; list-style: none; }.footer-col li, .footer-col li a { font-size: 11px; line-height: 1.6; transition: color .3s; }.footer-col li a:hover { color: var(--gold-500); }.footer-socials a { color: var(--gold-500); border-color: rgba(231,168,78,.3); }.footer-socials a:hover { color: var(--navy-900); background: var(--gold-500); }.footer-contact li { display: flex; gap: 10px; }.footer-contact i { width: 13px; margin-top: 3px; color: var(--gold-500); }.footer-bottom { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.1); }.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; font-size: 10px; }.footer-bottom i { color: #ef7676; }
.floating-buttons { position: fixed; z-index: 90; right: 22px; bottom: 22px; display: flex; flex-direction: column; gap: 10px; }.float-btn { display: grid; place-items: center; width: 46px; height: 46px; color: var(--white); border-radius: 50%; box-shadow: 0 8px 20px rgba(7,21,34,.2); transition: transform .3s, box-shadow .3s; }.float-btn:hover { color: var(--white); transform: scale(1.1); box-shadow: 0 10px 27px rgba(7,21,34,.3); }.float-call { background: var(--teal-600); }.float-whatsapp { background: #25d366; }.float-top { color: var(--navy-900); background: var(--gold-500); opacity: 0; visibility: hidden; transform: translateY(15px); }.float-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(25px); transition: opacity .7s var(--ease), transform .7s var(--ease); }.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes slideIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1050px) {
  .main-nav { gap: 13px; }.main-nav > a:not(.nav-cta) { font-size: 11px; }.services-grid { grid-template-columns: repeat(3, 1fr); }.about-grid { gap: 55px; }.footer-grid { gap: 28px; }
}
@media (max-width: 800px) {
  .container { width: min(100% - 36px, 600px); }.section { padding: 78px 0; }
  .nav-toggle { display: block; }.main-nav { position: absolute; top: 80px; left: 0; right: 0; display: flex; align-items: stretch; flex-direction: column; gap: 0; padding: 12px 20px 22px; color: var(--navy-900); background: var(--white); box-shadow: 0 15px 22px rgba(7,21,34,.12); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .3s; }.main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }.main-nav > a:not(.nav-cta) { padding: 11px 0; font-size: 13px; }.main-nav > a:not(.nav-cta)::after { display: none; }.nav-cta { margin: 10px 0 0; }.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }.nav-toggle.open span:nth-child(2) { opacity: 0; }.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .slider { min-height: 650px; }.slide-content { width: calc(100% - 36px); }.slide h1 { font-size: clamp(42px, 12vw, 65px); }.slide p { font-size: 14px; }.slider-arrows { right: 18px; bottom: 30px; }.slider-dots { left: 18px; bottom: 51px; }
  .about-grid { grid-template-columns: 1fr; gap: 25px; }.about-images { height: 460px; max-width: 540px; margin: auto; }.about-badge { left: -8px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }.why-grid { grid-template-columns: repeat(2, 1fr); }.clients-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 45px; }.contact-form-wrap { padding: 28px 22px; }.footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 25px; }.footer-bottom .container { display: block; text-align: center; }.footer-bottom p + p { margin-top: 6px; }
}
@media (max-width: 500px) {
  .section-title { font-size: 34px; }.logo { min-width: 0; }.logo-text { font-size: 17px; }.logo-mark { width: 35px; height: 35px; font-size: 16px; }.logo-sub { font-size: 7px; }.slider { min-height: 640px; }.slide-actions { flex-direction: column; align-items: flex-start; }.slide-actions .btn { min-width: 165px; }.slider-arrows { bottom: 26px; }.slider-dots { bottom: 48px; }
  .about-images { height: 350px; }.about-img-main { width: 82%; height: 78%; }.about-img-sub { width: 52%; height: 50%; }.about-badge { width: 98px; height: 98px; left: -5px; }.badge-num { font-size: 28px; }.badge-text { font-size: 7px; }.about-features { grid-template-columns: 1fr; gap: 10px; }.about-stats { gap: 21px; }.stat-num { font-size: 26px; }.stat-label { font-size: 8px; }
  .services-grid { grid-template-columns: 1fr; }.service-img { height: 220px; }.gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }.gallery-item:nth-child(4) { grid-column: span 2; }.why-grid { grid-template-columns: 1fr; }.clients-grid { grid-template-columns: repeat(2, 1fr); }.form-row { grid-template-columns: 1fr; gap: 0; }.contact-form h3 { font-size: 23px; }.footer-grid { grid-template-columns: 1fr; gap: 30px; }.footer-col > p { max-width: 100%; }.floating-buttons { right: 14px; bottom: 14px; }.float-btn { width: 42px; height: 42px; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } }
