﻿@import url("https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&display=swap");

:root {
  --background: #f8f9fa;
  --foreground: #1a1a2f;
  --primary: #1a3a5c;
  --primary-soft: rgba(26, 58, 92, 0.08);
  --accent: #2e9e5b;
  --muted: #eef2f5;
  --muted-text: #64717f;
  --border: #dfe7ee;
  --white: #ffffff;
  --shadow: 0 18px 52px rgba(26, 58, 92, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

img {
  max-width: 100%;
}

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

.container.narrow {
  width: min(800px, calc(100% - 32px));
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 28px rgba(26, 58, 92, 0.06);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 228px;
  height: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(26, 26, 47, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 22px;
  border-radius: 6px;
  color: var(--white) !important;
  background: var(--primary);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--foreground);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 178px 0 118px;
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at top right, rgba(26, 58, 92, 0.08), transparent 48%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
  gap: 56px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  margin-bottom: 24px;
  padding: 6px 12px;
  border: 1px solid rgba(26, 58, 92, 0.16);
  border-radius: 999px;
  color: var(--primary);
  background: var(--primary-soft);
  font-size: 14px;
  font-weight: 600;
}

.icon,
.proof-list i {
  color: var(--accent);
  font-style: normal;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--foreground);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h1 span {
  color: var(--primary);
}

.hero-copy > p {
  max-width: 690px;
  margin-bottom: 32px;
  color: var(--muted-text);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 38px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border: 1px solid var(--primary);
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.button.primary {
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 8px 18px rgba(26, 58, 92, 0.12);
}

.button.outline {
  color: var(--primary);
  background: transparent;
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  color: var(--muted-text);
  font-size: 14px;
  font-weight: 500;
}

.proof-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.expertise-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.card-accent {
  height: 8px;
  background: var(--primary);
}

.expertise-content {
  padding: 32px;
}

.expertise-content h2 {
  margin-bottom: 24px;
  font-size: 18px;
}

.expertise-list {
  display: grid;
  gap: 24px;
}

.expertise-list article {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 16px;
}

.mini-icon,
.product-icon,
.contact-card span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--primary);
  background: var(--primary-soft);
  font-weight: 700;
}

.expertise-list .mini-icon {
  width: 32px;
  height: 32px;
  margin-top: 3px;
}

.expertise-list h3 {
  margin-bottom: 2px;
  font-size: 16px;
  font-weight: 600;
}

.expertise-list p {
  margin-bottom: 0;
  color: var(--muted-text);
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  width: 100%;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.section,
.dark-section {
  padding: 96px 0;
}

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

.dark-section.compact {
  padding: 86px 0;
}

.muted {
  background: var(--muted);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 64px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

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

.section-heading h2 {
  margin-bottom: 0;
  color: inherit;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.section-heading p {
  margin: 18px auto 0;
  color: var(--muted-text);
  font-size: 18px;
}

.value-grid,
.service-grid,
.product-grid,
.contact-grid {
  display: grid;
  gap: 24px;
}

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

.value-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.10);
  text-align: center;
}

.value-card span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 999px;
  color: var(--white);
  background: var(--accent);
}

.value-card h3 {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.90);
  font-size: 18px;
  font-weight: 500;
}

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

.service-card,
.product-card,
.contact-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 5px 18px rgba(26, 58, 92, 0.04);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card:hover,
.product-card:hover,
.contact-card:hover {
  border-color: rgba(26, 58, 92, 0.30);
  transform: translateY(-2px);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.service-card p,
.product-card p,
.contact-card p {
  margin-bottom: 0;
  color: var(--muted-text);
}

.service-card p {
  flex: 1;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.detail-main {
  padding-top: 78px;
}

.detail-hero {
  padding: 96px 0 72px;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(ellipse at top right, rgba(26, 58, 92, 0.08), transparent 48%);
}

.detail-hero h1 {
  max-width: 900px;
}

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

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 42px;
  align-items: start;
}

.detail-grid h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
}

.detail-grid p {
  color: var(--muted-text);
  font-size: 17px;
}

.detail-panel {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 5px 18px rgba(26, 58, 92, 0.04);
}

.detail-panel h3 {
  margin-bottom: 18px;
}

.detail-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-panel li {
  position: relative;
  padding-left: 22px;
  color: var(--muted-text);
}

.detail-panel li a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.detail-panel li a:hover {
  text-decoration: underline;
}

.detail-panel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

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

