/* ==========================================================
   TRAKYA NAKLİYE
   Production UI System v2.0
   ========================================================== */


/* ==========================================================
   DESIGN TOKENS
   ========================================================== */

:root {
  --font-sans:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;

  --ink-950: #0b1117;
  --ink-900: #101820;
  --ink-850: #16212b;
  --ink-800: #1c2934;
  --ink-700: #31404c;

  --slate-600: #52606d;
  --slate-500: #65727e;
  --slate-400: #8a96a1;
  --slate-300: #b7c0c8;
  --slate-200: #d9dfe4;
  --slate-150: #e6eaed;
  --slate-100: #f0f3f5;
  --slate-50: #f7f8f9;

  --white: #ffffff;

  --accent-700: #c84b00;
  --accent-600: #e45a00;
  --accent-500: #f56a0a;
  --accent-100: #fff0e5;

  --whatsapp: #159447;
  --whatsapp-dark: #10753a;

  --danger: #b42318;
  --success: #177245;

  --page-width: 1200px;
  --page-padding: clamp(20px, 4vw, 40px);

  --header-height: 82px;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm:
    0 1px 2px rgba(11, 17, 23, 0.04),
    0 8px 24px rgba(11, 17, 23, 0.06);

  --shadow-md:
    0 12px 30px rgba(11, 17, 23, 0.08),
    0 2px 6px rgba(11, 17, 23, 0.05);

  --shadow-lg:
    0 30px 80px rgba(5, 12, 18, 0.18);

  --transition-fast: 160ms ease;
  --transition-base: 240ms ease;
}


/* ==========================================================
   RESET / BASE
   ========================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fafbfc 55%,
      #ffffff 100%
    );

  color: var(--ink-900);

  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
button,
input,
textarea {
  font-family: var(--font-sans);
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

::selection {
  background: var(--accent-500);
  color: var(--white);
}

.container {
  width: min(
    calc(100% - (var(--page-padding) * 2)),
    var(--page-width)
  );
  margin-inline: auto;
}

.section {
  padding-block: clamp(74px, 9vw, 126px);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;

  padding: 12px 18px;

  background: var(--white);
  color: var(--ink-900);

  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);

  transform: translateY(-160%);
  transition: transform var(--transition-fast);
}

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


/* ==========================================================
   ACCESSIBILITY
   ========================================================== */

:focus-visible {
  outline: 3px solid rgba(245, 106, 10, 0.52);
  outline-offset: 4px;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible),
input:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) {
  outline: none;
}


/* ==========================================================
   HEADER
   ========================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  height: var(--header-height);

  background: rgba(255, 255, 255, 0.94);

  border-bottom: 1px solid rgba(16, 24, 32, 0.08);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  height: 100%;

  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;

  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 45px;
  height: 45px;

  display: grid;
  place-items: center;

  border-radius: 12px;

  background: var(--ink-900);
  color: var(--white);

  font-weight: 900;
  font-size: 14px;
  letter-spacing: -0.03em;

  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  color: var(--ink-900);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.brand-copy small {
  margin-top: 5px;

  color: var(--slate-500);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav {
  margin-left: auto;

  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 30px);
}

.primary-nav a {
  position: relative;

  color: var(--ink-700);

  font-size: 14px;
  font-weight: 700;

  transition:
    color var(--transition-fast),
    transform var(--transition-fast);
}

.primary-nav a::after {
  content: "";

  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;

  height: 2px;

  background: var(--accent-500);

  transition: right var(--transition-base);
}

.primary-nav a:hover {
  color: var(--ink-950);
}

.primary-nav a:hover::after {
  right: 0;
}

.header-phone {
  min-height: 46px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding: 0 17px;

  border-radius: 12px;

  background: var(--ink-900);
  color: var(--white);

  font-size: 14px;
  font-weight: 800;

  transition:
    transform var(--transition-fast),
    background var(--transition-fast),
    box-shadow var(--transition-fast);
}

.header-phone:hover {
  background: var(--ink-800);

  transform: translateY(-1px);

  box-shadow: var(--shadow-sm);
}

.nav-toggle {
  display: none;

  width: 46px;
  height: 46px;

  padding: 0;

  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;

  border: 1px solid var(--slate-200);
  border-radius: 12px;

  background: var(--white);

  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;

  border-radius: 99px;

  background: var(--ink-900);

  transition:
    transform var(--transition-base),
    opacity var(--transition-fast);
}


/* ==========================================================
   HERO
   ========================================================== */

