:root {
  --primary: #0f2d5c;
  --primary-dark: #0a1e40;
  --secondary: #1fb6af;
  --secondary-dark: #14928d;
  --text: #1e293b;
  --muted: #64748b;
  --bg: #f4f7fb;
  --white: #ffffff;
  --line: #e5edf5;
  --shadow: 0 18px 50px rgba(15, 45, 92, 0.10);
  --shadow-hover: 0 25px 60px rgba(15, 45, 92, 0.16);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --container: 1240px;
  --transition: all 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.topbar-wrap {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.topbar a:hover {
  color: #fff;
}

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 45, 92, 0.08);
}

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

.logo img {
  height: 58px;
  width: auto;
}

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

.nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
}

.mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: none;
  background: #eef4fb;
  border-radius: 14px;
  cursor: pointer;
  padding: 10px;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  margin: 5px 0;
  border-radius: 999px;
}

.hero {
  padding: 72px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.hero-content {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.92));
  border: 1px solid rgba(15, 45, 92, 0.08);
  border-radius: var(--radius-lg);
  padding: 56px;
  box-shadow: var(--shadow);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--secondary-dark);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--secondary);
  border-radius: 999px;
}

.eyebrow.light {
  color: rgba(255,255,255,0.92);
}

.eyebrow.light::before {
  background: rgba(255,255,255,0.8);
}

.hero h1 {
  font-size: 52px;
  line-height: 1.08;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 18px;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 680px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

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

.hero-points span {
  background: #edf7f6;
  color: var(--secondary-dark);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.hero-card-main {
  border-radius: 38px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  background: #fff;
}

.hero-card-main img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.section {
  padding: 42px 0 90px;
}

.section-head,
.section-center {
  margin-bottom: 34px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.section-center {
  text-align: center;
}

.section-head h2,
.section-center h2,
.about-text h2,
.cta-text h2 {
  font-size: 40px;
  line-height: 1.15;
  color: var(--primary);
  margin-top: 8px;
}

.text-link {
  color: var(--secondary-dark);
  font-weight: 700;
}

.text-link:hover {
  color: var(--primary);
}

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

.service-card {
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(15, 45, 92, 0.08);
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), #234883);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 21px;
  line-height: 1.3;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.service-card a {
  color: var(--secondary-dark);
  font-weight: 700;
}

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

.showcase-card {
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.showcase-image {
  overflow: hidden;
}

.showcase-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.showcase-card:hover .showcase-image img {
  transform: scale(1.06);
}

.showcase-content {
  padding: 28px;
}

.showcase-content h3 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 10px;
}

.showcase-content p {
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.about-image-wrap {
  background: var(--white);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.about-text {
  background: rgba(255,255,255,0.96);
  border-radius: 34px;
  padding: 48px;
  box-shadow: var(--shadow);
}

.about-text p {
  color: var(--muted);
  margin-top: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 28px 0;
}

.mini-card {
  background: #f7fafc;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
}

.mini-card strong {
  display: block;
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 16px;
}

.mini-card span {
  color: var(--muted);
  font-size: 14px;
}

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

.process-card {
  background: var(--white);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 45, 92, 0.06);
}

.process-card span {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  margin-bottom: 18px;
}

.process-card h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 10px;
}

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

.cta-box {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), #1f5ba8);
  border-radius: 36px;
  padding: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: var(--shadow-hover);
}

.cta-text h2,
.cta-text p {
  color: var(--white);
}

.cta-text p {
  opacity: 0.88;
  margin-top: 14px;
  max-width: 760px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--white);
  box-shadow: 0 14px 28px rgba(31, 182, 175, 0.24);
}

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

.btn-outline {
  border: 1px solid rgba(15, 45, 92, 0.14);
  color: var(--primary);
  background: var(--white);
}

.btn-outline:hover {
  background: #f8fbff;
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}

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

.footer {
  background: #07152d;
  color: rgba(255,255,255,0.78);
  padding-top: 74px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 36px;
}

.footer-brand img {
  width: 220px;
  margin-bottom: 18px;
}

.footer-col h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  text-align: center;
  font-size: 14px;
}

