*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:Arial,Helvetica,sans-serif;
  color:#17212b;
  background:#fff;
  line-height:1.6;
}
img{max-width:100%;display:block}
a{text-decoration:none}
.container{width:92%;max-width:1250px;margin:0 auto}

:root{
  --dark:#0e1a24;
  --dark-2:#162634;
  --light:#f7f9fb;
  --soft:#eef7ef;
  --accent:#2fb24b;
  --accent-dark:#13833d;
  --teal:#0f766e;
  --teal-2:#14b8a6;
  --text:#17212b;
  --muted:#6c7a86;
  --white:#fff;
  --border:#dbe5ee;
  --shadow:0 10px 30px rgba(0,0,0,.10);
  --shadow-strong:0 18px 44px rgba(0,0,0,.18);
  --radius:18px;
}

/* GLOBAL */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 22px;
  border-radius:14px;
  font-weight:800;
  transition:.25s ease;
  border:none;
  cursor:pointer;
}
.btn-primary{
  background:linear-gradient(135deg,var(--teal),var(--teal-2));
  color:#fff;
  box-shadow:0 14px 30px rgba(20,184,166,.24);
}
.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 34px rgba(20,184,166,.30);
}
.btn-secondary{
  background:rgba(255,255,255,.10);
  color:#fff;
  border:1px solid rgba(255,255,255,.35);
}
.btn-secondary:hover{background:rgba(255,255,255,.18)}

.section{padding:90px 0}
.section-light{background:var(--light)}
.section-dark{
  background:linear-gradient(135deg,var(--dark),var(--dark-2));
  color:#fff;
}
.section-soft{background:var(--soft)}

