﻿:root {
  color-scheme: light;

  --bg: #f4f8ff;
  --surface: #ffffff;
  --text: #08243f;
  --muted: #5f7489;

  --primary: #0d5bd4;
  --primary-dark: #073b86;
  --accent: #38bdf8;

  --border: #dfe9f6;
  --shadow: 0 18px 42px rgba(8, 36, 63, 0.08);

  --radius: 24px;
}


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

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

html {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;

  scroll-behavior: smooth;

  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;

  margin: 0;
  padding: 0;

  font-family: "Inter", sans-serif;

  color: var(--text);

  background:
    linear-gradient(
      180deg,
      #f8fbff 0%,
      var(--bg) 100%
    );

  overflow-x: hidden;
}

img,
video,
iframe {
  max-width: 100%;
}

img {
  display: block;
}

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

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

button {
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;

  list-style: none;
}

h1,
h2,
h3,
p,
a,
span,
strong,
div {
  overflow-wrap: break-word;
}


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

.site-header {
  position: sticky;

  top: 0;

  z-index: 100;

  width: 100%;

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

  backdrop-filter: blur(20px);

  border-bottom:
    1px solid rgba(8, 36, 63, 0.06);
}

.header-inner {
  width: 100%;
  max-width: 1220px;

  margin: 0 auto;

  padding: 1rem 1.5rem;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 1rem;
}

.brand {
  min-width: 0;

  display: inline-flex;

  flex-direction: column;

  gap: 0.15rem;

  font-weight: 800;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  font-size: 0.95rem;
}

.brand-strong {
  color: var(--text);
}

.brand-light {
  color: var(--primary);
}

.site-nav {
  flex: 1;

  min-width: 0;

  margin-left: 2rem;
}

.nav-list {
  display: flex;

  align-items: center;

  gap: 1.5rem;
}

.nav-list a {
  color: var(--muted);

  font-weight: 500;

  white-space: nowrap;

  transition: color 0.2s ease;
}

.nav-list a:hover,
.nav-list a:focus {
  color: var(--text);
}

.header-actions {
  flex-shrink: 0;

  display: flex;

  align-items: center;

  gap: 0.85rem;
}


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

.btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-width: 0;

  padding: 0.95rem 1.4rem;

  border-radius: 999px;

  border: 1px solid transparent;

  font-weight: 700;

  text-align: center;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

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

.btn-primary {
  background:
    linear-gradient(
      135deg,
      var(--primary),
      var(--accent)
    );

  color: #fff;

  box-shadow:
    0 14px 28px rgba(13, 91, 212, 0.2);
}

