:root {
  --navy: #12344a;
  --navy-deep: #0a2638;
  --teal: #087f83;
  --teal-dark: #05666a;
  --teal-soft: #e9f6f5;
  --gold: #c99a3d;
  --gold-soft: #fbf4e5;
  --ink: #1c2933;
  --muted: #60717d;
  --line: #dce5e8;
  --surface: #f5f8f9;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(18, 52, 74, 0.1);
  --radius: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--teal-dark);
  text-decoration: none;
}

a:hover {
  color: var(--navy);
}

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

button,
.button {
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.7em;
  color: var(--navy-deep);
  font-weight: 750;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.65rem);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1.25rem;
}

ul,
ol {
  margin: 0;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(220, 229, 232, 0.9);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy-deep);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.brand:hover {
  color: var(--navy-deep);
}

.brand-logo {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  list-style: none;
}

.site-nav a {
  display: block;
  padding: 12px 10px;
  color: var(--navy);
  border-radius: 9px;
  font-size: 0.91rem;
  font-weight: 650;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--teal-dark);
  background: var(--teal-soft);
}

.nav-contact {
  margin-left: 4px;
  color: var(--white) !important;
  background: var(--teal) !important;
}

.nav-contact:hover,
.nav-contact[aria-current="page"] {
  background: var(--teal-dark) !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  color: var(--navy);
  background: var(--surface);
  border-radius: 10px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 6vw, 88px) 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(201, 154, 61, 0.15), transparent 23%),
    radial-gradient(circle at 73% 73%, rgba(8, 127, 131, 0.1), transparent 30%),
    linear-gradient(180deg, #f8fbfb 0%, #fff 100%);
}

.hero::after {
  position: absolute;
  right: -110px;
  bottom: -190px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(8, 127, 131, 0.15);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 55px rgba(8, 127, 131, 0.03), 0 0 0 110px rgba(201, 154, 61, 0.025);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: clamp(48px, 8vw, 100px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  background: var(--gold);
  content: "";
}

.hero h1 span {
  color: var(--teal);
}

.hero-copy {
  max-width: 710px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 21px;
  color: var(--white);
  background: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 10px;
  font-weight: 750;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  color: var(--white);
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  box-shadow: 0 10px 26px rgba(8, 127, 131, 0.2);
  transform: translateY(-2px);
}

.button-outline {
  color: var(--navy);
  background: transparent;
  border-color: var(--line);
}

.button-outline:hover {
  color: var(--teal-dark);
  background: var(--white);
  border-color: var(--teal);
  box-shadow: none;
}

.button-gold {
  color: var(--navy-deep);
  background: var(--gold);
  border-color: var(--gold);
}

.button-gold:hover {
  color: var(--navy-deep);
  background: #dbad51;
  border-color: #dbad51;
}

.hero-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 7px solid var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-photo {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(7, 31, 45, 0.82) 100%);
  content: "";
}

.hero-badge {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px;
  color: var(--white);
}

.hero-badge strong {
  display: block;
  font-size: 1.25rem;
}

.hero-badge span {
  color: #d9e7ea;
  font-size: 0.9rem;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}

