:root {
  --navy: #0f2c4c;
  --navy-dark: #0a1e33;
  --accent: #c9852b;
  --accent-light: #e0a24f;
  --ink: #1b2733;
  --muted: #5b6b7a;

  /* Soft, fluid surface palette */
  --bg: #ffffff;
  --bg-tint: #f5f8fc;
  --bg-tint-2: #eef3f9;
  --bg-warm: #fdf8f1;
  --border: #e8edf3;

  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --pill: 999px;

  --shadow-sm: 0 4px 20px rgba(15,44,76,0.05);
  --shadow: 0 18px 50px rgba(15,44,76,0.08);
  --shadow-lg: 0 30px 70px rgba(15,44,76,0.13);

  --max-width: 1180px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.65, 0, 0.35, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.65;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

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

h1, h2, h3 {
  font-weight: 800;
  line-height: 1.18;
  margin: 0 0 16px;
  color: var(--navy-dark);
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.3rem, 4.6vw, 3.5rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.8rem, 3.1vw, 2.45rem); }
h3 { font-size: 1.18rem; margin-bottom: 8px; }

p { margin: 0 0 16px; color: var(--muted); }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(201,133,43,0.09);
  padding: 7px 16px;
  border-radius: var(--pill);
  margin-bottom: 18px;
}
.eyebrow.center { display: block; width: fit-content; margin-left: auto; margin-right: auto; }
h2.center { text-align: center; margin-left: auto; margin-right: auto; max-width: 660px; }
.section-lead {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.02rem;
}

/* ---- Sections & fluid dividers ---- */
.section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}
.section-tint { background: var(--bg-tint); }
.section-warm { background: var(--bg-warm); }

/* Soft blurred colour blobs that give the page an organic, flowing feel */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.blob-a {
  width: 460px; height: 460px;
  background: rgba(201,133,43,0.16);
  top: -140px; right: -120px;
  animation: drift 22s var(--ease-soft) infinite alternate;
}
.blob-b {
  width: 520px; height: 520px;
  background: rgba(15,44,76,0.09);
  bottom: -180px; left: -160px;
  animation: drift 28s var(--ease-soft) infinite alternate-reverse;
}
.blob-c {
  width: 380px; height: 380px;
  background: rgba(224,162,79,0.14);
  top: 30%; left: -140px;
  animation: drift 25s var(--ease-soft) infinite alternate;
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(46px, -38px) scale(1.14); }
}

/* Curved SVG divider between sections */
.wave {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}
.wave svg { display: block; width: 100%; height: 90px; }
.wave-top { top: -1px; }
.wave-bottom { bottom: -1px; }

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.09s; }
.reveal[data-delay="2"] { transition-delay: 0.18s; }
.reveal[data-delay="3"] { transition-delay: 0.27s; }
.reveal[data-delay="4"] { transition-delay: 0.36s; }
.reveal[data-delay="5"] { transition-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero-bg img, .blob, .construction-icon, .whatsapp-fab::before, .scroll-hint span { animation: none !important; }
}

/* ---- Buttons (pill shaped) ---- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: var(--pill);
  font-weight: 600;
  font-size: 0.96rem;
  transition: background 0.4s var(--ease), color 0.4s var(--ease),
              border-color 0.4s var(--ease), transform 0.4s var(--ease-out),
              box-shadow 0.4s var(--ease-out);
  border: 2px solid transparent;
  cursor: pointer;
}
.btn:active { transform: translateY(1px) scale(0.985); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(201,133,43,0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(201,133,43,0.42);
}
.btn-ghost {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.06);
}
.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.16);
  transform: translateY(-3px);
}
.btn-full { width: 100%; justify-content: center; border: none; font-family: var(--font); font-size: 1rem; }
.btn-sm { padding: 11px 22px; font-size: 0.87rem; }

/* ---- Top bar ---- */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.72);
  font-size: 0.82rem;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  gap: 16px;
}
.top-bar-contact { display: flex; gap: 26px; flex-wrap: wrap; }
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.3s var(--ease);
}
.top-bar-item svg { flex-shrink: 0; transition: transform 0.3s var(--ease-out); }
.top-bar-item:hover { color: var(--accent-light); }
.top-bar-item:hover svg { transform: scale(1.18); }
.top-bar-social { color: rgba(255,255,255,0.48); letter-spacing: 0.02em; }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(180%) blur(14px);
  transition: box-shadow 0.45s var(--ease), background 0.45s var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 6px 30px rgba(15,44,76,0.09);
  background: rgba(255,255,255,0.96);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
  transition: padding 0.45s var(--ease);
}
.site-header.scrolled .header-inner { padding-top: 12px; padding-bottom: 12px; }