.hero {
  position: relative;
  isolation: isolate;

  overflow: hidden;

  min-height: 680px;

  background: var(--ink-950);
  color: var(--white);
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -2;

  pointer-events: none;

  background:
    radial-gradient(
      circle at 82% 30%,
      rgba(245, 106, 10, 0.19),
      transparent 29%
    ),
    radial-gradient(
      circle at 28% 130%,
      rgba(255, 255, 255, 0.08),
      transparent 35%
    ),
    linear-gradient(
      122deg,
      #0b1117 0%,
      #101820 47%,
      #17222c 100%
    );
}

.hero::after {
  content: "";

  position: absolute;
  inset: 0;
  z-index: -1;

  opacity: 0.16;

  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    );

  background-size: 64px 64px;

  mask-image:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.7),
      transparent 78%
    );
}

.hero-grid {
  min-height: 680px;

  display: grid;
  grid-template-columns:
    minmax(0, 1.3fr)
    minmax(330px, 0.7fr);

  align-items: center;
  gap: clamp(46px, 7vw, 100px);

  padding-top: clamp(70px, 8vw, 110px);
  padding-bottom: clamp(70px, 8vw, 110px);
}

.hero-content {
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: var(--accent-500);

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";

  width: 28px;
  height: 2px;

  background: currentColor;
}

.hero h1 {
  max-width: 800px;

  margin:
    clamp(22px, 3vw, 32px)
    0
    26px;

  color: var(--white);

  font-size:
    clamp(43px, 6.2vw, 82px);

  line-height: 0.98;

  font-weight: 850;
  letter-spacing: -0.055em;
}

.hero h1 span {
  display: block;

  margin-top: 9px;

  color: var(--accent-500);
}

.hero-lead {
  max-width: 680px;

  margin-bottom: 34px;

  color: rgba(255, 255, 255, 0.7);

  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-bottom: 42px;
}


/* ==========================================================
   BUTTONS
   ========================================================== */

.button {
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 0 22px;

  border: 1px solid transparent;
  border-radius: 12px;

  font-size: 14px;
  font-weight: 850;

  cursor: pointer;

  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent-500);
  color: var(--white);

  box-shadow:
    0 10px 28px rgba(245, 106, 10, 0.25);
}

.button-primary:hover {
  background: var(--accent-600);
}

.button-whatsapp {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);

  border-color: rgba(255, 255, 255, 0.16);
}

.button-whatsapp:hover {
  background: var(--whatsapp);
  border-color: var(--whatsapp);
}

.button-secondary {
  background: var(--ink-900);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--ink-900);
}

.button-outline-light {
  color: var(--white);

  border-color: rgba(255, 255, 255, 0.42);

  background: transparent;
}

.button-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
}


/* ==========================================================
   HERO META
   ========================================================== */

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.hero-meta > div {
  min-width: 145px;

  padding:
    2px
    clamp(18px, 3vw, 32px);

  border-left:
    1px solid rgba(255, 255, 255, 0.15);
}

.hero-meta > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-meta strong,
.hero-meta span {
  display: block;
}

.hero-meta strong {
  margin-bottom: 5px;

  color: rgba(255, 255, 255, 0.45);

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-meta span {
  color: var(--white);

  font-size: 14px;
  font-weight: 750;
}


/* ==========================================================
   HERO PANEL
   ========================================================== */

.hero-panel {
  position: relative;

  padding:
    clamp(30px, 4vw, 42px);

  border:
    1px solid rgba(255, 255, 255, 0.12);

  border-radius: var(--radius-lg);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.04)
    );

  box-shadow: var(--shadow-lg);

  backdrop-filter: blur(10px);
}

.hero-panel::before {
  content: "";

  position: absolute;
  top: 0;
  left: 42px;

  width: 76px;
  height: 4px;

  border-radius: 0 0 4px 4px;

  background: var(--accent-500);
}

