:root {
  --bg: #f0ebe3;
  --fg: #1a1a1a;
  --muted: #6f6a64;
  --border: #dcd5cc;
  --accent: #e85d3a;
  --accent-2: #f57a3b;
  --dark: #101010;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--fg);
  background: var(--bg);
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.5;
}

img,
video,
svg {
  max-width: 100%;
}

h1,
h2,
h3,
.hero-heading,
.brand strong,
.brand-line,
.stats-grid h3,
blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 112px 0;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(240, 235, 227, 0.75);
  border-bottom: 1px solid rgba(220, 213, 204, 0.85);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(240, 235, 227, 0.94);
  border-color: rgba(220, 213, 204, 0.95);
  box-shadow: 0 14px 36px rgba(16, 16, 16, 0.08);
}

.nav-wrap {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 0;
  object-fit: contain;
  border: 0;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}

.brand strong {
  font-size: 20px;
  overflow-wrap: anywhere;
}

.brand em {
  margin-top: 3px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--muted);
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 36px;
  font-size: 14px;
}

.nav-links a {
  color: rgba(26, 26, 26, 0.75);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-instagram-item,
.nav-instagram {
  display: none;
}

.nav-instagram {
  align-items: center;
  gap: 8px;
}

.nav-instagram svg,
.social-icon svg,
.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.header-contact-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-sm {
  padding: 10px 14px;
  font-size: 12px;
  line-height: 1.1;
}

.header-contact-buttons .btn-dark {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

.header-contact-buttons .btn-dark:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.social-icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--fg);
  background: var(--fg);
  color: var(--bg);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.instagram-icon {
  border-radius: 50%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.35s ease;
}

.btn-dark {
  background: var(--fg);
  color: var(--bg);
}

.btn-dark:hover {
  background: var(--accent);
  color: #fff;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}

.btn-accent:hover {
  background: #fff;
  color: var(--fg);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: var(--fg);
}

.icon-arrow {
  display: inline-block;
  font-weight: 600;
  line-height: 1;
  transform: translateY(-0.5px);
}

.menu-toggle,
.hamburger {
  display: none;
}

.hero {
  min-height: 100vh;
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: heroCycle 18s linear infinite;
}

.slide-1 {
  animation-delay: 0s;
}

.slide-2 {
  animation-delay: 6s;
}

.slide-3 {
  animation-delay: 12s;
}

.hero-slide img,
.hero-slide video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroDrift 18s ease-in-out infinite;
}

.hero-content {
  position: absolute;
  z-index: 3;
  top: 140px;
  left: 0;
  right: 0;
  padding: 0;
  width: auto;
  max-width: none;
  background: transparent;
  border: 0;
  backdrop-filter: none;
}

.hero-content .eyebrow {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-content h1,
.hero-heading {
  margin-top: 24px;
  font-size: clamp(52px, 9vw, 134px);
  max-width: 900px;
  color: #fff;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.hero-content h1 span,
.hero-heading span {
  color: var(--accent);
  font-style: italic;
}

.hero-content > p:last-child {
  margin-top: 18px;
  max-width: 560px;
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.58);
  font-weight: 400;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 12, 0.15);
  z-index: 1;
}

.hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(10, 10, 10, 0.36) 70%, rgba(9, 9, 9, 0.72) 100%);
  z-index: 2;
}

.hero-actions {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 132px;
  z-index: 4;
  display: flex;
  gap: 16px;
  align-items: center;
}

.hero-indicators {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 84px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-indicators .bar {
  width: 64px;
  height: 2px;
  display: block;
  background: rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.hero-indicators .bar::after {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  background: var(--accent);
}

.hero-indicators .b1::after {
  animation: barFill 18s linear infinite;
}

.hero-indicators .b2::after {
  animation: barFill 18s linear infinite 6s;
}

.hero-indicators .b3::after {
  animation: barFill 18s linear infinite 12s;
}

.hero-indicators small {
  margin-left: 10px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.62);
}

.ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(13, 13, 13, 0.5);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.ticker-track {
  white-space: nowrap;
  display: inline-flex;
  gap: 24px;
  padding: 16px 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.72);
  animation: marquee 30s linear infinite;
}