.light-button {
  margin-top: 14px;
  color: var(--primary) !important;
  border-color: var(--white);
  background: var(--white) !important;
}

.dark-section .center-text h2 {
  color: var(--white);
}

.dark-section .center-text p {
  color: rgba(255, 255, 255, 0.76);
}

.detail-cta-section {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  background: var(--muted);
}

.detail-cta-box {
  width: min(760px, calc(100% - 32px));
  padding: 38px 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 32px rgba(26, 58, 92, 0.08);
}

.detail-cta-box h2 {
  margin-bottom: 12px;
  color: var(--foreground);
  font-size: clamp(24px, 3vw, 32px);
}

.detail-cta-box p {
  max-width: 620px;
  margin-right: auto;
  margin-bottom: 22px;
  margin-left: auto;
  color: var(--muted-text);
}

.narbulut-hero .hero-actions {
  margin-top: 28px;
}

.narbulut-solution-grid,
.use-case-grid,
.benefit-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.narbulut-solution-card,
.use-case-card,
.benefit-card,
.process-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 5px 18px rgba(26, 58, 92, 0.04);
}

.narbulut-solution-card {
  display: flex;
  flex-direction: column;
}

.narbulut-solution-card > img {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
}

.narbulut-solution-card h3,
.use-case-card h3,
.benefit-card h3,
.process-card h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.narbulut-solution-card p,
.use-case-card p,
.benefit-card p,
.process-card p {
  margin-bottom: 0;
  color: var(--muted-text);
}

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

.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted-text);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.comparison-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.comparison-table thead th {
  color: var(--white);
  background: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

.comparison-table tbody th {
  color: var(--foreground);
  font-weight: 500;
}

.comparison-table tbody td {
  color: var(--primary);
  font-weight: 700;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

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

.benefit-card span,
.process-card > span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.claim-note {
  max-width: 760px;
  margin: 26px auto 0;
  color: var(--muted-text);
  font-size: 13px;
  text-align: center;
}

.partner-band {
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--muted);
}

.partner-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: 48px;
  align-items: center;
}

.partner-band h2 {
  max-width: 720px;
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
}

.partner-band p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted-text);
  font-size: 17px;
}

.partner-logo-box {
  display: grid;
  min-height: 150px;
  place-items: center;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.partner-logo-box img {
  width: min(100%, 240px);
  height: auto;
}

.home-partner-band .button {
  margin-top: 24px;
}

.related-service {
  margin-top: 24px;
}

.related-service a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.related-service a:hover {
  text-decoration: underline;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.faq-item summary {
  padding: 20px 22px;
  cursor: pointer;
  color: var(--foreground);
  font-weight: 600;
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted-text);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.product-grid {
  width: min(900px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card {
  min-height: 285px;
  display: flex;
  flex-direction: column;
}

.product-icon {
  margin-bottom: 18px;
}

.product-card h3 {
  margin-bottom: 14px;
  font-size: 26px;
}

.product-card p {
  flex: 1;
  margin-bottom: 28px;
}

.product-card a,
.product-more a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.product-more {
  margin-top: 36px;
  text-align: center;
}

.timeline {
  position: relative;
  display: grid;
  gap: 48px;
  margin-left: 16px;
  padding-left: 32px;
  border-left: 1px solid rgba(26, 58, 92, 0.20);
}

.timeline-item {
  position: relative;
}

.timeline-dot {
  position: absolute;
  top: 5px;
  left: -43px;
  width: 20px;
  height: 20px;
  border: 4px solid var(--accent);
  border-radius: 999px;
  background: var(--background);
}

.timeline time {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 4px 12px;
  border-radius: 4px;
  color: var(--primary);
  background: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.timeline h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

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

.tag-cloud {
  width: min(900px, 100%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0 auto;
}

.tag-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.90);
  background: rgba(255, 255, 255, 0.10);
  font-weight: 500;
}

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

.contact-form-wrap {
  width: min(860px, 100%);
  margin: 0 auto 34px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 5px 18px rgba(26, 58, 92, 0.04);
}

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

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

.form-grid label {
  display: grid;
  gap: 8px;
}

.form-grid label.wide {
  grid-column: 1 / -1;
}

.backup-fields {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.backup-fields[hidden] {
  display: none;
}

.backup-fields legend {
  padding: 0 6px;
  color: var(--foreground);
  font-size: 14px;
  font-weight: 600;
}

.backup-fields .form-grid {
  grid-template-columns: minmax(220px, 1.4fr) minmax(140px, 0.8fr);
}

.backup-fields .form-grid select {
  width: 100%;
}

.form-grid span {
  color: var(--foreground);
  font-size: 14px;
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--foreground);
  background: var(--white);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-grid textarea {
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: rgba(26, 58, 92, 0.55);
  box-shadow: 0 0 0 3px rgba(26, 58, 92, 0.08);
}

.form-grid small {
  color: var(--muted-text);
  font-size: 12px;
  text-align: right;
}

.website-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.captcha-slot:empty {
  display: none;
}

.consent-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted-text);
  font-size: 14px;
}

.consent-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
}

.consent-check a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.consent-check a:hover {
  text-decoration: underline;
}

.form-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.form-actions button {
  cursor: pointer;
}

.form-actions button:disabled {
  cursor: wait;
  opacity: 0.72;
}

#form-status {
  margin: 0;
  color: var(--muted-text);
  font-size: 14px;
}

#form-status.success {
  color: var(--accent);
}