.section-heading{max-width:860px;margin:0 auto 45px}
.section-heading.center{text-align:center}
.section-heading.light h2,
.section-heading.light p,
.section-heading.light .section-subtitle{color:#fff}
.section-subtitle{
  display:inline-block;
  color:var(--accent-dark);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.82rem;
  margin-bottom:12px;
}
.section-heading h2{
  font-size:clamp(1.8rem,3vw,2.7rem);
  line-height:1.18;
  margin-bottom:14px;
}
.section-heading p,
.section-intro{
  color:var(--muted);
  font-size:1.02rem;
  line-height:1.7;
}
.section-cta{text-align:center;margin-top:28px}

/* MENU */
.menu-system{
  position:fixed !important;
  top:0 !important;
  right:0 !important;
  bottom:0 !important;
  height:100vh !important;
  display:flex !important;
  align-items:stretch !important;
  z-index:2600 !important;
}
.menu-edge-line{display:none !important}

:root{
  --menu-bubble-width:92px;
  --menu-panel-width:min(480px, calc(100vw - 96px));
}
.menu-system{
  width:var(--menu-bubble-width) !important;
  transition:width .35s ease !important;
}
.menu-system.open{
  width:calc(var(--menu-bubble-width) + var(--menu-panel-width)) !important;
}
.menu-bubble-btn{
  position:absolute !important;
  left:0 !important;
  right:auto !important;
  top:50% !important;
  transform:translateY(-50%) !important;
  width:92px !important;
  min-width:92px !important;
  height:108px !important;
  min-height:108px !important;
  border:none;
  border-radius:22px 0 0 22px !important;
  background:linear-gradient(180deg,#1b2c38,#0f1921) !important;
  color:#fff;
  cursor:pointer;
  padding:12px 8px !important;
  display:flex !important;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  box-shadow:-14px 18px 42px rgba(0,0,0,.28) !important;
  z-index:3;
}
.menu-bubble-circle{
  width:36px;
  height:36px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#dff56f;
  color:#12202a;
  font-size:1rem;
  margin:0 auto;
  box-shadow:0 0 0 4px rgba(223,245,111,.16);
  animation:menuHint 1.8s ease-in-out infinite;
}
.menu-panel,
.menu-panel-fixed{
  position:absolute !important;
  top:0 !important;
  right:0 !important;
  left:auto !important;
  height:100vh !important;
  width:var(--menu-panel-width) !important;
  max-width:var(--menu-panel-width) !important;
  margin-right:0 !important;
  border-radius:0 !important;
  padding:22px 16px !important;
  display:flex !important;
  flex-direction:column !important;
  align-items:stretch !important;
  justify-content:flex-start !important;
  gap:14px !important;
  overflow-y:auto !important;
  background:rgba(255,255,255,.98);
  border:1px solid rgba(18,32,42,.08);
  box-shadow:-18px 0 38px rgba(0,0,0,.22) !important;
  transform:translateX(calc(100% + 8px)) !important;
  transition:transform .35s ease !important;
}
.menu-system.open .menu-panel-fixed,
.menu-system.open .menu-panel{
  transform:translateX(0) !important;
}
.menu-brand-card,
.menu-info-group,
.menu-contact-stack{
  width:100% !important;
}
.menu-brand-card{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  color:var(--dark);
  background:linear-gradient(135deg,#f7fbef,#ffffff);
  border:1px solid #e4ead8;
  border-radius:22px;
  padding:14px;
}
.menu-brand-logo{
  width:54px;
  height:54px;
  object-fit:contain;
  border-radius:16px;
  background:#fff;
  box-shadow:0 8px 20px rgba(0,0,0,.08);
}
.menu-info-group{
  background:#f8fafc;
  border:1px solid #ebf0f5;
  border-radius:18px;
  padding:14px;
}
.menu-group-title{
  font-size:.94rem;
  font-weight:800;
  color:var(--dark);
  margin-bottom:10px;
}
.menu-language-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.lang-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:48px;
  padding:9px 12px;
  border-radius:999px;
  background:#fff;
  color:var(--dark);
  border:1px solid #dfe6ed;
  font-weight:800;
}
.lang-pill.active{
  background:var(--accent-dark);
  color:#fff;
  border-color:var(--accent-dark);
}
.menu-anchor-list{
  display:flex !important;
  flex-direction:column !important;
  gap:10px !important;
}
.menu-pill,
.menu-card-link{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:flex-start !important;
  min-height:48px;
  padding:12px 16px !important;
  border-radius:16px !important;
  color:var(--dark);
  font-weight:700;
  background:#fff;
  border:1px solid #e6ecf2;
  transition:.25s ease;
}
.menu-pill:hover,
.menu-card-link:hover{
  background:#f4faf5;
  border-color:rgba(47,178,75,.35);
}
.menu-contact-stack{
  display:flex !important;
  flex-direction:column !important;
  gap:10px !important;
}
.menu-contact-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  border-radius:16px;
  background:#14202a;
  color:#fff;
  font-weight:800;
}
.menu-quote-cta{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  border-radius:18px;
  background:linear-gradient(135deg,#dff56f,#8cc63e);
  color:#14202a;
  font-size:1.05rem;
  font-weight:900;
  letter-spacing:.02em;
  box-shadow:0 14px 30px rgba(140,198,62,.28);
}
.menu-social-icons{
  display:flex !important;
  flex-wrap:wrap !important;
  justify-content:flex-start !important;
  gap:12px !important;
}
.menu-social-icons a{
  width:48px !important;
  height:48px !important;
  min-width:48px !important;
  border-radius:50% !important;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#14202a;
  color:#fff;
  font-weight:900 !important;
}
.menu-social-icons a span{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:100%;
  font-size:12px;
  font-weight:800;
}

/* HERO */
.hero-slider{
  position:relative;
  min-height:760px;
  height:96vh;
  overflow:hidden;
  background:#111;
}
.hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform:scale(1.03);
  transition:opacity 1s ease,transform 5s ease;
}
.hero-slide.active{
  opacity:1;
  transform:scale(1);
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(to right,rgba(14,26,36,.78),rgba(14,26,36,.30)),
    linear-gradient(to top,rgba(14,26,36,.34),transparent 40%);
  z-index:1;
}
.hero-content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  align-items:center;
  gap:44px;
}
.hero-logo-wrap{
  flex:0 0 240px;
  align-self:flex-start;
  margin-top:110px;
}
.hero-logo{
  width:100%;
  max-width:240px;
  filter:drop-shadow(0 0 18px rgba(164,255,118,.45)) drop-shadow(0 18px 38px rgba(0,0,0,.28));
}
.hero-text{
  max-width:820px;
  color:#fff;
  padding-top:90px;
}
.hero-badge{
  display:inline-block;
  background:rgba(124,194,66,.18);
  border:1px solid rgba(124,194,66,.45);
  color:#d5f2bb;
  padding:10px 14px;
  border-radius:999px;
  margin-bottom:18px;
  font-size:.92rem;
  font-weight:700;
}
.hero-text h1{
  font-size:clamp(2.3rem,4.7vw,4.4rem);
  line-height:1.06;
  letter-spacing:-.03em;
  text-transform:none;
  color:#fff;
  margin-bottom:14px;
}
.hero-text h2{
  font-size:clamp(1.15rem,2vw,1.6rem);
  line-height:1.3;
  font-weight:700;
  color:#dcecf0;
  margin-bottom:18px;
}
.hero-text p{
  font-size:1.08rem;
  color:rgba(255,255,255,.92);
  margin-bottom:26px;
  max-width:720px;
}
.hero-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:18px;
}
.hero-trust-points{
  display:flex;
  flex-wrap:wrap;
  gap:10px 18px;
  color:rgba(255,255,255,.92);
  font-size:.96rem;
  font-weight:700;
}
.slider-dots{
  position:absolute;
  bottom:30px;
  left:50%;
  z-index:3;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
}
.dot{
  width:13px;
  height:13px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,.45);
  cursor:pointer;
}
.dot.active{background:var(--accent)}