.hero-panel-label {
  margin-bottom: 18px;

  color: var(--accent-500);

  font-size: 11px;
  font-weight: 900;

  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-panel h2 {
  margin-bottom: 18px;

  color: var(--white);

  font-size: clamp(25px, 2.5vw, 34px);
  line-height: 1.16;

  letter-spacing: -0.035em;
}

.hero-panel > p {
  margin-bottom: 26px;

  color: rgba(255, 255, 255, 0.64);
}

.check-list {
  margin: 0 0 30px;
  padding: 0;

  list-style: none;
}

.check-list li {
  position: relative;

  padding: 10px 0 10px 30px;

  color: rgba(255, 255, 255, 0.86);

  border-bottom:
    1px solid rgba(255, 255, 255, 0.08);

  font-size: 14px;
  font-weight: 650;
}

.check-list li::before {
  content: "✓";

  position: absolute;
  left: 0;

  color: var(--accent-500);

  font-weight: 900;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: var(--white);

  font-size: 14px;
  font-weight: 800;
}

.text-link span {
  color: var(--accent-500);

  transition: transform var(--transition-fast);
}

.text-link:hover span {
  transform: translateX(5px);
}


/* ==========================================================
   TRUST STRIP
   ========================================================== */

.trust-strip {
  border-bottom: 1px solid var(--slate-150);

  background: var(--white);
}

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

.trust-item {
  min-height: 128px;

  display: flex;
  align-items: center;
  gap: 18px;

  padding: 25px 32px;

  border-left: 1px solid var(--slate-150);
}

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

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

.trust-index {
  color: var(--accent-500);

  font-size: 12px;
  font-weight: 900;
}

.trust-item strong {
  display: block;

  margin-bottom: 3px;

  font-size: 15px;
  font-weight: 800;
}

.trust-item p {
  margin: 0;

  color: var(--slate-500);

  font-size: 13px;
}


/* ==========================================================
   SECTION HEADINGS
   ========================================================== */

.section-heading {
  display: grid;
  grid-template-columns:
    minmax(0, 1.1fr)
    minmax(260px, 0.7fr);

  align-items: end;
  gap: 50px;

  margin-bottom: clamp(44px, 6vw, 72px);
}

.section-heading.compact {
  margin-bottom: 48px;
}

.section-heading h2,
.region-copy h2,
.faq-heading h2,
.contact-copy h2 {
  margin:
    16px
    0
    0;

  color: var(--ink-900);

  font-size:
    clamp(34px, 4.2vw, 56px);

  line-height: 1.05;

  font-weight: 850;
  letter-spacing: -0.05em;
}

.section-heading > p,
.region-copy > p,
.faq-heading > p,
.contact-lead {
  margin-bottom: 0;

  color: var(--slate-600);

  font-size: 16px;
  line-height: 1.75;
}


/* ==========================================================
   SERVICES
   ========================================================== */

.services-section {
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 16px;
}

.service-card {
  position: relative;

  min-height: 390px;

  display: flex;
  flex-direction: column;

  padding: 30px;

  overflow: hidden;

  border: 1px solid var(--slate-150);
  border-radius: var(--radius-md);

  background: var(--white);

  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.service-card:hover {
  transform: translateY(-6px);

  border-color: transparent;

  box-shadow: var(--shadow-md);
}

.service-card-featured {
  background: var(--ink-900);
  border-color: var(--ink-900);
  color: var(--white);
}

.service-number {
  position: absolute;
  top: 24px;
  right: 26px;

  color: var(--slate-400);

  font-size: 11px;
  font-weight: 900;

  letter-spacing: 0.1em;
}

.service-card-featured .service-number {
  color: rgba(255, 255, 255, 0.38);
}

.service-icon {
  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;

  margin-bottom: 48px;

  border-radius: 13px;

  background: var(--accent-100);
  color: var(--accent-600);
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-card-featured .service-icon {
  background: var(--accent-500);
  color: var(--white);
}

.service-card h3 {
  margin-bottom: 14px;

  font-size: 21px;
  line-height: 1.2;

  letter-spacing: -0.025em;
}

.service-card p {
  margin-bottom: 28px;

  color: var(--slate-600);

  font-size: 14px;
  line-height: 1.75;
}

.service-card-featured p {
  color: rgba(255, 255, 255, 0.63);
}

.service-card > a {
  margin-top: auto;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: var(--ink-900);

  font-size: 13px;
  font-weight: 850;
}

.service-card-featured > a {
  color: var(--white);
}

.service-card > a span {
  color: var(--accent-500);

  transition: transform var(--transition-fast);
}

.service-card > a:hover span {
  transform: translateX(5px);
}


/* ==========================================================
   REGION
   ========================================================== */

.region-section {
  background: var(--slate-50);

  border-top: 1px solid var(--slate-150);
  border-bottom: 1px solid var(--slate-150);
}

.region-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.85fr)
    minmax(460px, 1.15fr);

  align-items: start;
  gap: clamp(60px, 9vw, 120px);
}

.region-copy {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.region-copy h2 {
  margin-bottom: 26px;
}

.region-copy p + p {
  margin-top: 16px;
}

.region-copy .button {
  margin-top: 30px;
}

.region-list {
  border-top: 1px solid var(--slate-200);
}

.region-list article {
  min-height: 145px;

  display: grid;
  grid-template-columns: 64px 1fr;

  align-items: center;
  gap: 24px;

  padding: 28px 0;

  border-bottom: 1px solid var(--slate-200);

  transition: padding var(--transition-base);
}

.region-list article:hover {
  padding-left: 12px;
}

.region-list article > span {
  width: 50px;
  height: 50px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--white);
  color: var(--accent-600);

  border: 1px solid var(--slate-200);

  font-size: 12px;
  font-weight: 900;
}

.region-list h3 {
  margin-bottom: 6px;

  font-size: 21px;

  letter-spacing: -0.025em;
}

.region-list p {
  margin: 0;

  color: var(--slate-600);

  font-size: 14px;
}


/* ==========================================================
   WHY US
   ========================================================== */

.why-section {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid var(--slate-200);
}

.why-grid article {
  min-height: 250px;

  padding:
    34px
    clamp(24px, 3vw, 40px);

  border-left: 1px solid var(--slate-200);
}

.why-grid article:first-child {
  padding-left: 0;
  border-left: 0;
}

.why-grid article > span {
  display: inline-block;

  margin-bottom: 44px;

  color: var(--accent-500);

  font-size: 11px;
  font-weight: 900;
}

.why-grid h3 {
  margin-bottom: 13px;

  font-size: 21px;

  letter-spacing: -0.025em;
}

.why-grid p {
  margin-bottom: 0;

  color: var(--slate-600);

  font-size: 14px;
  line-height: 1.75;
}


/* ==========================================================
   PROCESS
   ========================================================== */

.process-section {
  background: var(--ink-950);
  color: var(--white);
}

.process-section .section-kicker {
  color: var(--accent-500);
}

.process-section .section-heading h2 {
  color: var(--white);
}

.process-grid {
  margin: 0;
  padding: 0;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  list-style: none;

  counter-reset: none;
}

.process-grid li {
  position: relative;

  min-height: 260px;

  padding:
    34px
    clamp(25px, 3vw, 42px);

  border-top:
    1px solid rgba(255, 255, 255, 0.13);

  border-left:
    1px solid rgba(255, 255, 255, 0.13);
}

.process-grid li:first-child {
  border-left: 0;
  padding-left: 0;
}

.process-number {
  display: inline-block;

  margin-bottom: 50px;

  color: var(--accent-500);

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 0.1em;
}

.process-grid h3 {
  margin-bottom: 12px;

  color: var(--white);

  font-size: 22px;

  letter-spacing: -0.025em;
}

.process-grid p {
  max-width: 290px;

  margin-bottom: 0;

  color: rgba(255, 255, 255, 0.58);

  font-size: 14px;
  line-height: 1.75;
}


/* ==========================================================
   CTA
   ========================================================== */

.cta-section {
  padding:
    clamp(60px, 8vw, 100px)
    0;

  background: var(--white);
}

.cta-panel {
  position: relative;

  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    auto;

  align-items: center;
  gap: 60px;

  overflow: hidden;

  padding:
    clamp(40px, 6vw, 72px);

  border-radius: var(--radius-lg);

  background:
    radial-gradient(
      circle at 100% 0,
      rgba(245, 106, 10, 0.22),
      transparent 33%
    ),
    var(--ink-900);

  color: var(--white);
}

.cta-panel::after {
  content: "";

  position: absolute;
  right: -75px;
  bottom: -145px;

  width: 320px;
  height: 320px;

  border:
    55px solid rgba(255, 255, 255, 0.035);

  border-radius: 50%;

  pointer-events: none;
}

.cta-panel .section-kicker {
  color: var(--accent-500);
}

.cta-panel h2 {
  max-width: 650px;

  margin: 14px 0 18px;

  font-size:
    clamp(31px, 4vw, 50px);

  line-height: 1.05;

  letter-spacing: -0.045em;
}

.cta-panel p {
  max-width: 580px;

  margin-bottom: 0;

  color: rgba(255, 255, 255, 0.62);
}

.cta-actions {
  position: relative;
  z-index: 1;

  min-width: 220px;

  display: flex;
  flex-direction: column;
  gap: 10px;
}


/* ==========================================================
   FAQ
   ========================================================== */

.faq-section {
  background: var(--slate-50);

  border-top: 1px solid var(--slate-150);
}

.faq-layout {
  display: grid;
  grid-template-columns:
    minmax(300px, 0.7fr)
    minmax(0, 1.3fr);

  align-items: start;
  gap: clamp(60px, 9vw, 120px);
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.faq-heading h2 {
  margin-bottom: 22px;
}

.faq-list {
  border-top: 1px solid var(--slate-200);
}

.faq-list details {
  border-bottom: 1px solid var(--slate-200);
}

.faq-list summary {
  position: relative;

  padding:
    27px
    50px
    27px
    0;

  color: var(--ink-900);

  font-size: 16px;
  font-weight: 800;

  cursor: pointer;

  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";

  position: absolute;
  top: 50%;
  right: 5px;

  width: 30px;
  height: 30px;

  display: grid;
  place-items: center;

  transform: translateY(-50%);

  border-radius: 50%;

  background: var(--white);
  border: 1px solid var(--slate-200);

  color: var(--ink-900);

  font-size: 19px;
  font-weight: 500;

  transition:
    transform var(--transition-base),
    background var(--transition-fast),
    color var(--transition-fast);
}

.faq-list details[open] summary::after {
  transform:
    translateY(-50%)
    rotate(45deg);

  background: var(--ink-900);
  color: var(--white);
}

.faq-answer {
  padding:
    0
    50px
    25px
    0;
}

.faq-answer p {
  margin: 0;

  color: var(--slate-600);

  font-size: 14px;
  line-height: 1.8;
}


/* ==========================================================
   CONTACT
   ========================================================== */

.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns:
    minmax(320px, 0.78fr)
    minmax(450px, 1.22fr);

  align-items: start;
  gap: clamp(60px, 9vw, 120px);
}

.contact-copy h2 {
  margin-bottom: 20px;
}

.contact-lead {
  max-width: 490px;

  margin-bottom: 38px;
}

.contact-person {
  display: flex;
  flex-direction: column;

  padding: 20px 0;

  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.contact-person span,
.contact-location span {
  margin-bottom: 4px;

  color: var(--slate-500);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-person strong {
  font-size: 22px;

  letter-spacing: -0.025em;
}

.contact-options {
  display: grid;
  gap: 10px;

  margin-top: 24px;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 15px;

  padding: 15px;

  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);

  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.contact-option:hover {
  transform: translateX(4px);

  border-color: var(--slate-300);

  box-shadow: var(--shadow-sm);
}

.contact-option-icon {
  width: 44px;
  height: 44px;

  flex: 0 0 auto;

  display: grid;
  place-items: center;

  border-radius: 10px;

  background: var(--ink-900);
  color: var(--white);
}

.contact-option-icon svg {
  width: 21px;
  height: 21px;
}

.contact-option small,
.contact-option strong {
  display: block;
}

.contact-option small {
  margin-bottom: 2px;

  color: var(--slate-500);

  font-size: 11px;
  font-weight: 700;
}

.contact-option strong {
  font-size: 15px;
}

.contact-location {
  margin-top: 30px;

  padding-top: 24px;

  border-top: 1px solid var(--slate-200);
}

.contact-location strong {
  display: block;

  font-size: 18px;
}

.contact-location p {
  margin:
    3px
    0
    0;

  color: var(--slate-500);

  font-size: 13px;
}


/* ==========================================================
   FORM
   ========================================================== */

.contact-form-shell {
  padding:
    clamp(28px, 4vw, 46px);

  border-radius: var(--radius-lg);

  background: var(--slate-50);

  border: 1px solid var(--slate-150);
}

.form-heading {
  margin-bottom: 30px;
}

.form-heading > span {
  color: var(--accent-600);

  font-size: 11px;
  font-weight: 900;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-heading h3 {
  max-width: 540px;

  margin:
    8px
    0
    0;

  font-size:
    clamp(24px, 3vw, 32px);

  line-height: 1.2;

  letter-spacing: -0.035em;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 14px;
}

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

.field label {
  color: var(--ink-800);

  font-size: 12px;
  font-weight: 800;
}

.field label span {
  color: var(--slate-500);

  font-weight: 600;
}

.field input,
.field textarea {
  width: 100%;

  border: 1px solid var(--slate-200);
  border-radius: 10px;

  background: var(--white);
  color: var(--ink-900);

  font-size: 14px;

  outline: none;

  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
}

.field input {
  height: 52px;

  padding: 0 15px;
}

.field textarea {
  min-height: 130px;

  padding: 14px 15px;

  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--slate-400);
}

.field input:hover,
.field textarea:hover {
  border-color: var(--slate-300);
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent-500);

  box-shadow:
    0 0 0 4px rgba(245, 106, 10, 0.1);
}

.field input:invalid:not(:placeholder-shown) {
  border-color: rgba(180, 35, 24, 0.5);
}

.form-honeypot {
  position: absolute !important;

  width: 1px !important;
  height: 1px !important;

  overflow: hidden !important;

  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;

  white-space: nowrap !important;
}

.form-submit {
  width: 100%;

  min-height: 56px;

  margin-top: 3px;

  border: 0;
}

.form-submit:disabled {
  opacity: 0.6;

  cursor: wait;

  transform: none;
}

.form-note {
  margin: 0;

  color: var(--slate-500);

  font-size: 11px;
  line-height: 1.6;
}

.form-status:empty {
  display: none;
}

.form-status {
  padding: 12px 14px;

  border-radius: 9px;

  font-size: 13px;
  font-weight: 700;
}

.form-status.is-success {
  background: rgba(23, 114, 69, 0.09);
  color: var(--success);
}

.form-status.is-error {
  background: rgba(180, 35, 24, 0.08);
  color: var(--danger);
}


/* ==========================================================
   FOOTER
   ========================================================== */

.site-footer {
  background: var(--ink-950);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns:
    minmax(260px, 1.3fr)
    repeat(3, minmax(130px, 0.65fr));

  gap: clamp(40px, 6vw, 80px);

  padding-top:
    clamp(64px, 8vw, 92px);

  padding-bottom:
    clamp(50px, 7vw, 72px);
}

.brand-footer .brand-mark {
  background: var(--accent-500);
}

.brand-footer .brand-copy strong {
  color: var(--white);
}

.brand-footer .brand-copy small {
  color: rgba(255, 255, 255, 0.45);
}

.footer-brand > p {
  max-width: 310px;

  margin:
    24px
    0
    0;

  color: rgba(255, 255, 255, 0.48);

  font-size: 13px;
  line-height: 1.75;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-column > strong {
  margin-bottom: 9px;

  color: rgba(255, 255, 255, 0.95);

  font-size: 12px;
  font-weight: 850;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.5);

  font-size: 13px;

  transition: color var(--transition-fast);
}

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

.footer-bottom {
  min-height: 82px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  border-top:
    1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom p {
  margin: 0;

  color: rgba(255, 255, 255, 0.4);

  font-size: 12px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);

  font-size: 12px;

  transition: color var(--transition-fast);
}

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


/* ==========================================================
   MOBILE CONTACT BAR
   ========================================================== */

.mobile-contact-bar {
  display: none;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1080px) {

  :root {
    --header-height: 74px;
  }

  .primary-nav {
    gap: 17px;
  }

  .primary-nav a {
    font-size: 13px;
  }

  .header-phone span {
    display: none;
  }

  .header-phone {
    width: 46px;
    padding: 0;
  }

  .hero-grid {
    grid-template-columns:
      minmax(0, 1.1fr)
      minmax(300px, 0.8fr);

    gap: 40px;
  }

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

  .service-card {
    min-height: 330px;
  }

  .region-grid {
    gap: 60px;
  }

  .footer-main {
    grid-template-columns:
      minmax(260px, 1fr)
      repeat(3, 0.55fr);

    gap: 36px;
  }

}


/* ==========================================================
   MOBILE NAV / LAYOUT
   ========================================================== */

@media (max-width: 840px) {

  body {
    padding-bottom: 68px;
  }

  .site-header {
    height: var(--header-height);
  }

  .header-inner {
    position: relative;
  }

  .brand-copy small {
    display: none;
  }

  .nav-toggle {
    margin-left: auto;

    display: flex;
  }

  .header-phone {
    display: none;
  }

  .primary-nav {
    position: absolute;

    top: calc(100% + 1px);
    left: calc(var(--page-padding) * -1);
    right: calc(var(--page-padding) * -1);

    z-index: 100;

    display: grid;
    gap: 0;

    padding: 12px var(--page-padding) 18px;

    background: rgba(255, 255, 255, 0.98);

    border-bottom: 1px solid var(--slate-200);

    box-shadow: var(--shadow-md);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-8px);

    transition:
      opacity var(--transition-fast),
      visibility var(--transition-fast),
      transform var(--transition-fast);
  }

  .nav-toggle[aria-expanded="true"] + .primary-nav {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
  }

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

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

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

  .primary-nav a {
    padding: 14px 0;

    border-bottom: 1px solid var(--slate-150);

    font-size: 14px;
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .primary-nav a::after {
    display: none;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;

    padding-top: 72px;
    padding-bottom: 70px;
  }

  .hero-content {
    max-width: none;
  }

  .hero h1 {
    max-width: 650px;

    font-size:
      clamp(42px, 10vw, 68px);
  }

  .hero-panel {
    max-width: 620px;
  }

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

  .trust-item {
    min-height: auto;

    padding: 22px 0;

    border-left: 0;
    border-top: 1px solid var(--slate-150);
  }

  .trust-item:first-child {
    border-top: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;

    gap: 22px;
  }

  .section-heading > p {
    max-width: 600px;
  }

  .region-grid,
  .faq-layout,
  .contact-grid {
    grid-template-columns: 1fr;

    gap: 54px;
  }

  .region-copy,
  .faq-heading {
    position: static;
  }

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

  .why-grid article {
    min-height: auto;

    padding: 30px 0;

    border-left: 0;
    border-top: 1px solid var(--slate-200);
  }

  .why-grid article:first-child {
    border-top: 0;
  }

  .why-grid article > span {
    margin-bottom: 25px;
  }

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

  .process-grid li {
    min-height: auto;

    padding: 34px 0;

    border-left: 0;
  }

  .process-grid li:first-child {
    border-top:
      1px solid rgba(255, 255, 255, 0.13);
  }

  .process-number {
    margin-bottom: 25px;
  }

  .cta-panel {
    grid-template-columns: 1fr;

    gap: 34px;
  }

  .cta-actions {
    width: 100%;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .mobile-contact-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 1200;

    height: calc(68px + env(safe-area-inset-bottom));

    display: grid;
    grid-template-columns: 1fr 1fr;

    padding-bottom: env(safe-area-inset-bottom);

    background: var(--white);

    border-top: 1px solid var(--slate-200);

    box-shadow:
      0 -10px 30px rgba(11, 17, 23, 0.09);
  }

  .mobile-contact-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    color: var(--ink-900);

    font-size: 13px;
    font-weight: 850;
  }

  .mobile-contact-bar a + a {
    background: var(--whatsapp);
    color: var(--white);
  }

  .mobile-contact-bar svg {
    width: 21px;
    height: 21px;
  }

}


/* ==========================================================
   SMALL MOBILE
   ========================================================== */

@media (max-width: 580px) {

  :root {
    --page-padding: 18px;
  }

  .section {
    padding-block: 72px;
  }

  .brand-mark {
    width: 41px;
    height: 41px;

    border-radius: 10px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .nav-toggle {
    width: 43px;
    height: 43px;
  }

  .hero-grid {
    gap: 42px;

    padding-top: 58px;
    padding-bottom: 58px;
  }

  .eyebrow {
    font-size: 10px;
  }

  .hero h1 {
    margin-top: 20px;

    font-size:
      clamp(39px, 12vw, 57px);

    line-height: 1;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    width: 100%;
  }

  .hero-meta > div {
    min-width: 0;

    padding:
      0
      12px;

    text-align: center;
  }

  .hero-meta > div:first-child {
    padding-left: 0;
  }

  .hero-meta > div:last-child {
    padding-right: 0;
  }

  .hero-meta span {
    font-size: 12px;
  }

  .hero-meta strong {
    font-size: 8px;
  }

  .hero-panel {
    padding: 28px 23px;
  }

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

  .service-card {
    min-height: 320px;
  }

  .region-list article {
    grid-template-columns: 54px 1fr;

    gap: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-shell {
    margin-inline: -4px;

    border-radius: 18px;
  }

  .cta-panel {
    margin-inline: -4px;

    padding: 36px 24px;

    border-radius: 18px;
  }

  .faq-list summary {
    padding-right: 45px;

    font-size: 15px;
  }

  .footer-main {
    grid-template-columns: 1fr;

    gap: 36px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;

    padding:
      24px
      0;

    gap: 15px;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;

    gap: 10px;
  }

}


/* ==========================================================
   VERY SMALL DEVICES
   ========================================================== */

@media (max-width: 380px) {

  .hero h1 {
    font-size: 37px;
  }

  .hero-meta {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-meta > div {
    padding: 0;

    border-left: 0;

    text-align: left;
  }

  .hero-meta strong,
  .hero-meta span {
    display: inline;
  }

  .hero-meta strong {
    margin-right: 7px;
  }

}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;

    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;
  }

}


/* ==========================================================
   PRINT
   ========================================================== */

@media print {

  .site-header,
  .mobile-contact-bar,
  .hero-actions,
  .cta-section,
  .contact-form-shell {
    display: none !important;
  }

  body {
    padding: 0;

    background: #fff;
    color: #000;
  }

  .hero {
    min-height: auto;

    background: #fff;
    color: #000;
  }

  .hero h1,
  .hero-panel h2 {
    color: #000;
  }

}


/* ==========================================================
   A11C2R1_CONTRAST_FIX
   Lighthouse / WCAG AA targeted corrections
   ========================================================== */

/* Orange text on white / #f7f8f9 backgrounds. */

.trust-strip .trust-index,
.services-section .section-kicker,
.region-section .section-kicker,
.why-section .section-kicker,
.faq-section .section-kicker,
.contact-section .section-kicker,
.region-list > article > span,
.why-grid > article > span,
.contact-form-shell .form-heading > span {
    color: #c2410c !important;
}

/* Service numbers on light service cards. */

.service-card .service-number {
    color: #5f6871 !important;
}

/* Featured card has dark #101820 background. */

.service-card.service-card-featured .service-number {
    color: #9aa3ab !important;
}

/* White text on orange surfaces. */

.button-primary,
.brand-mark {
    background-color: #c2410c !important;
    color: #ffffff !important;
}

.button-primary:hover,
.button-primary:focus-visible {
    background-color: #9a3412 !important;
    color: #ffffff !important;
}

/* Footer copyright. */

body > footer.site-footer > div.container > p,
body > footer.site-footer > div.container > p #current-year {
    color: #8a9198 !important;
}

/* Mobile WhatsApp CTA. */

.mobile-contact-bar a[href^="https://wa.me/"],
.mobile-contact-bar a[href*="wa.me/"] {
    background-color: #12823f !important;
    color: #ffffff !important;
}

.mobile-contact-bar a[href^="https://wa.me/"]:hover,
.mobile-contact-bar a[href^="https://wa.me/"]:focus-visible,
.mobile-contact-bar a[href*="wa.me/"]:hover,
.mobile-contact-bar a[href*="wa.me/"]:focus-visible {
    background-color: #0d7537 !important;
    color: #ffffff !important;
}


/* ==========================================================
   ADMIN_DYNAMIC_LOGO_V1
   ========================================================== */

.brand-mark {
    padding: 0 !important;
    overflow: hidden !important;
    background: transparent !important;
    color: transparent !important;
}

.brand-logo-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* ==========================================================
   SEO LANDING PAGES V1
   ========================================================== */

.seo-page {
  width: 100%;
}

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

.seo-hero {
  padding: clamp(72px, 10vw, 128px) 0 clamp(64px, 8vw, 104px);
  background:
    linear-gradient(
      135deg,
      rgba(8, 17, 30, 0.97),
      rgba(17, 34, 54, 0.94)
    );
  color: #fff;
}

.seo-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 0.92rem;
  opacity: 0.82;
}