.trust-inner {
  display: grid;
  padding: 26px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 35px rgba(18, 52, 74, 0.08);
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding: 3px 22px;
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-item strong {
  display: block;
  color: var(--navy-deep);
  font-size: 1rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.87rem;
}

.section {
  padding: clamp(52px, 5.5vw, 76px) 0;
}

.section-soft {
  background: var(--surface);
}

.section-dark {
  color: #dbe7eb;
  background: var(--navy-deep);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark .eyebrow {
  color: #75d0cd;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading.centered .eyebrow::after {
  width: 24px;
  height: 2px;
  background: var(--gold);
  content: "";
}

.section-heading p,
.lead {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-dark .section-heading p,
.section-dark .lead {
  color: #aec0c9;
}

.cards-3,
.cards-2,
.cards-4 {
  display: grid;
  gap: 22px;
}

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

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

.cards-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  padding: clamp(24px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.card:hover {
  border-color: rgba(8, 127, 131, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

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

.card-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border-radius: 13px;
  font-size: 1.2rem;
  font-weight: 800;
}

.card-icon.gold {
  color: #8a611b;
  background: var(--gold-soft);
}

.card p,
.card li {
  color: var(--muted);
}

/* Cards remain light even when placed inside a dark section. */
.section-dark .card h3 {
  color: var(--navy-deep);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--teal-dark);
  font-weight: 750;
}

.link-arrow::after {
  content: "→";
  transition: transform 0.2s ease;
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

.split {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 95px);
}

.image-frame {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.image-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, transparent 60%, rgba(8, 42, 58, 0.22));
  content: "";
}

.image-frame img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame.team img {
  object-position: center center;
}

.image-frame.retail img {
  object-position: 58% center;
}

.image-frame.logistics img {
  object-position: 62% center;
}

.image-frame.portfolio img {
  object-position: center center;
}

.photo-caption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  padding: 9px 13px;
  color: var(--white);
  background: rgba(8, 31, 46, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
}

.check-list li::before {
  position: absolute;
  top: 0.18em;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border-radius: 50%;
  content: "✓";
  font-size: 0.75rem;
  font-weight: 900;
}

.process {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
}

.process-step {
  position: relative;
  padding: 0 28px;
}

.process-step:first-child {
  padding-left: 0;
}

.process-step:last-child {
  padding-right: 0;
}

.process-step:not(:last-child)::after {
  position: absolute;
  top: 25px;
  right: -8px;
  width: 16px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.step-number {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  place-items: center;
  color: var(--navy-deep);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 850;
}

.process-step p {
  color: #aec0c9;
  font-size: 0.93rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 5vw, 72px) 0;
  background:
    radial-gradient(circle at 82% 30%, rgba(201, 154, 61, 0.14), transparent 28%),
    linear-gradient(135deg, #f4f9f9, #fff);
  border-bottom: 1px solid var(--line);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.page-hero h1 {
  font-size: clamp(2.35rem, 5vw, 4rem);
}

.page-hero .hero-copy {
  margin-bottom: 0;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 650;
}

.breadcrumbs a {
  color: var(--teal-dark);
}

.stat-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.stat {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.stat strong {
  display: block;
  margin-bottom: 5px;
  color: var(--teal-dark);
  font-size: 1.6rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.9rem;
}

.industry-card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 285px;
  justify-content: flex-end;
  flex-direction: column;
  padding: 30px;
  background: var(--navy-deep);
  border-color: transparent;
  isolation: isolate;
}

.industry-card::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: var(--industry-image);
  background-position: var(--industry-position, center);
  background-size: cover;
  content: "";
  opacity: 0.68;
  transition: transform 0.35s ease;
}

.industry-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 37, 50, 0.18) 0%, rgba(7, 37, 50, 0.68) 52%, rgba(7, 31, 45, 0.96) 100%);
  content: "";
}

.industry-card h3,
.industry-card p {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.industry-card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.industry-card p {
  font-weight: 550;
  line-height: 1.6;
  opacity: 0.92;
}

.industry-card:hover {
  border-color: transparent;
}

.industry-card:hover::before {
  transform: scale(1.04);
}

.industry-food { --industry-image: url("../images/photography/industry-food-snacks.jpg"); --industry-position: center; }
.industry-beverage { --industry-image: url("../images/photography/hero-bangkok-fmcg.jpg"); --industry-position: 76% 58%; }
.industry-wellness { --industry-image: url("../images/photography/industry-health-wellness.jpg"); --industry-position: center; }
.industry-beauty { --industry-image: url("../images/photography/industry-beauty-personal-care.jpg"); --industry-position: center; }
.industry-household { --industry-image: url("../images/photography/industry-household.jpg"); --industry-position: center; }
.industry-specialty { --industry-image: url("../images/photography/thailand-retail.jpg"); --industry-position: 35% 50%; }

.service-detail {
  display: grid;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 70px 1fr;
  gap: 24px;
}

.service-detail:first-child {
  padding-top: 0;
}

.service-detail:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.service-detail .card-icon {
  margin: 0;
}

.service-detail p {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--muted);
}

.timeline {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
}

.timeline::before {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 25px;
  width: 2px;
  background: var(--line);
  content: "";
}

.timeline-item {
  position: relative;
  padding: 0 0 42px 82px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-number {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border: 5px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
  font-weight: 800;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
}

.cta {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 6vw, 62px);
  color: #dce9ed;
  background: linear-gradient(130deg, var(--navy-deep), #154f5c);
  border-radius: 24px;
}

.cta::after {
  position: absolute;
  top: -70px;
  right: -50px;
  width: 230px;
  height: 230px;
  border: 45px solid rgba(201, 154, 61, 0.12);
  border-radius: 50%;
  content: "";
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.cta h2 {
  max-width: 650px;
  margin-bottom: 12px;
  color: var(--white);
}

.cta p {
  max-width: 650px;
  margin: 0;
}

.contact-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(36px, 7vw, 80px);
}

.contact-details {
  display: grid;
  gap: 15px;
  margin-top: 30px;
}

.contact-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
}

.contact-item .card-icon {
  width: 46px;
  height: 46px;
  margin: 0;
  font-size: 1rem;
}

.contact-item strong {
  display: block;
  color: var(--navy-deep);
}

.contact-item span,
.contact-item a {
  color: var(--muted);
}

.contact-form {
  padding: clamp(26px, 5vw, 42px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px;
}

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--navy-deep);
  font-size: 0.87rem;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cbd8dc;
  border-radius: 9px;
  outline: none;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(8, 127, 131, 0.12);
}