/* CONTENT */
.flow-grid{
  display:grid;
  grid-template-columns:1fr auto 1fr auto 1fr;
  gap:18px;
  align-items:center;
}
.flow-card{
  background:linear-gradient(135deg,rgba(20,131,61,.92),rgba(47,178,75,.70));
  color:#fff;
  padding:30px;
  border-radius:22px;
  box-shadow:0 14px 34px rgba(19,131,61,.18);
  border:1px solid rgba(255,255,255,.12);
  position:relative;
  overflow:hidden;
  text-align:center;
}
.flow-card:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top right,rgba(255,255,255,.20),transparent 30%),
    linear-gradient(135deg,rgba(255,255,255,.08),transparent 45%);
  pointer-events:none;
}
.flow-icon{
  width:54px;
  height:54px;
  border-radius:16px;
  background:rgba(255,255,255,.14);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  margin:0 auto 14px auto;
  border:1px solid rgba(255,255,255,.16);
}
.flow-card h3{margin-bottom:10px}
.flow-card p{color:rgba(255,255,255,.92)}
.flow-arrow{
  font-size:2rem;
  color:var(--accent-dark);
  font-weight:800;
}
.domain-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:20px;
}
.domain-card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  padding:26px 22px;
  border-radius:22px;
  transition:.25s ease;
  box-shadow:var(--shadow);
}
.domain-card:hover{
  transform:translateY(-6px);
  background:rgba(255,255,255,.12);
}
.domain-icon{
  font-size:2rem;
  margin-bottom:12px;
}
.domain-card h3{
  margin-bottom:10px;
  font-size:1.1rem;
}
.domain-card p{
  color:rgba(255,255,255,.86);
  font-size:.96rem;
}
.domain-card a{
  color:#dff56f;
  font-weight:800;
}
.rating-bar{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-bottom:24px;
}
.rating-card{
  background:#fff;
  padding:24px;
  border-radius:20px;
  box-shadow:var(--shadow);
  text-align:center;
}
.rating-platform{
  font-weight:800;
  color:var(--dark);
}
.rating-score{
  font-size:2rem;
  font-weight:900;
  color:var(--accent-dark);
}
.rating-stars{
  letter-spacing:.2em;
  color:#ffb400;
  margin:6px 0;
}
.rating-card p{color:var(--muted)}
.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.testimonial-card{
  background:#fff;
  padding:28px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.testimonial-card p{
  color:var(--muted);
  margin-bottom:18px;
  font-style:italic;
}
.testimonial-card h4{color:var(--dark)}

/* GALLERY */
.gallery-teaser-head{max-width:860px;margin:0 auto 28px}
.gallery-link-btn{margin-top:18px;display:inline-flex}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  align-items:stretch;
}
.gallery-item{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  min-height:280px;
  box-shadow:0 18px 40px rgba(12,22,31,.16);
  background:#fff;
  border:1px solid rgba(255,255,255,.7);
  transition:transform .28s ease, box-shadow .28s ease;
}
.gallery-item.large{
  grid-column:span 2;
  min-height:360px;
}
.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s ease;
}
.gallery-item:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 48px rgba(12,22,31,.22);
}
.gallery-item:hover img{transform:scale(1.05)}
.gallery-item:before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:28px;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.18);
  pointer-events:none;
  z-index:1;
}
.gallery-caption{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:20px 20px 18px;
  color:#fff;
  background:linear-gradient(to top,rgba(0,0,0,.72),rgba(0,0,0,.06));
  border-bottom-left-radius:28px;
  border-bottom-right-radius:28px;
}
.gallery-caption h3{font-size:1.05rem;margin-bottom:5px}
.gallery-caption p{font-size:.92rem}
.gallery-more-wrap{margin-top:26px}
.gallery-more-btn{
  min-width:170px;
  justify-content:center;
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  box-shadow:0 14px 30px rgba(20,131,61,.2);
}