.whatsapp-button {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 18px 30px rgba(37, 211, 102, 0.30);
}

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

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

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

  .hero-card-main img,
  .about-image-wrap img {
    min-height: 420px;
  }
}

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

  .header-actions {
    display: none;
  }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid rgba(15, 45, 92, 0.08);
    box-shadow: 0 20px 40px rgba(15, 45, 92, 0.08);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 16px 18px;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 14px 8px;
    border-bottom: 1px solid rgba(15, 45, 92, 0.06);
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .showcase-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .topbar-wrap {
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
  }

  .topbar-right {
    justify-content: center;
    gap: 12px;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-content,
  .about-text,
  .cta-box {
    padding: 28px;
  }

  .hero h1,
  .section-head h2,
  .section-center h2,
  .about-text h2,
  .cta-text h2 {
    font-size: 30px;
  }

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

  .service-grid,
  .process-grid,
  .about-features {
    grid-template-columns: 1fr;
  }

  .hero-card-main img,
  .about-image-wrap img,
  .showcase-image img {
    min-height: auto;
    height: 260px;
  }

  .logo img {
    height: 50px;
  }
}


.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
}

.contact-card {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  margin-bottom: 16px;
}

.contact-card h3 {
  margin-bottom: 8px;
  color: var(--primary);
}

.contact-card a {
  font-weight: 600;
  color: var(--secondary);
}

.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.map-box iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 20px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-hero {
  padding: 68px 0 24px;
}

.contact-hero-box {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  background: linear-gradient(135deg, #0a1e40, #0f2d5c, #1c4e93);
  border-radius: 36px;
  padding: 46px;
  box-shadow: var(--shadow-hover);
  overflow: hidden;
  position: relative;
}

.contact-hero-box::before {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 65%);
  pointer-events: none;
}

.contact-hero-text h1 {
  font-size: 48px;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 18px;
  max-width: 760px;
}

.contact-hero-text p {
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  max-width: 760px;
}

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

.contact-hero-side {
  display: grid;
  gap: 16px;
  align-content: center;
}

.contact-stat-card {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(6px);
}

.contact-stat-card strong {
  display: block;
  color: #fff;
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-stat-card span {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.6;
}

.contact-main-section {
  padding: 24px 0 36px;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: start;
}

.contact-info-panel,
.contact-form-panel {
  background: rgba(255,255,255,0.96);
  border-radius: 34px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 45, 92, 0.06);
}

.contact-info-panel {
  padding: 34px;
}

.contact-form-panel {
  padding: 38px;
}

.contact-panel-head h2,
.contact-form-head h2,
.contact-map-head h2 {
  font-size: 36px;
  line-height: 1.15;
  color: var(--primary);
  margin-top: 10px;
  margin-bottom: 14px;
}

.contact-panel-head p,
.contact-form-head p,
.contact-map-head p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.contact-info-list {
  margin-top: 26px;
  display: grid;
  gap: 18px;
}

.contact-info-card.large {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  background: #f8fbff;
  border: 1px solid rgba(15, 45, 92, 0.06);
  border-radius: 24px;
  padding: 22px;
}

.contact-info-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 26px;
  background: linear-gradient(135deg, var(--primary), #1c4e93);
  color: #fff;
  box-shadow: 0 14px 28px rgba(15, 45, 92, 0.16);
}