.logo { display: flex; align-items: center; gap: 9px; }
.logo-mark {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy-dark);
  letter-spacing: 0.01em;
}
.logo-mark span { color: var(--accent); }
.logo-text { color: var(--muted); font-size: 0.95rem; font-weight: 500; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  position: relative;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink);
  padding: 9px 16px;
  border-radius: var(--pill);
  transition: color 0.35s var(--ease), background 0.35s var(--ease);
}
.nav a:hover { color: var(--navy); background: var(--bg-tint-2); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-tint);
  border: 1px solid transparent;
  border-radius: var(--pill);
  padding: 8px 14px;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.lang-switch:hover { border-color: var(--accent); background: rgba(201,133,43,0.08); }
.lang-option { color: var(--muted); transition: color 0.3s var(--ease); }
.lang-option.active { color: var(--navy); }
.lang-divider { color: #c6d0da; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy-dark);
  transition: transform 0.4s var(--ease-out), opacity 0.3s var(--ease);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Hero ---- */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--navy-dark);
  overflow: hidden;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.52;
  animation: kenburns 30s var(--ease-soft) infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.13) translate(-1.8%, -1.8%); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10,30,51,0.95) 6%, rgba(10,30,51,0.78) 45%, rgba(10,30,51,0.5) 100%),
    radial-gradient(circle at 82% 82%, rgba(201,133,43,0.24), transparent 48%),
    radial-gradient(circle at 12% 18%, rgba(63,124,190,0.18), transparent 42%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 132px 24px 130px;
  max-width: 820px;
}
.hero .eyebrow { color: var(--accent-light); background: rgba(224,162,79,0.15); }
.hero h1 { color: #fff; }
.hero-sub { color: rgba(255,255,255,0.82); font-size: 1.1rem; max-width: 630px; }
.hero-actions { display: flex; gap: 16px; margin: 32px 0 60px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-stats div {
  display: flex;
  flex-direction: column;
  padding: 18px 26px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  transition: background 0.45s var(--ease), transform 0.45s var(--ease-out);
}
.hero-stats div:hover { background: rgba(255,255,255,0.13); transform: translateY(-4px); }
.hero-stats strong { font-size: 1.5rem; color: #fff; }
.hero-stats span { font-size: 0.84rem; color: rgba(255,255,255,0.66); }

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--pill);
  z-index: 2;
}
.scroll-hint span {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 7px;
  margin-left: -2px;
  border-radius: 2px;
  background: rgba(255,255,255,0.7);
  animation: scrollDot 2.1s var(--ease) infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 0; }
  25%  { opacity: 1; }
  75%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ---- About ---- */
.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
  align-items: center;
}
.about-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,30,51,0.34) 100%);
  pointer-events: none;
}
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}
.about-media:hover img { transform: scale(1.07); }

.about-points { list-style: none; padding: 0; margin: 24px 0 0; }
.about-points li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 500;
}
.about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(201,133,43,0.14);
}
.about-points li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 10px;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.about-founder {
  margin-top: 32px;
  padding: 22px 26px;
  border-radius: var(--radius-sm);
  background: var(--bg-tint);
}
.about-founder h3 { margin-bottom: 2px; }
.about-role { color: var(--accent); font-weight: 600; font-size: 0.9rem; margin-bottom: 0; }