/* CONTACT */
.contact-cards{
  display:flex;
  justify-content:center;
  gap:28px;
  flex-wrap:wrap;
  max-width:1100px;
  margin:40px auto 0;
}
.contact-option{
  position:relative;
  width:270px;
  min-height:250px;
  padding:30px 24px;
  border-radius:26px;
  background:linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,250,255,0.96));
  border:1px solid rgba(15, 23, 42, 0.07);
  box-shadow:
    0 14px 34px rgba(15, 23, 42, 0.06),
    0 1px 0 rgba(255,255,255,0.9) inset;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  text-align:center;
  overflow:hidden;
  transition:transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
  animation:cardFloatIn 0.6s ease both;
  isolation:isolate;
}
.contact-option:nth-child(2){animation-delay:0.08s}
.contact-option:nth-child(3){animation-delay:0.16s}
.contact-option:nth-child(4){animation-delay:0.24s}
.contact-option::before{
  content:"";
  position:absolute;
  inset:-30%;
  background:
    radial-gradient(circle at 20% 20%, rgba(20,184,166,0.18), transparent 28%),
    radial-gradient(circle at 80% 75%, rgba(34,197,94,0.14), transparent 26%),
    radial-gradient(circle at 60% 10%, rgba(15,118,110,0.10), transparent 22%);
  opacity:0.55;
  transform:translate3d(0,0,0) scale(1);
  animation:premiumGradientMove 14s ease-in-out infinite alternate;
  z-index:0;
  pointer-events:none;
}
.contact-option::after{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:25px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.38), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.10), transparent 60%);
  z-index:0;
  pointer-events:none;
}
.contact-option:hover{
  transform:translateY(-8px);
  border-color:rgba(20,184,166,0.22);
  box-shadow:
    0 24px 48px rgba(15, 23, 42, 0.10),
    0 1px 0 rgba(255,255,255,0.95) inset;
}
.contact-option:hover::before{
  opacity:0.85;
  animation-duration:8s;
}
.contact-option-icon{
  position:relative;
  width:82px;
  height:82px;
  margin-bottom:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  transition:transform 0.32s ease;
  z-index:1;
}
.icon-glow{
  border-radius:999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.92), rgba(255,255,255,0.20) 38%, rgba(20,184,166,0.14) 70%),
    linear-gradient(135deg, rgba(15,118,110,0.14), rgba(20,184,166,0.18));
  border:1px solid rgba(15,118,110,0.10);
  box-shadow:
    0 10px 28px rgba(20,184,166,0.16),
    0 0 0 10px rgba(20,184,166,0.05),
    0 1px 0 rgba(255,255,255,0.85) inset;
}
.icon-glow::before{
  content:"";
  position:absolute;
  inset:-12px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(20,184,166,0.18), transparent 70%);
  opacity:0.6;
  filter:blur(10px);
  z-index:-1;
  transition:opacity 0.32s ease, transform 0.32s ease;
}
.contact-option:hover .contact-option-icon{
  transform:translateY(-2px) scale(1.07) rotate(-2deg);
}
.contact-option:hover .icon-glow::before{
  opacity:0.95;
  transform:scale(1.12);
}
.contact-svg-icon{
  width:36px;
  height:36px;
  display:block;
  color:#0f766e;
  transition:transform 0.32s ease, color 0.32s ease, filter 0.32s ease;
}
.contact-option:hover .contact-svg-icon{
  transform:scale(1.06);
  color:#0b5f59;
  filter:drop-shadow(0 3px 8px rgba(15,118,110,0.15));
}
.contact-svg-icon path,
.contact-svg-icon rect,
.contact-svg-icon circle{
  stroke:currentColor;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
  fill:none;
}
.contact-content{
  display:flex;
  flex-direction:column;
  gap:8px;
  align-items:center;
  justify-content:flex-start;
  position:relative;
  z-index:1;
}
.contact-option h3{
  margin:0;
  font-size:20px;
  font-weight:800;
  color:#0f172a;
  letter-spacing:-0.02em;
}
.contact-option p{
  margin:0;
  font-size:15px;
  line-height:1.6;
  color:#5b6474;
  max-width:21ch;
}
.contact-option a{
  color:#0f766e;
  font-weight:700;
  text-decoration:none;
}
.contact-option a:hover{
  color:#0b5f59;
  opacity:0.95;
}