.contact-info-text small {
  display: block;
  color: var(--secondary-dark);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.contact-info-text a,
.contact-info-text strong {
  display: inline-block;
  font-size: 24px;
  line-height: 1.2;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-info-text p {
  color: var(--muted);
  line-height: 1.7;
}

.contact-cta-mini {
  background: linear-gradient(135deg, #0f2d5c, #173c74);
  border-radius: 28px;
  padding: 28px;
  color: #fff;
  box-shadow: var(--shadow);
}

.contact-cta-mini h3 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.contact-cta-mini p {
  color: rgba(255,255,255,0.82);
  margin-bottom: 18px;
}

.full {
  width: 100%;
}

.contact-form-head {
  margin-bottom: 26px;
}

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

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

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

.form-group.large label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.form-group.large input,
.form-group.large select,
.form-group.large textarea {
  width: 100%;
  border: 1px solid rgba(15, 45, 92, 0.10);
  background: #f8fbff;
  border-radius: 18px;
  padding: 18px 18px;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: var(--transition);
}

.form-group.large input,
.form-group.large select {
  min-height: 60px;
}

.form-group.large textarea {
  resize: vertical;
  min-height: 170px;
}

.form-group.large input:focus,
.form-group.large select:focus,
.form-group.large textarea:focus {
  border-color: rgba(31, 182, 175, 0.80);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(31, 182, 175, 0.10);
}

.form-bottom-bar {
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.kvkk-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 620px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.kvkk-check input {
  margin-top: 3px;
}

.btn-large {
  min-width: 220px;
  min-height: 58px;
}

.contact-map-section {
  padding: 0 0 90px;
}

.contact-map-card {
  background: rgba(255,255,255,0.96);
  border-radius: 34px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.contact-map-head {
  margin-bottom: 22px;
}

.contact-map-frame {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.contact-map-frame iframe {
  width: 100%;
  height: 460px;
  border: 0;
  display: block;
}

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

  .contact-hero-text h1 {
    font-size: 40px;
  }
}

@media (max-width: 920px) {
  .form-row.two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-hero-box,
  .contact-info-panel,
  .contact-form-panel,
  .contact-map-card {
    padding: 24px;
    border-radius: 26px;
  }

  .contact-hero-text h1 {
    font-size: 30px;
  }

  .contact-panel-head h2,
  .contact-form-head h2,
  .contact-map-head h2 {
    font-size: 28px;
  }

  .contact-info-card.large {
    grid-template-columns: 1fr;
  }

  .contact-info-text a,
  .contact-info-text strong {
    font-size: 20px;
  }

  .contact-map-frame iframe {
    height: 320px;
  }
}

.quote-hero {
  padding: 68px 0 24px;
}

.quote-hero-box {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  background: linear-gradient(135deg, #0a1e40, #0f2d5c, #1c4e93);
  border-radius: 36px;
  padding: 46px;
  box-shadow: var(--shadow-hover);
  overflow: hidden;
  position: relative;
}

.quote-hero-box::before {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 65%);
  pointer-events: none;
}

.quote-hero-text h1 {
  font-size: 48px;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 18px;
  max-width: 760px;
}

.quote-hero-text p {
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  max-width: 760px;
}

.quote-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.quote-hero-badges span {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.quote-hero-side {
  display: grid;
  gap: 16px;
  align-content: center;
}

.quote-side-card {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(6px);
}

.quote-side-card strong {
  display: block;
  color: #fff;
  font-size: 18px;
  margin-bottom: 8px;
}

.quote-side-card p {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.6;
}

.quote-main-section {
  padding: 24px 0 36px;
}

.quote-main-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: start;
}

.quote-info-panel,
.quote-form-panel {
  background: rgba(255,255,255,0.96);
  border-radius: 34px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 45, 92, 0.06);
}

.quote-info-panel {
  padding: 34px;
}

.quote-form-panel {
  padding: 38px;
}

.quote-panel-head h2,
.quote-form-head h2,
.quote-bottom-text h2 {
  font-size: 36px;
  line-height: 1.15;
  color: var(--primary);
  margin-top: 10px;
  margin-bottom: 14px;
}

.quote-panel-head p,
.quote-form-head p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.quote-step-list {
  margin-top: 26px;
  display: grid;
  gap: 18px;
}

.quote-step-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
  background: #f8fbff;
  border: 1px solid rgba(15, 45, 92, 0.06);
  border-radius: 24px;
  padding: 22px;
}

.quote-step-no {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), #1c4e93);
  color: #fff;
  box-shadow: 0 14px 28px rgba(15, 45, 92, 0.16);
}

.quote-step-card h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 8px;
}

.quote-step-card p {
  color: var(--muted);
  line-height: 1.7;
}

.quote-contact-box {
  margin-top: 22px;
  background: linear-gradient(135deg, #0f2d5c, #173c74);
  border-radius: 28px;
  padding: 28px;
  color: #fff;
  box-shadow: var(--shadow);
}

.quote-contact-box h3 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.quote-contact-box p {
  color: rgba(255,255,255,0.82);
  margin-bottom: 18px;
}

.quote-contact-actions {
  display: grid;
  gap: 12px;
}

.quote-form-head {
  margin-bottom: 26px;
}

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

.quote-bottom-section {
  padding: 0 0 90px;
}

.quote-bottom-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), #1f5ba8);
  border-radius: 36px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: var(--shadow-hover);
}