.ticker-track span:nth-child(even) {
  color: var(--accent);
}

.section-title-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  margin-bottom: 80px;
  align-items: end;
}

.section-title-grid p {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted);
}

.section-title-grid h2 {
  font-size: clamp(42px, 6vw, 96px);
}

.section-title-grid h2 span {
  color: var(--accent);
  font-style: italic;
}

.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 90px;
  align-items: center;
  transition: transform 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card.reverse .service-image {
  order: 2;
}

.service-image {
  position: relative;
  overflow: hidden;
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.22) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.85s ease;
}

.service-card:hover .service-image::after {
  transform: translateX(120%);
}

.service-image img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 1.1s ease;
}

.service-image:hover img {
  transform: scale(1.05);
}

.tag {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 9px 14px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(240, 235, 227, 0.94);
}

.service-body .label,
.contact .label {
  margin: 0 0 18px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
}

.service-body h3 {
  font-size: clamp(38px, 4vw, 62px);
  margin-bottom: 16px;
}

.service-body p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 20px;
  max-width: 560px;
}

.service-body ul {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}

.service-body li {
  border-top: 1px solid var(--border);
  padding-top: 10px;
  font-size: 15px;
}

.service-body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-bottom: 1px solid var(--fg);
  padding-bottom: 4px;
}

.process {
  background: var(--fg);
  color: var(--bg);
}

.process .section-title-grid p {
  color: rgba(255, 255, 255, 0.55);
}

.process-grid {
  margin: 0;
  padding: 1px;
  list-style: none;
  background: rgba(255, 255, 255, 0.15);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
}

.process-grid li {
  background: var(--fg);
  padding: 40px;
  transition: background 0.35s ease, transform 0.35s ease;
}

.process-grid li:hover {
  background: var(--accent);
  transform: translateY(-4px);
}

.process-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 56px;
  display: block;
  margin-bottom: 38px;
}

.process-grid h3 {
  font-size: 34px;
  margin-bottom: 14px;
}

.process-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
}

.stats-grid article {
  background: var(--bg);
  padding: 32px;
  transition: transform 0.35s ease, background 0.35s ease;
}

.stats-grid article:hover {
  background: #fff7ee;
  transform: translateY(-5px);
}

.stats-grid h3 {
  color: var(--accent);
  font-size: clamp(52px, 6vw, 96px);
  margin-bottom: 14px;
}

.stats-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

blockquote {
  margin: 96px auto 0;
  max-width: 920px;
  text-align: center;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.15;
}

blockquote span {
  color: var(--accent);
}

blockquote cite {
  margin-top: 28px;
  display: block;
  font-style: normal;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted);
}

.verified {
  background:
    linear-gradient(135deg, rgba(232, 93, 58, 0.08), transparent 34%),
    linear-gradient(180deg, #fffaf3, var(--bg));
  border-bottom: 1px solid var(--border);
}

.verified-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.verified-card {
  min-height: 340px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.56);
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) 1fr;
  align-items: center;
  gap: 32px;
  padding: 34px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.verified-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 4px solid var(--accent);
  pointer-events: none;
}

.verified-card:hover {
  border-color: var(--accent);
  box-shadow: 0 22px 52px rgba(16, 16, 16, 0.08);
  transform: translateY(-5px);
}

.verified-image {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(220, 213, 204, 0.9);
  padding: 22px;
}