/* FORMS */
.classic-contact-form-wrap{
  max-width:900px;
  margin:34px auto 0 auto;
  background:#fff;
  padding:24px;
  border-radius:22px;
  box-shadow:var(--shadow);
}
.classic-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-bottom:16px;
}
.classic-grid input,
.classic-grid textarea{
  width:100%;
  padding:14px 16px;
  border:1px solid #d7e0eb;
  border-radius:14px;
  font-size:1rem;
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.classic-grid input:focus,
.classic-grid textarea:focus{
  border-color:rgba(20,184,166,.45);
  box-shadow:0 0 0 4px rgba(20,184,166,.10);
}
.classic-grid textarea{
  grid-column:1/-1;
  resize:vertical;
}

/* FOOTER / COOKIE */
.social-icons{
  display:flex;
  gap:12px;
  margin-top:26px;
}
.center-icons{justify-content:center}
.social-icons a{
  width:44px;
  height:44px;
  border-radius:50%;
  background:var(--dark);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:bold;
  transition:.25s ease;
}
.social-icons a:hover{background:var(--accent-dark)}
.main-footer{
  background:var(--dark);
  color:rgba(255,255,255,.86);
  padding:36px 0;
}
.footer-content{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
}
.main-footer h3{
  color:#fff;
  margin-bottom:6px;
}
.footer-links a{
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.35);
}
.cookie-banner{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:3000;
  background:rgba(14,26,36,.96);
  color:#fff;
  box-shadow:0 -10px 28px rgba(0,0,0,.18);
}
.cookie-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  padding:16px 0;
}
.cookie-text{color:rgba(255,255,255,.88)}
.cookie-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.cookie-btn{
  border:none;
  border-radius:999px;
  padding:12px 16px;
  font-weight:700;
  cursor:pointer;
}
.cookie-btn.accept{
  background:#2fb24b;
  color:#fff;
}
.cookie-btn.refuse{
  background:#fff;
  color:#0e1a24;
}