.form-note {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.consent-field {
  display: grid;
  align-items: start;
  grid-template-columns: 20px 1fr;
  gap: 10px;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--teal);
}

.consent-field label {
  color: var(--muted);
  font-size: 0.84rem;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  margin-top: 2.1rem;
  font-size: 1.55rem;
}

.legal-content h3 {
  margin-top: 1.5rem;
}

.legal-content li,
.legal-content p {
  color: var(--muted);
}

.legal-content ul {
  margin-bottom: 1.4rem;
}

.success-panel {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(36px, 7vw, 70px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  text-align: center;
}

.success-icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 24px;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 800;
}

.site-footer {
  padding-top: 56px;
  color: #b9c8cf;
  background: #081f2e;
}

.footer-grid {
  display: grid;
  padding-bottom: 50px;
  grid-template-columns: 1.5fr 0.75fr 0.75fr 1.25fr;
  gap: 42px;
}

.site-footer .brand {
  margin-bottom: 20px;
  color: var(--white);
}

.site-footer .brand-logo {
  width: 132px;
  height: auto;
}

.footer-about {
  max-width: 340px;
  font-size: 0.91rem;
}

.footer-title {
  margin: 7px 0 20px;
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.site-footer a {
  color: #b9c8cf;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-contact li {
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
}

.whatsapp-button {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: #25d366;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(12, 65, 36, 0.25);
  transition: transform 0.2s ease;
}

.whatsapp-button:hover {
  color: var(--white);
  transform: translateY(-3px) scale(1.03);
}

.whatsapp-button svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

@media (max-width: 1020px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    visibility: hidden;
    height: calc(100vh - 94px);
    height: calc(100dvh - 94px);
    overflow-y: auto;
    padding: 18px 20px 35px;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 22px 45px rgba(8, 31, 46, 0.14);
    opacity: 0;
    transform: translateY(-10px);
    -webkit-overflow-scrolling: touch;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav ul {
    display: grid;
    gap: 4px;
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .site-nav a {
    padding: 13px 15px;
    font-size: 1rem;
  }

  .nav-contact {
    margin: 8px 0 0;
    text-align: center;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.75fr;
    gap: 40px;
  }

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

  .footer-grid {
    grid-template-columns: 1.35fr 0.65fr 0.65fr;
  }

  .footer-grid > :last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 350px;
  }

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

  .trust-item {
    padding: 15px 20px;
  }

  .trust-item:first-child {
    padding-left: 20px;
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .process {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 0;
  }

  .process-step:nth-child(2)::after {
    display: none;
  }

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

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .header-inner {
    min-height: 82px;
  }

  .site-header .brand-logo {
    width: 70px;
    height: 70px;
  }

  .site-nav {
    height: calc(100vh - 82px);
    height: calc(100dvh - 82px);
  }

  .hero {
    padding-top: 60px;
  }

  .hero-grid {
    gap: 45px;
  }

  .hero-visual {
    min-height: 300px;
  }

  .hero-badge {
    padding: 22px;
  }

  .trust-strip {
    margin-top: 0;
    padding-top: 20px;
  }

  .trust-inner {
    padding: 10px;
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:first-child {
    padding: 15px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .cards-2,
  .cards-3,
  .cards-4,
  .stat-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .process-step,
  .process-step:first-child,
  .process-step:last-child {
    padding: 0;
  }

  .process-step::after {
    display: none;
  }

  .service-detail {
    grid-template-columns: 52px 1fr;
    gap: 17px;
  }

  .service-detail .card-icon {
    width: 48px;
    height: 48px;
  }

  .timeline-item {
    padding-left: 72px;
  }

  .cta {
    border-radius: 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-grid > :last-child {
    grid-column: auto;
  }

  .footer-bottom {
    padding: 20px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp-button {
    right: 15px;
    bottom: 15px;
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