.verified-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.verified-card small {
  display: block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.verified-card h3 {
  max-width: 440px;
  font-size: clamp(36px, 4vw, 58px);
}

.seo-section {
  background: #fffaf3;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.seo-grid article {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.seo-grid article:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.seo-grid h3 {
  margin-bottom: 16px;
  font-size: clamp(30px, 3vw, 44px);
}

.seo-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.faq-grid {
  margin-top: 48px;
  border-top: 1px solid var(--border);
}

.faq-grid details {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}

.faq-grid summary {
  color: var(--fg);
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
}

.faq-grid p {
  max-width: 840px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 22px;
}

.contact h2 {
  font-size: clamp(42px, 5vw, 82px);
}

.contact h2 span {
  color: var(--accent);
  font-style: italic;
}

.contact .lead {
  max-width: 500px;
  margin-top: 22px;
  font-size: 20px;
  color: var(--muted);
}

.contact-card {
  border: 1px solid var(--border);
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.contact-card:hover {
  border-color: var(--accent);
  box-shadow: 0 18px 44px rgba(16, 16, 16, 0.08);
  transform: translateY(-4px);
}

.contact-card small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--muted);
  margin-bottom: 14px;
}

.contact-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 1;
  overflow-wrap: anywhere;
}

.contact-card .email-address {
  font-size: clamp(24px, 2.2vw, 34px);
  white-space: nowrap;
}

.contact-card span {
  margin-top: 20px;
  font-size: 14px;
  color: var(--fg);
  font-weight: 400;
}

.contact-card.full {
  grid-column: 1 / 4;
}

.contact-card.dark {
  background: var(--fg);
  border-color: var(--fg);
  color: var(--bg);
}

.contact-card.dark p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2.6vw, 46px);
  line-height: 1.2;
}

.contact-card.dark span {
  color: var(--accent);
  font-style: italic;
}

.contact-form {
  grid-column: 1 / 4;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: 22px 34px;
  padding: 0 20px 28px;
  border: 1px solid #dfdfdf;
  background: #fff;
  box-shadow: 0 18px 55px rgba(26, 26, 26, 0.08);
}

.form-head {
  grid-column: 1 / 3;
  margin: 0 -20px;
  padding: 14px 20px;
  border-bottom: 1px solid #e7e7e7;
}