/* ---- Services ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 58px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px);
}
.service-media {
  position: relative;
  aspect-ratio: 7 / 5;
  overflow: hidden;
  background: var(--navy-dark);
  border-radius: var(--radius) var(--radius) 0 0;
}
.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,30,51,0.04) 40%, rgba(10,30,51,0.42) 100%);
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}
.service-card:hover .service-media::after { opacity: 1; }
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.service-card:hover .service-media img { transform: scale(1.08); }
.service-body { padding: 28px 26px 32px; }
.service-body h3 { transition: color 0.4s var(--ease); }
.service-card:hover .service-body h3 { color: var(--accent); }
.service-card p { margin-bottom: 0; font-size: 0.95rem; }

/* ---- Process ---- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 58px;
}
.process-step {
  position: relative;
  padding: 32px 26px 30px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.55s var(--ease-out), box-shadow 0.55s var(--ease-out);
}
.process-step:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--accent);
  background: rgba(201,133,43,0.12);
  margin-bottom: 18px;
  transition: background 0.5s var(--ease), color 0.5s var(--ease), transform 0.5s var(--ease-out);
}
.process-step:hover .step-num {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  transform: scale(1.08) rotate(-6deg);
}
.process-step p { font-size: 0.95rem; margin-bottom: 0; }

/* ---- Under construction ---- */
.under-construction {
  max-width: 620px;
  margin: 58px auto 0;
  text-align: center;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 58px 40px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.under-construction:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.construction-icon {
  width: 66px;
  height: 66px;
  color: var(--accent);
  margin: 0 auto 22px;
  padding: 15px;
  border-radius: 50%;
  background: rgba(201,133,43,0.1);
  animation: floaty 4.5s var(--ease-soft) infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
.construction-icon svg { width: 100%; height: 100%; fill: none; }
.under-construction p { margin-bottom: 0; }

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  transition: background 0.45s var(--ease), transform 0.45s var(--ease-out);
}
.contact-item:hover { background: #fff; transform: translateX(5px); box-shadow: var(--shadow-sm); }
.contact-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--accent);
}
.contact-item a { width: fit-content; transition: color 0.3s var(--ease); }
.contact-item a:hover { color: var(--accent); }

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--navy-dark);
}
.form-row input, .form-row textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg-tint);
  resize: vertical;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(201,133,43,0.12);
}
/* Bal küpü alanı - ekran okuyucudan ve gözden gizli, ama bot doldurur */
.hp-field {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin: 16px 0 0;
  font-size: 0.88rem;
  color: var(--accent);
  min-height: 1.2em;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.form-note.show { opacity: 1; transform: none; }
.form-note.success { color: #1a8a5a; }
.form-note.error   { color: #c0392b; }

/* Gönderim sırasında buton durumu */
.btn.is-sending {
  pointer-events: none;
  opacity: 0.75;
}
.btn.is-sending::after {
  content: "";
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Footer ---- */
.site-footer {
  position: relative;
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 52px 0 46px;
  border-top-left-radius: 48px;
  border-top-right-radius: 48px;
  margin-top: -1px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-size: 0.85rem;
}
.footer-inner .logo-mark { color: #fff; }
.footer-inner .logo-text { color: rgba(255,255,255,0.5); margin-left: 6px; }
.footer-inner p { margin: 0; color: rgba(255,255,255,0.55); }
.footer-domains { font-size: 0.8rem; }

/* ---- WhatsApp FAB ---- */
.whatsapp-fab {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.42);
  z-index: 90;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease);
}
.whatsapp-fab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.45;
  animation: pulse 2.8s var(--ease-soft) infinite;
  z-index: -1;
}
@keyframes pulse {
  0%   { transform: scale(1); opacity: 0.45; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}
.whatsapp-fab:hover { transform: scale(1.12); box-shadow: 0 16px 40px rgba(37,211,102,0.58); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-media { max-width: 430px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .top-bar-social { display: none; }
  .section { padding: 84px 0; }
  .wave svg { height: 58px; }
  .hero { border-bottom-left-radius: 34px; border-bottom-right-radius: 34px; }
  .site-footer { border-top-left-radius: 34px; border-top-right-radius: 34px; }
}

@media (max-width: 720px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 12px;
    right: 12px;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    gap: 6px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px) scale(0.98);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease-out), visibility 0.4s;
  }
  .nav.open { opacity: 1; visibility: visible; transform: none; }
  .nav-toggle { display: flex; }
  .header-actions { gap: 10px; }
  .services-grid, .process-grid { grid-template-columns: 1fr; }
  .hero-inner { padding: 96px 24px 96px; }
  .hero-stats { gap: 12px; }
  .hero-stats div { padding: 14px 20px; }
  .scroll-hint { display: none; }
  .contact-form { padding: 28px 24px; }
  .top-bar-contact { gap: 14px; font-size: 0.76rem; }
  .blob { display: none; }
}

@media (max-width: 480px) {
  .top-bar-item span { display: none; }
  .btn-sm { padding: 10px 16px; font-size: 0.82rem; }
  .under-construction { padding: 44px 26px; }
}