.quote-bottom-text h2,
.quote-bottom-text p {
  color: #fff;
}

.quote-bottom-text p {
  margin-top: 12px;
  max-width: 760px;
  color: rgba(255,255,255,0.84);
}

.quote-bottom-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 1180px) {
  .quote-hero-box,
  .quote-main-grid {
    grid-template-columns: 1fr;
  }

  .quote-hero-text h1 {
    font-size: 40px;
  }
}

@media (max-width: 920px) {
  .quote-bottom-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .quote-hero-box,
  .quote-info-panel,
  .quote-form-panel,
  .quote-bottom-card {
    padding: 24px;
    border-radius: 26px;
  }

  .quote-hero-text h1 {
    font-size: 30px;
  }

  .quote-panel-head h2,
  .quote-form-head h2,
  .quote-bottom-text h2 {
    font-size: 28px;
  }

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

.services-hero {
  padding: 68px 0 24px;
}

.services-hero-box {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  background: linear-gradient(135deg, #0a1e40, #0f2d5c, #1c4e93);
  border-radius: 36px;
  padding: 46px;
  box-shadow: var(--shadow-hover);
  overflow: hidden;
  position: relative;
}

.services-hero-box::before {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 65%);
  pointer-events: none;
}

.services-hero-text h1 {
  font-size: 48px;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 18px;
  max-width: 760px;
}

.services-hero-text p {
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  max-width: 760px;
}

.services-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.services-hero-side {
  display: grid;
  gap: 16px;
  align-content: center;
}

.services-highlight-card {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(6px);
}

.services-highlight-card strong {
  display: block;
  color: #fff;
  font-size: 18px;
  margin-bottom: 8px;
}

.services-highlight-card span {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.6;
}

.services-main-section {
  padding: 24px 0 36px;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 34px;
}

.services-page-card {
  background: rgba(255,255,255,0.96);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 45, 92, 0.06);
  transition: var(--transition);
}

.services-page-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.services-page-card.featured {
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(241,248,255,1));
}

.services-page-no {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #1c4e93);
  box-shadow: 0 14px 28px rgba(15, 45, 92, 0.16);
  margin-bottom: 20px;
}

.services-page-card h3 {
  font-size: 28px;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 14px;
}

.services-page-card p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

.services-page-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
  padding-left: 0;
}

.services-page-card li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
}

.services-page-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--secondary);
}

.services-page-card a {
  display: inline-flex;
  align-items: center;
  color: var(--secondary-dark);
  font-weight: 800;
}

.services-process-section {
  padding: 18px 0 36px;
}

.services-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.services-process-card {
  background: rgba(255,255,255,0.96);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 45, 92, 0.06);
}

.services-process-card span {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  margin-bottom: 18px;
}

.services-process-card h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 10px;
}

.services-process-card p {
  color: var(--muted);
  line-height: 1.7;
}

.services-cta-section {
  padding: 0 0 90px;
}

.services-cta-box {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), #1f5ba8);
  border-radius: 36px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: var(--shadow-hover);
}

.services-cta-text h2,
.services-cta-text p {
  color: #fff;
}

.services-cta-text h2 {
  font-size: 36px;
  line-height: 1.15;
}

.services-cta-text p {
  margin-top: 12px;
  max-width: 760px;
  color: rgba(255,255,255,0.84);
}

.services-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 1180px) {
  .services-hero-box {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 920px) {
  .services-page-grid,
  .services-process-grid {
    grid-template-columns: 1fr;
  }

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

  .services-hero-text h1 {
    font-size: 40px;
  }
}

@media (max-width: 640px) {
  .services-hero-box,
  .services-cta-box,
  .services-page-card,
  .services-process-card {
    padding: 24px;
    border-radius: 26px;
  }

  .services-hero-text h1,
  .services-cta-text h2 {
    font-size: 30px;
  }

  .services-page-card h3 {
    font-size: 24px;
  }
}