.form-head h3 {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-head p {
  min-height: 0;
  margin: 8px 0 0;
  color: #0f8b4c;
  font-size: 13px;
  font-weight: 500;
}

.form-head p.is-error {
  color: var(--accent);
}

.contact-form label,
.requirement-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  color: #555;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.contact-form input:not([type="radio"]):not([type="file"]),
.contact-form select {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 0;
  padding: 10px 12px;
  color: var(--fg);
  background: #f3f3f3;
  font: inherit;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  outline: none;
}

.contact-form input::placeholder {
  color: #8d8d8d;
}

.contact-form input[type="file"] {
  min-height: auto;
  padding: 0;
  color: #666;
  background: transparent;
  font-size: 13px;
}

.contact-form input[type="file"]::file-selector-button {
  margin-right: 8px;
  border: 1px solid #adadad;
  border-radius: 0;
  padding: 5px 9px;
  color: #222;
  background: #f6f6f6;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

.requirement-field {
  align-self: stretch;
  margin: 0;
  padding: 0;
  border: 0;
  min-inline-size: 0;
}

.requirement-field legend {
  margin-bottom: 10px;
  padding: 0;
}

.requirement-options {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 34px;
}

.requirement-options label {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 7px;
  width: auto;
  min-width: 0;
  margin: 0;
  color: #757575;
  font-size: 13px;
  font-weight: 400;
  line-height: 15px;
  cursor: pointer;
}

.contact-form .requirement-options input[type="radio"] {
  flex: 0 0 15px;
  width: 15px;
  min-width: 15px;
  height: 15px;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 1px solid #aeb0b3;
  background: initial;
  box-shadow: none;
  accent-color: var(--accent);
  cursor: pointer;
  appearance: auto;
}

.requirement-options span {
  display: inline-block;
  line-height: 15px;
}

.file-field {
  align-self: start;
}

.contact-form input:not([type="radio"]):not([type="file"]):focus,
.contact-form select:focus {
  box-shadow: inset 0 0 0 2px rgba(232, 93, 58, 0.55), 0 0 0 3px rgba(232, 93, 58, 0.12);
}

.contact-form button {
  width: min(100%, 280px);
  min-height: 56px;
  border: 0;
  padding: 14px 28px;
  background: #c91322;
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.contact-form button:hover {
  background: #a90f1b;
  transform: translateY(-1px);
}

.form-divider {
  grid-column: 1 / 3;
  color: var(--fg);
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}

.callback-field {
  grid-column: 1 / 3;
}

.form-trap {
  position: absolute;
  left: -9999px;
}

.site-footer {
  background: var(--fg);
  color: var(--bg);
  padding: 80px 0 28px;
}

.footer-top {
  padding-bottom: 62px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.brand-line {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 44px;
}

.brand-line span {
  width: 10px;
  height: 10px;
  display: inline-block;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

.footer-top h2 {
  font-size: clamp(42px, 5vw, 78px);
}

.footer-top h2 span {
  color: var(--accent);
  font-style: italic;
}

.footer-top a {
  color: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 12px 20px;
}

.footer-top a:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.footer-cols {
  padding-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.footer-cols small {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.footer-cols p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.83);
  overflow-wrap: anywhere;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.83);
  overflow-wrap: anywhere;
  transition: color 0.25s ease;
}

.footer-social:hover {
  color: var(--accent);
}

.footer-base {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.52);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 10px;
}

.whatsapp-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  font-family: "Segoe UI", Arial, sans-serif;
}

.whatsapp-float {
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: #25d366;
  box-shadow: 0 18px 42px rgba(16, 16, 16, 0.28);
  cursor: pointer;
  animation: whatsappBounce 2.4s ease-in-out infinite;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  animation-play-state: paused;
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(16, 16, 16, 0.34);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.whatsapp-phone {
  position: absolute;
  right: 0;
  bottom: 78px;
  width: min(360px, calc(100vw - 36px));
  overflow: hidden;
  border-radius: 28px;
  background: #efe7dc;
  border: 8px solid #111;
  box-shadow: 0 28px 70px rgba(16, 16, 16, 0.34);
  transform: translateY(14px) scale(0.96);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.whatsapp-widget.is-open .whatsapp-phone {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.whatsapp-phone-top {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: #fff;
  background: #075e54;
}

.whatsapp-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--accent);
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.whatsapp-phone-top strong,
.whatsapp-phone-top span {
  display: block;
}

.whatsapp-phone-top strong {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

.whatsapp-phone-top span {
  margin-top: 3px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.whatsapp-close {
  width: 34px;
  height: 34px;
  margin-left: auto;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.whatsapp-chat {
  min-height: 260px;
  padding: 18px;
  background:
    linear-gradient(rgba(239, 231, 220, 0.9), rgba(239, 231, 220, 0.9)),
    radial-gradient(circle at 20% 20%, rgba(7, 94, 84, 0.16) 0 2px, transparent 2px);
  background-size: auto, 28px 28px;
}

.whatsapp-bubble {
  max-width: 84%;
  padding: 12px 14px;
  border-radius: 4px 16px 16px;
  background: #fff;
  color: #1f2c34;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  box-shadow: 0 1px 2px rgba(16, 16, 16, 0.12);
}

.whatsapp-compose {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: end;
  padding: 12px;
  background: #f7f3ec;
  border-top: 1px solid rgba(16, 16, 16, 0.08);
}

.whatsapp-compose textarea {
  width: 100%;
  min-height: 48px;
  max-height: 120px;
  resize: vertical;
  border: 1px solid rgba(16, 16, 16, 0.1);
  border-radius: 18px;
  padding: 12px 14px;
  color: #1f2c34;
  background: #fff;
  font: inherit;
  font-size: 14px;
  outline: none;
}

.whatsapp-compose textarea:focus {
  border-color: #25d366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.18);
}

.whatsapp-compose button {
  min-width: 70px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  background: #25d366;
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.reveal:nth-child(4) {
  transition-delay: 0.24s;
}

@keyframes heroCycle {
  0%,
  30% {
    opacity: 1;
  }
  33.33%,
  100% {
    opacity: 0;
  }
}

@keyframes heroDrift {
  0%,
  100% {
    transform: scale(1.08) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.14) translate3d(-1.4%, 1%, 0);
  }
}

@keyframes barFill {
  0% {
    left: -100%;
  }
  32% {
    left: 0;
  }
  33.33%,
  100% {
    left: 100%;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.6;
  }
}

@keyframes whatsappBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  12% {
    transform: translateY(-9px);
  }
  24% {
    transform: translateY(0);
  }
  34% {
    transform: translateY(-5px);
  }
  44% {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .whatsapp-float {
    animation: none;
  }
}

@media (max-width: 1100px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    margin-left: auto;
  }

  .hamburger span {
    width: 24px;
    height: 1px;
    background: var(--fg);
    transition: all 0.25s ease;
  }

  .menu-toggle:checked + .hamburger span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle:checked + .hamburger span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .menu-toggle:checked ~ .nav-links {
    display: flex;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 16px;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
  }

  .menu-toggle:checked ~ .nav-links .nav-instagram-item,
  .menu-toggle:checked ~ .nav-links .nav-instagram {
    display: inline-flex;
  }

  .menu-toggle:checked ~ .nav-cta {
    display: none;
  }

  .section-title-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-card,
  .process-grid,
  .stats-grid,
  .verified-grid,
  .seo-grid,
  .contact-grid,
  .footer-cols {
    grid-template-columns: 1fr;
  }

  .service-card.reverse .service-image {
    order: 0;
  }

  .service-image img {
    min-height: 360px;
  }

  .service-body ul {
    grid-template-columns: 1fr;
  }

  .contact-card.full {
    grid-column: auto;
  }

  .contact-form,
  .form-head,
  .form-divider,
  .callback-field {
    grid-column: auto;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .footer-top,
  .footer-base {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .container {
    padding: 0 18px;
  }

  .section {
    padding: 72px 0;
  }

  .nav-wrap {
    height: 68px;
    gap: 12px;
  }

  .brand {
    gap: 9px;
    max-width: calc(100vw - 78px);
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 17px;
  }

  .menu-toggle:checked ~ .nav-links {
    top: 68px;
    padding: 18px;
  }

  .hero {
    min-height: 680px;
    min-height: 100svh;
  }

  .hero-content {
    top: 108px;
    padding: 0;
    max-width: none;
  }

  .hero-content h1,
  .hero-heading {
    margin-top: 0;
    font-size: clamp(40px, 13vw, 58px);
    max-width: 92vw;
    line-height: 1.02;
  }

  .hero-content > p:last-child {
    max-width: 90vw;
    font-size: 14px;
    line-height: 1.4;
  }

  .hero-actions {
    bottom: 162px;
    flex-wrap: wrap;
  }

  .hero-indicators {
    bottom: 106px;
  }

  .hero-indicators .bar {
    width: 46px;
  }

  .ticker-track {
    gap: 16px;
    padding: 13px 0;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .section-title-grid {
    margin-bottom: 46px;
  }

  .section-title-grid h2,
  .contact h2,
  .footer-top h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .service-card {
    gap: 26px;
    margin-bottom: 64px;
  }

  .service-image img {
    min-height: 280px;
    aspect-ratio: 4 / 3;
  }

  .service-body h3 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .service-body p,
  .seo-grid p,
  .contact .lead {
    font-size: 17px;
  }

  .service-body a {
    align-items: flex-start;
    font-size: 12px;
    letter-spacing: 0.14em;
  }

  .process-grid li,
  .stats-grid article,
  .contact-card {
    padding: 24px;
  }

  .process-grid strong {
    margin-bottom: 24px;
    font-size: 44px;
  }

  .process-grid h3 {
    font-size: 30px;
  }

  .stats-grid h3 {
    font-size: clamp(48px, 15vw, 66px);
  }

  .verified-card {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px;
  }

  .verified-image {
    width: min(100%, 260px);
  }

  .verified-card h3 {
    font-size: clamp(31px, 9vw, 42px);
  }

  .stats-grid p,
  blockquote cite,
  .footer-base {
    letter-spacing: 0.14em;
  }

  blockquote {
    margin-top: 64px;
    font-size: clamp(30px, 9vw, 42px);
    text-align: left;
  }

  .contact-grid {
    gap: 16px;
  }

  .seo-grid {
    gap: 28px;
  }

  .faq-grid {
    margin-top: 38px;
  }

  .contact-card strong {
    font-size: clamp(27px, 8vw, 34px);
    line-height: 1.05;
  }

  .contact-card .email-address {
    font-size: clamp(18px, 5.4vw, 24px);
    white-space: normal;
  }

  .contact-card.dark p {
    font-size: clamp(27px, 8vw, 36px);
  }

  .contact-form {
    gap: 14px;
    padding: 0 16px 22px;
  }

  .form-head {
    margin: 0 -16px;
    padding: 13px 16px;
  }

  .form-head h3 {
    font-size: 16px;
  }

  .contact-form input:not([type="radio"]):not([type="file"]),
  .contact-form select {
    font-size: 16px;
  }

  .contact-form button {
    width: 100%;
  }

  .requirement-options {
    gap: 12px 18px;
  }

  .site-footer {
    padding-top: 64px;
  }

  .footer-top {
    padding-bottom: 42px;
  }

  .brand-line {
    font-size: clamp(31px, 9vw, 40px);
    line-height: 1.1;
  }

  .footer-cols {
    padding-top: 32px;
  }

  .whatsapp-widget {
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
  }

  .whatsapp-phone {
    right: -6px;
    bottom: 70px;
    border-width: 6px;
    border-radius: 24px;
  }

  .whatsapp-chat {
    min-height: 220px;
  }
}

@media (max-width: 420px) {
  .container {
    padding: 0 14px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 15px;
  }

  .hero-content h1,
  .hero-heading {
    font-size: clamp(36px, 12vw, 46px);
  }

  .hero-content > p:last-child {
    max-width: 94vw;
  }

  .section-title-grid h2,
  .contact h2,
  .footer-top h2 {
    font-size: 34px;
  }

  .contact-card,
  .process-grid li,
  .stats-grid article {
    padding: 20px;
  }

  .contact-form {
    padding: 0 14px 20px;
  }

  .form-head {
    margin: 0 -14px;
  }

  .contact-card strong {
    font-size: 26px;
  }

  .footer-base {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .whatsapp-widget {
    right: 12px;
  }

  .whatsapp-phone {
    right: -6px;
    width: calc(100vw - 24px);
  }

  .whatsapp-compose {
    grid-template-columns: 1fr;
  }

  .whatsapp-compose button {
    width: 100%;
  }
}

/* Keep radio options from inheriting text-input sizing. */
.contact-form fieldset.requirement-field {
  border: 0 !important;
  padding: 0 !important;
}

.contact-form fieldset.requirement-field .requirement-options {
  display: flex !important;
  flex-flow: row wrap !important;
  align-items: center !important;
  gap: 12px 34px !important;
}

.contact-form fieldset.requirement-field .requirement-options label {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 7px !important;
  width: auto !important;
  min-height: 15px !important;
  margin: 0 !important;
  padding: 0 !important;
  letter-spacing: 0 !important;
  line-height: 15px !important;
  text-transform: none !important;
}

.contact-form fieldset.requirement-field .requirement-options input[type="radio"] {
  display: inline-block !important;
  flex: 0 0 15px !important;
  width: 15px !important;
  min-width: 15px !important;
  height: 15px !important;
  min-height: 15px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: initial !important;
  background: initial !important;
  box-shadow: none !important;
  accent-color: var(--accent);
}

.contact-form fieldset.requirement-field .requirement-options input[type="radio"]:focus {
  box-shadow: none !important;
  outline: 2px solid rgba(232, 93, 58, 0.35);
  outline-offset: 2px;
}