.btn-secondary {
  background: #fff;

  color: var(--text);

  border-color: var(--border);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-toggle {
  display: none;

  width: 48px;
  height: 48px;

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

  border-radius: 16px;

  background: #fff;

  padding: 0.75rem;

  align-items: center;

  justify-content: center;
}

.mobile-toggle span {
  display: block;

  width: 22px;
  height: 2px;

  background: var(--text);

  border-radius: 999px;

  margin: 4px 0;
}

.mobile-menu {
  position: fixed;

  inset: 0;

  width: 100%;
  max-width: 100%;

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

  backdrop-filter: blur(20px);

  transform: translateY(-100%);

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;

  padding: 2rem 1.4rem;

  display: flex;

  flex-direction: column;

  gap: 1.6rem;

  pointer-events: none;

  opacity: 0;
}

.mobile-menu.open {
  transform: translateY(0);

  pointer-events: auto;

  opacity: 1;
}

.mobile-menu-close {
  border: none;

  background: transparent;

  color: var(--text);

  font-size: 1.3rem;

  align-self: flex-end;
}

.mobile-nav {
  display: grid;

  gap: 1rem;
}

.mobile-nav a {
  font-size: 1.05rem;

  color: var(--text);

  font-weight: 600;
}

.mobile-cta {
  width: 100%;
}


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

.hero-section {
  position: relative;

  width: 100%;
  max-width: 1220px;

  margin: 0 auto;

  padding: 5.5rem 1.5rem 4rem;

  display: grid;

  gap: 2rem;

  overflow: hidden;
}

.hero-section::before,
.hero-section::after {
  content: "";

  position: absolute;

  border-radius: 50%;

  filter: blur(120px);

  opacity: 0.35;

  pointer-events: none;
}

.hero-section::before {
  width: 320px;
  height: 320px;

  top: -40px;
  left: -80px;

  background:
    rgba(13, 91, 212, 0.15);
}

.hero-section::after {
  width: 380px;
  height: 380px;

  right: -120px;
  bottom: -50px;

  background:
    rgba(56, 189, 248, 0.16);
}

.hero-content {
  position: relative;

  z-index: 1;

  width: 100%;
  max-width: 640px;

  min-width: 0;
}

.eyebrow {
  display: inline-block;

  margin: 0 0 1rem;

  letter-spacing: 0.24em;

  text-transform: uppercase;

  color: var(--primary);

  font-size: 0.8rem;

  font-weight: 700;
}

.hero-section h1 {
  margin: 0 0 1rem;

  font-size:
    clamp(
      2.6rem,
      4.2vw,
      4.4rem
    );

  line-height: 1.03;
}

.hero-description {
  margin: 0 0 1.6rem;

  color: var(--muted);

  font-size: 1.05rem;

  line-height: 1.8;
}

.hero-highlights {
  display: flex;

  flex-wrap: wrap;

  gap: 0.75rem;

  margin-bottom: 2rem;
}

.hero-highlights span {
  padding: 0.8rem 1rem;

  border-radius: 999px;

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

  color: var(--text);

  font-weight: 600;

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

.hero-buttons {
  display: flex;

  flex-wrap: wrap;

  gap: 1rem;
}

.hero-panel {
  position: relative;

  z-index: 1;

  width: 100%;

  min-width: 0;

  display: grid;

  gap: 1rem;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));
}