/* FLOATING */
.floating-contact{
  position:fixed;
  right:20px;
  bottom:90px;
  z-index:1300;
}
.floating-main-btn{
  width:60px;
  height:60px;
  border:none;
  border-radius:50%;
  background:var(--dark);
  color:#fff;
  font-size:2rem;
  cursor:pointer;
  box-shadow:var(--shadow);
  transition:.25s ease;
}
.floating-main-btn:hover{background:var(--accent-dark)}
.floating-menu{
  position:absolute;
  right:0;
  bottom:74px;
  display:flex;
  flex-direction:column;
  gap:10px;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:.25s ease;
}
.floating-contact.open .floating-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
.floating-item{
  background:#fff;
  color:var(--dark);
  padding:12px 16px;
  border-radius:999px;
  box-shadow:var(--shadow);
  font-weight:700;
  white-space:nowrap;
}
.floating-cta{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:1400;
  background:linear-gradient(135deg,#0f766e,#14b8a6);
  color:#fff;
  text-decoration:none;
  padding:14px 22px;
  border-radius:999px;
  font-weight:800;
  box-shadow:0 16px 28px rgba(20,184,166,0.24);
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}
.floating-cta:hover{
  transform:translateY(-2px);
  box-shadow:0 20px 34px rgba(20,184,166,0.28);
}

/* ANIMATIONS */
@keyframes menuHint{
  0%,100%{transform:translateX(0)}
  50%{transform:translateX(-6px)}
}
@keyframes cardFloatIn{
  from{
    opacity:0;
    transform:translateY(18px) scale(0.98);
  }
  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}
@keyframes premiumGradientMove{
  0%{transform:translate3d(-2%, -1%, 0) scale(1)}
  50%{transform:translate3d(2%, 1%, 0) scale(1.05)}
  100%{transform:translate3d(-1%, 2%, 0) scale(1.02)}
}

@media (prefers-reduced-motion: reduce){
  .contact-option,
  .contact-option::before,
  .contact-option-icon,
  .contact-svg-icon{
    animation:none !important;
    transition:none !important;
  }
}

/* RESPONSIVE */
@media (max-width:1180px){
  .domain-grid{grid-template-columns:repeat(3,1fr)}
  .gallery-grid{grid-template-columns:repeat(2,1fr)}
  .gallery-item.large{grid-column:span 2}
}
@media (max-width:980px){
  :root{
    --menu-bubble-width:84px;
    --menu-panel-width:min(420px, calc(100vw - 88px));
  }
  .hero-content{
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
  }
  .hero-logo-wrap{
    margin-top:70px;
    flex:0 0 auto;
  }
  .hero-text{padding-top:0}
  .flow-grid{
    grid-template-columns:1fr;
    gap:14px;
  }
  .flow-arrow{
    text-align:center;
    transform:rotate(90deg);
  }
  .domain-grid{grid-template-columns:repeat(2,1fr)}
  .testimonial-grid,
  .rating-bar{
    grid-template-columns:1fr;
  }
  .classic-grid{grid-template-columns:1fr}
}
@media (max-width:768px){
  :root{
    --menu-bubble-width:76px;
    --menu-panel-width:calc(100vw - 80px);
  }
  .hero-slider{
    min-height:700px;
    height:auto;
  }
  .hero-text h1{font-size:2rem}
  .hero-text h2{font-size:1.05rem}
  .hero-text p{font-size:1rem}
  .hero-trust-points{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
  }
  .hero-buttons{
    width:100%;
    flex-direction:column;
    align-items:stretch;
  }
  .gallery-grid,
  .domain-grid,
  .testimonial-grid{
    grid-template-columns:1fr;
  }
  .gallery-item.large{grid-column:span 1}
  .contact-cards{gap:18px}
  .contact-option{
    width:100%;
    max-width:340px;
    min-height:220px;
  }
  .contact-option-icon{
    width:74px;
    height:74px;
  }
  .contact-svg-icon{
    width:32px;
    height:32px;
  }
  .cookie-inner{
    flex-direction:column;
    align-items:flex-start;
  }
  .footer-content{
    flex-direction:column;
    align-items:flex-start;
  }
  .floating-contact{
    right:16px;
    bottom:88px;
  }
  .floating-cta{
    right:16px;
    bottom:16px;
    padding:13px 18px;
    font-size:.95rem;
  }
}
@media (max-width:560px){
  .section{padding:70px 0}
  .section-heading h2{font-size:1.7rem}
  .hero-logo{max-width:190px}
  .menu-bubble-btn{
    width:76px !important;
    min-width:76px !important;
    height:96px !important;
    min-height:96px !important;
  }
}