#form-status.error {
  color: #a33a3a;
}

.contact-card {
  min-height: 215px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.contact-card span {
  margin-bottom: 16px;
  border-radius: 999px;
}

.contact-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.contact-card a {
  color: var(--muted-text);
  text-decoration: none;
}

.site-footer {
  padding: 64px 0 32px;
  color: var(--white);
  background: var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 4fr 2fr 3fr 3fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 24px;
}

.footer-logo img {
  width: 210px;
  filter: brightness(0) invert(1);
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
  text-decoration: none;
}

.site-footer p span,
.site-footer a span {
  flex: 0 0 auto;
  color: var(--accent);
  font-weight: 700;
}

.site-footer p span {
  margin-right: 8px;
}

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

.site-footer h4 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: 18px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom p {
  width: 100%;
  margin-bottom: 0;
  font-size: 14px;
  text-align: center;
}


.legal-page {
  background: var(--background);
}

.legal-main {
  padding: 136px 0 80px;
}

.legal-article {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-article .eyebrow {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}

.legal-article h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
}

.legal-article h2 {
  margin-top: 34px;
  font-size: 24px;
}

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

.legal-article ul {
  padding-left: 20px;
}

.reveal {
  animation: fadeUp 0.65s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero {
    padding-top: 128px;
  }

  .hero-grid,
  .detail-grid,
  .value-grid,
  .service-grid,
  .product-grid,
  .contact-grid,
  .footer-grid,
  .narbulut-solution-grid,
  .use-case-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

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

  .site-nav {
    position: absolute;
    top: 78px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

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

  .nav-cta {
    justify-content: center;
    margin-top: 8px;
  }

  .nav-toggle {
    display: inline-block;
  }

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

@media (max-width: 620px) {
  .container,
  .container.narrow {
    width: min(100% - 40px, 1200px);
  }

  .brand img {
    width: 210px;
  }

  .hero {
    padding: 112px 0 76px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-copy > p,
  .section-heading p {
    font-size: 17px;
  }

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

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

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

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

  .comparison-wrap {
    overflow-x: visible;
  }

  .comparison-table {
    min-width: 0;
    table-layout: fixed;
    font-size: 14px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 10px;
    overflow-wrap: anywhere;
  }

  .comparison-table th:first-child {
    width: 68%;
  }

  .partner-band-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-form-wrap {
    padding: 20px;
  }

  .expertise-content,
  .service-card,
  .product-card,
  .contact-card,
  .value-card {
    padding: 24px;
  }

  .section,
  .dark-section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .footer-bottom div {
    flex-direction: column;
    gap: 8px;
  }
}

/* Detail page CTA override kept at the end to avoid section color bleed. */
.detail-cta-section {
  padding: 56px 0 !important;
  border-top: 1px solid var(--border);
  background: var(--muted) !important;
}

.detail-cta-box {
  width: min(760px, calc(100% - 32px));
  padding: 38px 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white) !important;
  box-shadow: 0 10px 32px rgba(26, 58, 92, 0.08);
}

.detail-cta-box h2 {
  color: var(--foreground) !important;
}

.detail-cta-box p {
  color: var(--muted-text) !important;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.payment-logos img {
  width: auto;
  height: 38px;
  border-radius: 7px;
  background: var(--white);
}

.legal-article a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.legal-article a:hover {
  text-decoration: underline;
}


