﻿:root {
  --ink: #17202a;
  --muted: #637083;
  --line: #dbe2ea;
  --panel: #f6f8fb;
  --white: #ffffff;
  --red: #c8242f;
  --red-dark: #9f1d28;
  --amber: #f3b23d;
  --green: #11845b;
  --navy: #20314a;
  --shadow: 0 18px 50px rgba(23, 32, 42, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--white);
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(18px, 4vw, 58px);
  color: var(--white);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 35px rgba(23, 32, 42, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-weight: 800;
  background: var(--red);
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.2);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 19px;
}

.brand small {
  color: currentColor;
  font-size: 12px;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.9;
}

.site-nav a:hover {
  color: var(--amber);
}

.header-call,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-weight: 800;
}

.header-call {
  color: var(--white);
  background: var(--red);
}

.btn-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 28px rgba(200, 36, 47, 0.25);
}

.btn-primary:hover,
.header-call:hover {
  background: var(--red-dark);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.14);
}

.contact-card .btn-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 20, 31, 0.88) 0%, rgba(13, 20, 31, 0.64) 38%, rgba(13, 20, 31, 0.18) 74%),
    linear-gradient(0deg, rgba(13, 20, 31, 0.5), rgba(13, 20, 31, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 82px);
  padding-top: 96px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.hero-lead {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(690px, 100%);
  margin: 38px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.hero-stats div {
  padding: 18px;
}

.hero-stats dt {
  font-size: 23px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  color: var(--white);
  background: var(--navy);
}

.quick-strip div {
  padding: 24px clamp(18px, 3vw, 44px);
  background: rgba(255, 255, 255, 0.04);
}

.quick-strip strong,
.quick-strip span {
  display: block;
}

.quick-strip strong {
  font-size: 18px;
}

.quick-strip span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 6vw, 82px);
}

.section-heading {
  max-width: 800px;
}

.section-heading.center {
  margin: 0 auto 34px;
  text-align: center;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: 18px;
}

.intro-copy p:first-child {
  margin-top: 0;
}

.services,
.faq {
  background: var(--panel);
}

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

.service-card,
.steps article,
.testimonial-grid figure {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(23, 32, 42, 0.06);
}

.service-card {
  min-height: 250px;
  padding: 26px;
}

.icon {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

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

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--red);
  font-weight: 900;
}

.page-hero {
  padding: 142px clamp(18px, 6vw, 82px) clamp(64px, 8vw, 104px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 23, 34, 0.92), rgba(32, 49, 74, 0.78)),
    url("../images/cekici-hero.png") center / cover;
}

.page-hero.compact {
  min-height: 430px;
}

.page-hero h1,
.page-hero p {
  max-width: 860px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
}

.page-hero p:not(.eyebrow) {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 22px);
}

.detail-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: start;
}

.side-menu {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(23, 32, 42, 0.06);
}

.side-menu a {
  padding: 12px 14px;
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 900;
}

.side-menu a:hover {
  color: var(--white);
  background: var(--red);
}

.detail-content {
  display: grid;
  gap: 18px;
}

.detail-content.narrow {
  max-width: 980px;
  margin: 0 auto;
}

.detail-block {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(23, 32, 42, 0.05);
}

.detail-block p,
.detail-block li {
  color: var(--muted);
  font-size: 17px;
}

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

.check-list li {
  padding-left: 26px;
  background: linear-gradient(var(--green), var(--green)) left 0.72em / 10px 10px no-repeat;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(34px, 5vw, 54px) clamp(18px, 6vw, 82px);
  color: var(--white);
  background: var(--navy);
}

.cta-band h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.cta-band p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

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

.page-contact {
  padding-top: clamp(48px, 6vw, 78px);
  background: var(--panel);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 18px;
  padding: 22px;
}

.steps span {
  grid-row: span 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-weight: 900;
  background: var(--red);
}

.steps p {
  margin: 0;
}

.region-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  margin-top: 34px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #384b62);
}

.region-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.region-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.region-list li {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}

.trust-item {
  padding: 24px;
  border-left: 4px solid var(--red);
  background: var(--panel);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item span {
  margin-top: 6px;
  color: var(--muted);
}

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

.testimonial-grid figure {
  margin: 0;
  padding: 26px;
}

.testimonial-grid blockquote {
  margin: 0;
  color: var(--muted);
}

.testimonial-grid figcaption {
  margin-top: 18px;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin-top: 30px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 24px;
  padding: clamp(64px, 8vw, 112px) clamp(18px, 6vw, 82px);
  background: var(--ink);
}

.contact-card,
.contact-info {
  border-radius: var(--radius);
  background: var(--white);
}

.contact-card {
  padding: clamp(30px, 5vw, 54px);
}

.contact-card p {
  max-width: 680px;
  color: var(--muted);
}

.contact-info {
  padding: 30px;
}

.contact-info p {
  margin: 14px 0;
  color: var(--muted);
}

.contact-info a {
  color: var(--red);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 6vw, 82px);
  color: rgba(255, 255, 255, 0.78);
  background: #101722;
}

.site-footer strong,
.site-footer span {
  display: block;
}

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

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 800;
}

.mobile-actions {
  display: none;
}

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

  .site-nav {
    position: absolute;
    top: 74px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .header-call {
    display: none;
  }

  .quick-strip,
  .intro,
  .split,
  .region-panel,
  .contact-section,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .testimonial-grid,
  .trust,
  .cards-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .side-menu {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding-top: 84px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(13, 20, 31, 0.9), rgba(13, 20, 31, 0.56)),
      linear-gradient(0deg, rgba(13, 20, 31, 0.56), rgba(13, 20, 31, 0.12));
  }

  .hero-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .hero-stats,
  .service-grid,
  .testimonial-grid,
  .trust,
  .region-list,
  .cards-row {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 116px 16px 58px;
  }

  .cta-band {
    display: block;
  }

  .cta-band .btn {
    width: 100%;
    margin-top: 20px;
  }

  .hero-stats div {
    padding: 14px 16px;
  }

  .quick-strip {
    display: none;
  }

  .section,
  .contact-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .steps article {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 18px;
  }

  .steps span {
    width: 38px;
    height: 38px;
  }

  .site-footer {
    display: block;
    padding-bottom: 86px;
  }

  .site-footer nav {
    margin-top: 18px;
  }

  .mobile-actions {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .mobile-actions a {
    display: grid;
    min-height: 44px;
    place-items: center;
    border-radius: var(--radius);
    color: var(--white);
    font-weight: 900;
    background: var(--red);
  }

  .mobile-actions a:last-child {
    background: var(--green);
  }
}