.seo-breadcrumb a {
  color: inherit;
}

.seo-eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.seo-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.seo-lead {
  max-width: 760px;
  margin: 28px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.7;
  opacity: 0.9;
}

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

.seo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
}

.seo-button-primary {
  background: #fff;
  color: #101722;
}

.seo-button-secondary {
  border: 1px solid rgba(255,255,255,.34);
  color: #fff;
}

.seo-content-section,
.seo-faq-section,
.seo-related-section,
.seo-home-links {
  padding: clamp(64px, 8vw, 104px) 0;
}

.seo-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, .7fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: start;
}

.seo-article {
  max-width: 760px;
}

.seo-article h2,
.seo-faq-section h2,
.seo-related-section h2,
.seo-home-links h2,
.seo-final-cta h2 {
  margin: 0 0 24px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.seo-article h2:not(:first-child) {
  margin-top: 48px;
}

.seo-article p,
.seo-contact-card p,
.seo-final-cta p {
  font-size: 1.04rem;
  line-height: 1.8;
}

.seo-check-list {
  display: grid;
  gap: 12px;
  padding-left: 22px;
  line-height: 1.65;
}

.seo-info-box {
  margin-top: 36px;
  padding: 22px 24px;
  border: 1px solid rgba(127,127,127,.2);
  border-radius: 16px;
}

.seo-contact-card {
  position: sticky;
  top: 100px;
  padding: 30px;
  border: 1px solid rgba(127,127,127,.18);
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(0,0,0,.07);
}

.seo-contact-card h2 {
  margin: 8px 0 14px;
  font-size: 1.7rem;
}

.seo-card-kicker {
  margin: 0;
  font-size: .78rem !important;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.seo-contact-card a {
  display: block;
  margin-top: 14px;
  font-weight: 800;
}

.seo-faq-section {
  border-top: 1px solid rgba(127,127,127,.15);
}

.seo-faq-list {
  max-width: 880px;
}

.seo-faq-item {
  border-top: 1px solid rgba(127,127,127,.18);
  padding: 20px 0;
}

.seo-faq-item:last-child {
  border-bottom: 1px solid rgba(127,127,127,.18);
}

.seo-faq-item summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 1.06rem;
}

.seo-faq-item p {
  margin: 14px 0 0;
  line-height: 1.7;
}

.seo-related-section {
  border-top: 1px solid rgba(127,127,127,.15);
}

.seo-related-grid,
.seo-home-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}