.hero-card {
  min-width: 0;

  display: grid;

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

  gap: 1rem;

  align-items: center;

  padding: 1.2rem;

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

  border-radius: var(--radius);

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

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

.hero-card-icon {
  width: 3.2rem;
  height: 3.2rem;

  flex-shrink: 0;

  display: grid;

  place-items: center;

  border-radius: 16px;

  background:
    rgba(13, 91, 212, 0.12);

  color: var(--primary);

  font-size: 1.2rem;
}

.hero-card p {
  margin: 0 0 0.2rem;

  color: var(--muted);

  font-size: 0.95rem;
}

.hero-card strong {
  font-size: 1rem;
}


/* =========================================================
   SECTIONS
========================================================= */

.section-header {
  width: 100%;

  max-width: 760px;

  margin: 0 auto 2.3rem;

  text-align: center;
}

.section-header span {
  display: inline-block;

  margin-bottom: 0.8rem;

  color: var(--primary);

  text-transform: uppercase;

  letter-spacing: 0.2em;

  font-size: 0.8rem;

  font-weight: 700;
}

.section-header h2 {
  margin: 0;

  font-size:
    clamp(
      1.8rem,
      2.4vw,
      2.4rem
    );

  line-height: 1.2;
}

.section-subtitle {
  max-width: 760px;

  margin: 0.8rem auto 0;

  color: var(--muted);

  line-height: 1.7;
}


/* =========================================================
   MAIN SECTIONS
========================================================= */

.services-section,
.video-section,
.trust-section,
.process-section,
.highlight-section,
.reviews-section,
.faq-section,
.contact-section,
.about-section {
  width: 100%;

  max-width: 1220px;

  margin: 0 auto;

  padding: 5rem 1.5rem;
}


/* =========================================================
   GRIDS
========================================================= */

.services-grid,
.trust-grid,
.process-grid,
.reviews-grid,
.contact-grid,
.faq-grid {
  width: 100%;

  min-width: 0;

  display: grid;

  gap: 1.2rem;
}

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

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

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

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

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


/* =========================================================
   CARDS
========================================================= */

.service-card,
.trust-card,
.process-step,
.review-card,
.contact-card,
.faq-item,
.about-card {
  min-width: 0;

  background: var(--surface);

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

  border-radius: var(--radius);

  padding: 1.6rem;

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

.service-icon {
  width: 3.2rem;
  height: 3.2rem;

  display: grid;

  place-items: center;

  margin-bottom: 1rem;

  border-radius: 16px;

  background:
    rgba(13, 91, 212, 0.11);

  color: var(--primary);

  font-size: 1.15rem;
}

.service-card h3,
.trust-card h3,
.process-step h3,
.contact-card h3,
.video-card h3 {
  margin: 0 0 0.5rem;

  font-size: 1.08rem;
}

.service-card p,
.trust-card p,
.process-step p,
.review-card p,
.contact-card p,
.faq-item p,
.about-copy p,
.video-card p {
  margin: 0;

  color: var(--muted);

  line-height: 1.7;
}


/* =========================================================
   VIDEO
========================================================= */

.video-grid {
  width: 100%;

  min-width: 0;

  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 1.2rem;
}

.video-card {
  width: 100%;

  min-width: 0;

  overflow: hidden;

  border-radius: 24px;

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

  background: var(--surface);

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

.video-frame {
  width: 100%;

  aspect-ratio: 9 / 16;

  background: #07111e;

  overflow: hidden;
}

.video-frame iframe {
  width: 100%;

  height: 100%;

  max-width: 100%;

  border: 0;

  display: block;
}

.video-card-body {
  padding:
    1.2rem
    1.2rem
    1.3rem;

  display: grid;

  gap: 0.7rem;
}

.video-meta {
  color: var(--primary);

  font-weight: 700;

  font-size: 0.78rem;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}

.video-link {
  display: inline-flex;

  align-items: center;

  gap: 0.45rem;

  color: var(--primary);

  font-weight: 700;
}


/* =========================================================
   MAVİ ALANLAR
========================================================= */

.highlight-pair {
  width: 100%;

  max-width: 1220px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 1.2rem;
}

.highlight-pair .highlight-section {
  width: 100%;

  max-width: none;

  padding:
    1rem
    1.5rem;
}

.highlight-pair .highlight-card {
  height: 100%;

  flex-direction: column;

  align-items: flex-start;

  justify-content: space-between;
}

.highlight-card {
  width: 100%;

  min-width: 0;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 2rem;

  padding: 2rem;

  border-radius: 32px;

  background:
    linear-gradient(
      135deg,
      #0b3d8a 0%,
      #0d5bd4 60%,
      #38bdf8 100%
    );

  color: #fff;

  box-shadow:
    0 24px 48px rgba(13, 91, 212, 0.22);
}

.highlight-card > div {
  min-width: 0;
}

.highlight-card span {
  display: inline-block;

  margin-bottom: 0.6rem;

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

  font-weight: 700;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}

.highlight-card h2 {
  margin: 0 0 0.7rem;

  font-size:
    clamp(
      1.5rem,
      2.2vw,
      2rem
    );
}

.highlight-card p {
  max-width: 560px;

  margin: 0;

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

  line-height: 1.7;
}

.highlight-section.alternate .highlight-card {
  background:
    linear-gradient(
      135deg,
      #10324f 0%,
      #0d5bd4 100%
    );
}


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

.process-step {
  position: relative;
}

.process-step span {
  display: inline-flex;

  width: 3rem;
  height: 3rem;

  align-items: center;

  justify-content: center;

  border-radius: 999px;

  background:
    rgba(13, 91, 212, 0.12);

  color: var(--primary);

  font-weight: 800;

  margin-bottom: 1rem;
}


/* =========================================================
   ABOUT
========================================================= */

.about-card {
  display: grid;

  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(0, 0.8fr);

  gap: 2rem;

  align-items: center;
}

.about-copy {
  min-width: 0;
}

.about-copy span {
  color: var(--primary);

  font-weight: 700;

  letter-spacing: 0.16em;

  text-transform: uppercase;

  font-size: 0.8rem;
}

.about-copy h2 {
  margin:
    0.7rem
    0
    1rem;

  font-size:
    clamp(
      1.8rem,
      2.4vw,
      2.3rem
    );
}

.about-points {
  display: grid;

  gap: 0.8rem;

  margin-top: 1.2rem;
}

.about-points div {
  color: var(--text);

  font-weight: 600;
}

.about-points i {
  color: var(--primary);

  margin-right: 0.5rem;
}

.about-visual {
  position: relative;

  width: 100%;

  min-height: 320px;

  border-radius: 32px;

  background:
    linear-gradient(
      160deg,
      rgba(13, 91, 212, 0.12),
      rgba(56, 189, 248, 0.08)
    );

  display: grid;

  place-items: center;

  overflow: hidden;
}

.visual-ring {
  width: 240px;

  height: 240px;

  border:
    12px solid
    rgba(13, 91, 212, 0.16);

  border-top-color:
    var(--primary);

  border-radius: 50%;

  animation:
    spin 12s linear infinite;
}

.visual-badge,
.visual-card {
  position: absolute;

  background: white;

  border-radius: 999px;

  padding:
    0.95rem
    1.25rem;

  box-shadow: var(--shadow);

  font-weight: 700;
}

.visual-badge {
  top: 2rem;

  right: 1rem;

  color: var(--primary);
}

.visual-card {
  bottom: 2rem;

  left: 1rem;

  color: var(--text);
}


/* =========================================================
   REVIEWS
========================================================= */

.review-card {
  background:
    linear-gradient(
      135deg,
      #fff 0%,
      #f9fcff 100%
    );
}

.review-card strong {
  display: block;

  margin-top: 1rem;

  color: var(--primary);
}


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

.faq-item {
  padding:
    1.3rem
    1.4rem;
}

.faq-item summary {
  cursor: pointer;

  font-weight: 700;

  list-style: none;
}

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

.faq-item p {
  margin-top: 0.8rem;
}


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

.contact-card {
  display: flex;

  align-items: center;

  gap: 1rem;
}

.contact-card > div:last-child {
  min-width: 0;
}

.contact-card-hero {
  background:
    linear-gradient(
      135deg,
      rgba(13, 91, 212, 0.08),
      rgba(56, 189, 248, 0.04)
    );
}

.contact-icon {
  width: 3rem;

  height: 3rem;

  flex:
    0 0 3rem;

  display: grid;

  place-items: center;

  border-radius: 50%;

  background:
    rgba(13, 91, 212, 0.12);

  color: var(--primary);
}

.contact-icon.whatsapp {
  background:
    rgba(37, 211, 102, 0.12);

  color: #25d366;
}

.contact-value {
  word-break: break-word;
}


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

.site-footer {
  width: 100%;

  background: #072443;

  color: #e7f0ff;

  padding:
    3rem
    1.5rem
    2rem;

  margin-top: 2rem;
}

.footer-top,
.footer-bottom {
  width: 100%;

  max-width: 1220px;

  margin: 0 auto;
}

.footer-top {
  display: flex;

  justify-content: space-between;

  gap: 2rem;

  padding-bottom: 1.5rem;

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

.footer-brand {
  margin: 0 0 0.4rem;

  font-size: 1.05rem;

  font-weight: 800;

  text-transform: uppercase;
}

.footer-tag {
  margin: 0;

  color:
    rgba(231, 240, 255, 0.72);
}

.footer-nav,
.footer-contact {
  display: grid;

  gap: 0.6rem;
}

.footer-link,
.footer-nav a {
  color:
    rgba(231, 240, 255, 0.88);
}

.footer-bottom {
  padding-top: 1rem;

  color:
    rgba(231, 240, 255, 0.65);

  font-size: 0.95rem;
}


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

.contact-toolbar {
  position: fixed;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 90;

  display: none;

  padding:
    0.8rem
    1rem
    calc(
      0.8rem +
      env(safe-area-inset-bottom)
    );

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

  backdrop-filter: blur(12px);

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

  gap: 0.8rem;
}

.toolbar-btn {
  flex: 1;

  min-width: 0;

  display: inline-flex;

  justify-content: center;

  align-items: center;

  padding:
    0.95rem
    1rem;

  border-radius: 999px;

  font-weight: 700;

  background:
    linear-gradient(
      135deg,
      var(--primary),
      var(--accent)
    );

  color: #fff;

  white-space: nowrap;
}

.toolbar-btn.whatsapp {
  background:
    linear-gradient(
      135deg,
      #25d366,
      #1f9b4d
    );
}


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

.floating-actions {
  position: fixed;

  right: 1rem;

  bottom: 5.4rem;

  z-index: 90;

  display: flex;

  flex-direction: column;

  gap: 0.8rem;
}

.floating-btn {
  width: 56px;

  height: 56px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  color: #fff;

  box-shadow:
    0 16px 30px
    rgba(8, 36, 63, 0.18);
}

.phone-btn {
  background:
    linear-gradient(
      135deg,
      var(--primary),
      var(--accent)
    );
}

.whatsapp-btn {
  background:
    linear-gradient(
      135deg,
      #25d366,
      #1f9b4d
    );
}


/* =========================================================
   ANIMATION
========================================================= */

.reveal {
  opacity: 0;

  transform: translateY(26px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;

  transform: translateY(0);
}

.header-scrolled {
  box-shadow:
    0 8px 24px
    rgba(8, 36, 63, 0.06);
}

@keyframes spin {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }

}


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

@media (max-width: 900px) {

  .header-inner {
    padding:
      0.7rem
      1rem;

    min-height: 62px;
  }

  .site-nav,
  .header-actions .btn-primary {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .brand {
    font-size: 0.76rem;

    letter-spacing: 0.04em;

    max-width: 70%;
  }

  .hero-section {
    padding:
      4.5rem
      1rem
      3rem;
  }

  .hero-section h1 {
    font-size: 30px;

    line-height: 1.12;

    letter-spacing: -1px;
  }

  .hero-description {
    font-size: 14px;

    line-height: 1.55;

    margin-bottom: 1rem;
  }

  .hero-highlights {
    gap: 0.5rem;

    margin-bottom: 1rem;
  }

  .hero-highlights span {
    padding:
      0.6rem
      0.75rem;

    font-size: 0.75rem;
  }

  .hero-buttons {
    gap: 0.75rem;
  }

  .hero-buttons .btn {
    flex:
      1 1 100%;
  }

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

  .services-grid,
  .trust-grid,
  .process-grid,
  .reviews-grid,
  .contact-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .about-card {
    grid-template-columns: 1fr;
  }

  .about-visual {
    min-height: 260px;
  }

  .highlight-pair {
    grid-template-columns: 1fr;
  }

  .highlight-pair .highlight-section {
    padding:
      0.5rem
      1rem;
  }

  .highlight-card {
    flex-direction: column;

    align-items: flex-start;

    gap: 1rem;
  }

  .highlight-card .btn {
    width: 100%;
  }

  .services-section,
  .video-section,
  .trust-section,
  .process-section,
  .highlight-section,
  .reviews-section,
  .faq-section,
  .contact-section,
  .about-section {
    padding:
      3.5rem
      1rem;
  }

  .contact-toolbar {
    display: flex;
  }

  .floating-actions {
    right: 0.8rem;

    bottom: 5.2rem;

    gap: 0.6rem;
  }

  .floating-btn {
    width: 48px;

    height: 48px;
  }

  .footer-top {
    flex-direction: column;

    gap: 1.5rem;
  }

  .site-footer {
    padding:
      3rem
      1rem
      2rem;
  }

}


/* =========================================================
   MOBİL
========================================================= */

@media (max-width: 600px) {

  html,
  body {
    width: 100%;

    max-width: 100%;

    overflow-x: hidden;
  }

  .header-inner {
    width: 100%;

    min-height: 60px;

    padding:
      0.7rem
      0.85rem;
  }

  .brand {
    font-size: 0.72rem;

    letter-spacing: 0.04em;

    max-width:
      calc(100% - 55px);
  }

  .mobile-toggle {
    width: 44px;

    height: 44px;

    flex-shrink: 0;

    border-radius: 14px;
  }

  .mobile-toggle span {
    width: 18px;

    margin: 3px 0;
  }


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

  .hero-section {
    width: 100%;

    padding:
      4.5rem
      0.85rem
      2.5rem;

    gap: 1rem;
  }

  .hero-section h1 {
    font-size: 27px;

    line-height: 1.12;
  }

  .hero-description {
    font-size: 13px;

    line-height: 1.6;
  }

  .hero-highlights {
    display: grid;

    grid-template-columns: 1fr;

    gap: 0.45rem;

    margin-bottom: 1rem;
  }

  .hero-highlights span {
    width: 100%;

    text-align: center;

    padding:
      0.6rem
      0.75rem;
  }

  .hero-buttons {
    display: flex;

    flex-direction: column;

    gap: 0.65rem;
  }

  .hero-buttons .btn {
    width: 100%;

    min-height: 46px;
  }

  .hero-card {
    width: 100%;

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

    padding: 0.95rem;

    gap: 0.7rem;

    border-radius: 16px;
  }

  .hero-card-icon {
    width: 44px;

    height: 44px;
  }

  .hero-card p,
  .hero-card strong {
    font-size: 0.9rem;
  }


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

  .section-header {
    width: 100%;

    margin-bottom: 1.1rem;
  }

  .section-header span {
    font-size: 0.7rem;

    letter-spacing: 0.12em;
  }

  .section-header h2 {
    font-size: 22px;

    line-height: 1.2;
  }

  .section-subtitle {
    font-size: 13px;

    line-height: 1.6;
  }


  /* =========================
     ANA SECTIONS
  ========================== */

  .services-section,
  .video-section,
  .trust-section,
  .process-section,
  .highlight-section,
  .reviews-section,
  .faq-section,
  .contact-section,
  .about-section {
    width: 100%;

    padding:
      2.8rem
      0.85rem;
  }


  /* =========================
     HİZMETLER
  ========================== */

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

    gap: 0.7rem;
  }


  /* =========================
     NEDEN ANSU
     2 x 3
  ========================== */

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

    gap: 0.7rem;
  }

  .trust-card {
    padding: 14px;

    border-radius: 15px;
  }

  .trust-card h3 {
    font-size: 14px;

    line-height: 1.35;
  }

  .trust-card p {
    font-size: 12px;

    line-height: 1.5;
  }


  /* =========================
     NASIL ÇALIŞIYORUZ
     2 x 2
  ========================== */

  .process-grid {
    grid-template-columns:
      repeat(
        2,
        minmax(0, 1fr)
      );

    gap: 0.7rem;
  }

  .process-step {
    padding: 14px;

    border-radius: 15px;
  }

  .process-step span {
    width: 2.2rem;

    height: 2.2rem;

    margin-bottom: 0.7rem;
  }

  .process-step h3 {
    font-size: 14px;

    line-height: 1.3;
  }

  .process-step p {
    font-size: 12px;

    line-height: 1.5;
  }


  /* =========================
     YOUTUBE
     2 x 2
  ========================== */

  .video-grid {
    width: 100%;

    grid-template-columns:
      repeat(
        2,
        minmax(0, 1fr)
      );

    gap: 0.7rem;
  }

  .video-card {
    width: 100%;

    max-width: 100%;

    border-radius: 14px;
  }

  .video-frame {
    width: 100%;

    aspect-ratio: 9 / 14;
  }

  .video-frame iframe {
    width: 100%;

    max-width: 100%;

    height: 100%;
  }

  .video-card-body {
    padding:
      0.75rem;
  }

  .video-card h3 {
    font-size: 13px;

    line-height: 1.35;
  }

  .video-card p {
    font-size: 11px;

    line-height: 1.45;
  }

  .video-meta {
    font-size: 9px;

    letter-spacing: 0.1em;
  }


  /* =========================
     MAVİ ALANLAR
     YAN YANA
  ========================== */

  .highlight-pair {
    width: 100%;

    grid-template-columns:
      repeat(
        2,
        minmax(0, 1fr)
      );

    gap: 0.55rem;
  }

  .highlight-pair .highlight-section {
    width: 100%;

    padding:
      0.3rem;
  }

  .highlight-pair .highlight-card {
    width: 100%;

    min-height: 100%;

    padding:
      1rem
      0.7rem;

    border-radius: 15px;

    gap: 0.8rem;
  }

  .highlight-pair .highlight-card span {
    font-size: 9px;

    letter-spacing: 0.04em;

    margin-bottom: 0.4rem;
  }

  .highlight-pair .highlight-card h2 {
    font-size: 15px;

    line-height: 1.25;

    margin-bottom: 0.5rem;
  }

  .highlight-pair .highlight-card p {
    font-size: 11px;

    line-height: 1.45;
  }

  .highlight-pair .highlight-card .btn {
    width: 100%;

    min-height: 42px;

    padding:
      8px
      5px;

    font-size: 9px;

    line-height: 1.2;
  }


  /* =========================
     KARTLAR
  ========================== */

  .service-card,
  .review-card,
  .contact-card,
  .faq-item,
  .about-card {
    width: 100%;

    padding: 14px;

    border-radius: 16px;
  }

  .service-card h3,
  .contact-card h3,
  .video-card h3 {
    font-size: 16px;
  }

  .service-card p,
  .review-card p,
  .contact-card p,
  .faq-item p,
  .about-copy p {
    font-size: 13px;

    line-height: 1.6;
  }

  .service-icon {
    width: 44px;

    height: 44px;
  }


  /* =========================
     ABOUT
  ========================== */

  .about-card {
    display: grid;

    gap: 1rem;
  }

  .about-copy h2 {
    font-size: 21px;

    line-height: 1.2;
  }

  .about-visual {
    width: 100%;

    min-height: 220px;

    height: 220px;

    border-radius: 18px;
  }

  .visual-ring {
    width: 160px;

    height: 160px;

    border-width: 8px;
  }

  .visual-badge,
  .visual-card {
    padding:
      0.7rem
      0.9rem;

    font-size: 0.8rem;
  }

  .visual-badge {
    top: 1rem;

    right: 0.7rem;
  }

  .visual-card {
    bottom: 1rem;

    left: 0.7rem;
  }


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

  .faq-item {
    padding: 1rem;
  }

  .faq-item summary {
    font-size: 13px;

    line-height: 1.5;
  }

  .faq-item p {
    margin-top: 0.7rem;
  }


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

  .contact-card {
    align-items: flex-start;
  }

  .contact-icon {
    width: 42px;

    height: 42px;

    flex:
      0 0 42px;
  }

  .contact-value {
    font-size: 13px;
  }


  /* =========================
     MOBİL ALT BAR
  ========================== */

  .contact-toolbar {
    display: flex;

    width: 100%;

    padding:
      0.65rem
      0.7rem
      calc(
        0.65rem +
        env(safe-area-inset-bottom)
      );

    gap: 0.5rem;
  }

  .toolbar-btn {
    min-width: 0;

    min-height: 46px;

    padding:
      10px
      8px;

    font-size: 12px;
  }


  /* =========================
     FLOATING
  ========================== */

  .floating-actions {
    right: 0.7rem;

    bottom: 4.7rem;

    gap: 0.5rem;
  }

  .floating-btn {
    width: 44px;

    height: 44px;
  }


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

  .site-footer {
    width: 100%;

    padding:
      2.8rem
      0.85rem
      2rem;
  }

  .footer-top {
    width: 100%;

    gap: 1.5rem;
  }

  .footer-nav,
  .footer-contact {
    width: 100%;
  }

  .footer-bottom {
    width: 100%;

    padding-bottom: 2rem;

    font-size: 12px;
  }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 380px) {

  .header-inner {
    padding:
      0.65rem
      0.7rem;
  }

  .brand {
    font-size: 0.66rem;
  }

  .hero-section {
    padding:
      4rem
      0.7rem
      2rem;
  }

  .hero-section h1 {
    font-size: 24px;
  }

  .hero-description {
    font-size: 12px;
  }

  .section-header h2 {
    font-size: 20px;
  }

  .services-section,
  .video-section,
  .trust-section,
  .process-section,
  .highlight-section,
  .reviews-section,
  .faq-section,
  .contact-section,
  .about-section {
    padding-left: 0.7rem;

    padding-right: 0.7rem;
  }

  .highlight-pair {
    gap: 0.4rem;
  }

  .highlight-pair .highlight-card {
    padding:
      0.85rem
      0.55rem;
  }

  .highlight-pair .highlight-card h2 {
    font-size: 13px;
  }

  .highlight-pair .highlight-card p {
    font-size: 10px;
  }

  .highlight-pair .highlight-card .btn {
    font-size: 8px;

    padding:
      7px
      4px;
  }

  .toolbar-btn {
    font-size: 11px;
  }

}