.seo-related-card,
.seo-home-links-grid a {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 22px;
  border: 1px solid rgba(127,127,127,.18);
  border-radius: 16px;
  text-decoration: none;
  transition:
    transform .18s ease,
    border-color .18s ease;
}

.seo-related-card:hover,
.seo-home-links-grid a:hover {
  transform: translateY(-2px);
}

.seo-home-links-grid span {
  font-size: .92rem;
  opacity: .72;
}

.seo-final-cta {
  padding: clamp(56px, 7vw, 84px) 0;
  background: #101722;
  color: #fff;
}

.seo-final-cta .seo-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}

.seo-final-cta h2 {
  max-width: 650px;
  margin-bottom: 12px;
}

.seo-final-cta p {
  max-width: 680px;
  margin: 0;
  opacity: .8;
}

.seo-home-links {
  border-top: 1px solid rgba(127,127,127,.15);
}

@media (max-width: 820px) {
  .seo-container {
    width: min(100% - 28px, 1120px);
  }

  .seo-content-grid {
    grid-template-columns: 1fr;
  }

  .seo-contact-card {
    position: static;
  }

  .seo-related-grid,
  .seo-home-links-grid {
    grid-template-columns: 1fr;
  }

  .seo-final-cta .seo-container {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  .seo-related-card,
  .seo-home-links-grid a {
    transition: none;
  }
}
