@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #07111f;
  --bg-soft: #0b1728;
  --card: rgba(15, 31, 51, 0.74);
  --card-solid: #0f2034;
  --text: #f3f7fb;
  --muted: #a9b8ca;
  --line: rgba(255,255,255,.1);
  --primary: #38d9c8;
  --primary-dark: #18b8a8;
  --accent: #65a8ff;
  --shadow: 0 28px 70px rgba(0,0,0,.28);
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1160px;
}

html {
  color-scheme: dark;
}

html[data-theme="light"] {
  --bg: #f4f8fc;
  --bg-soft: #eaf1f8;
  --card: rgba(255, 255, 255, .82);
  --card-solid: #ffffff;
  --text: #102033;
  --muted: #607088;
  --line: rgba(16, 32, 51, .12);
  --primary: #0e9e91;
  --primary-dark: #087f75;
  --accent: #3478cf;
  --shadow: 0 28px 70px rgba(30, 57, 84, .14);
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Tajawal", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(56, 217, 200, .08), transparent 25%),
    radial-gradient(circle at 90% 30%, rgba(101, 168, 255, .08), transparent 28%),
    var(--bg);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
}

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

.section {
  padding: 100px 0;
  position: relative;
}

.background-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .16;
  pointer-events: none;
  z-index: -1;
}

.glow-one {
  top: 8%;
  right: -160px;
  background: var(--primary);
}

.glow-two {
  bottom: 8%;
  left: -170px;
  background: var(--accent);
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: rgba(7, 17, 31, .72);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: .3s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #06101c;
  font-size: 1.35rem;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(56,217,200,.2);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand-text strong {
  font-size: .98rem;
}

.brand-text small {
  color: var(--muted);
  font-size: .76rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.main-nav a {
  font-size: .92rem;
  color: #c5d0dc;
  transition: .25s ease;
}

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

.main-nav .nav-cta {
  padding: 10px 17px;
  border: 1px solid rgba(56,217,200,.35);
  border-radius: 999px;
  color: var(--primary);
}

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

.theme-toggle {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--text);
  background: rgba(255,255,255,.04);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(56,217,200,.4);
  background: rgba(56,217,200,.08);
}

.theme-toggle:focus-visible {
  outline: 3px solid rgba(56,217,200,.25);
  outline-offset: 3px;
}

.theme-icon {
  font-size: 1.15rem;
  line-height: 1;
  transition: transform .3s ease;
}

.theme-toggle:hover .theme-icon {
  transform: rotate(18deg);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
  place-items: center;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  display: block;
  margin: 5px auto;
  transition: .3s ease;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 150px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 80px;
  align-items: center;
}

.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--primary);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 20px;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(56,217,200,.11);
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 1.08;
  letter-spacing: -.045em;
  max-width: 790px;
}

.hero h1 span,
.section-heading h2 span,
.why-panel h2 span,
.contact-info h2 span {
  color: var(--primary);
}

.hero-lead {
  margin-top: 25px;
  max-width: 690px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

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

.btn {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .25s ease, background .25s ease, border .25s ease;
}

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

.btn-primary {
  color: #06121d;
  background: linear-gradient(135deg, var(--primary), #7ceadd);
  box-shadow: 0 14px 34px rgba(56,217,200,.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #50e4d4, var(--primary));
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: rgba(56,217,200,.35);
}

.hero-highlights {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 42px;
}

.hero-highlights div {
  display: flex;
  flex-direction: column;
}

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

.hero-highlights span {
  color: var(--muted);
  font-size: .78rem;
}

.hero-visual {
  position: relative;
  direction: ltr;
}

.browser-card {
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(18, 39, 63, .94), rgba(9, 22, 38, .94));
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: perspective(1000px) rotateY(5deg) rotateX(2deg);
}

.browser-top {
  height: 57px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 20px;
}

.browser-dots {
  display: flex;
  gap: 7px;
}

.browser-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}

.browser-dots i:first-child { background: #ff746c; }
.browser-dots i:nth-child(2) { background: #ffcf62; }
.browser-dots i:last-child { background: #57d88c; }

.browser-address {
  height: 29px;
  flex: 1;
  max-width: 260px;
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  color: #7f91a5;
  display: grid;
  place-items: center;
  font-size: .72rem;
}

.browser-body {
  min-height: 450px;
  padding: 66px 45px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 34px 34px;
}

.browser-body::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--primary);
  filter: blur(100px);
  opacity: .12;
  bottom: -100px;
  right: -80px;
}

.code-label {
  display: inline-block;
  color: var(--primary);
  font: 600 .84rem ui-monospace, SFMono-Regular, Menlo, monospace;
  padding: 7px 11px;
  border: 1px solid rgba(56,217,200,.18);
  border-radius: 8px;
  background: rgba(56,217,200,.05);
}

.visual-title {
  color: white;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.16;
  margin-top: 27px;
}

.visual-lines {
  margin-top: 34px;
  display: grid;
  gap: 10px;
}

.visual-lines span {
  height: 8px;
  border-radius: 99px;
  background: rgba(255,255,255,.08);
}

.floating-chip {
  position: absolute;
  padding: 9px 13px;
  border-radius: 10px;
  background: rgba(9, 20, 34, .94);
  border: 1px solid rgba(255,255,255,.12);
  color: #cdd8e5;
  font-size: .72rem;
  box-shadow: 0 14px 30px rgba(0,0,0,.28);
  animation: float 4s ease-in-out infinite;
}

.chip-one { right: 26px; top: 28px; }
.chip-two { left: 27px; bottom: 31px; animation-delay: .8s; }
.chip-three { right: 36px; bottom: 100px; animation-delay: 1.3s; }

.hero-badge {
  position: absolute;
  right: -22px;
  bottom: 32px;
  background: rgba(9, 22, 38, .92);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .82rem;
  color: #d8e3ee;
  box-shadow: 0 14px 34px rgba(0,0,0,.3);
  direction: rtl;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #57d88c;
  box-shadow: 0 0 0 6px rgba(87,216,140,.1);
}

.stats-strip {
  padding-top: 0;
}

.strip-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 25px;
}

.strip-card > div {
  padding: 8px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.strip-card > div:not(:last-child) {
  border-left: 1px solid var(--line);
}

.strip-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(56,217,200,.08);
  color: var(--primary);
  font-size: .76rem;
  font-weight: 800;
}

.strip-card p {
  color: #cbd6e1;
  font-size: .91rem;
}

.about-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.section-heading h2,
.why-panel h2,
.contact-info h2 {
  font-size: clamp(2.3rem, 4.2vw, 4rem);
  line-height: 1.18;
  letter-spacing: -.03em;
}

.section-heading.centered {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}

.section-heading.centered .section-kicker {
  justify-content: center;
}

.section-heading.centered p {
  color: var(--muted);
  margin-top: 14px;
}

.about-copy > p {
  color: #c0cddd;
  font-size: 1.14rem;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.about-points span {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(56,217,200,.18);
  background: rgba(56,217,200,.05);
  color: #ccebe7;
  font-size: .82rem;
}

.services-section, .process-section {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.018), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.service-card {
  grid-column: span 2;
  min-height: 285px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(56,217,200,.32);
  background: linear-gradient(145deg, rgba(56,217,200,.06), rgba(255,255,255,.02));
}

.service-card.featured {
  grid-column: span 3;
  background:
    radial-gradient(circle at 10% 10%, rgba(56,217,200,.12), transparent 36%),
    linear-gradient(145deg, #10263b, #0b1a2c);
}

.service-card:nth-child(4) {
  grid-column: span 3;
}

.service-number {
  display: none;
  position: absolute;
  left: 22px;
  top: 18px;
  color: rgba(255,255,255,.12);
  font-size: 2.1rem;
  font-weight: 800;
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: rgba(56,217,200,.08);
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 26px;
}

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

.service-card p {
  color: var(--muted);
  font-size: .92rem;
}

.service-card a {
  display: inline-flex;
  gap: 9px;
  color: var(--primary);
  font-size: .88rem;
  font-weight: 700;
  margin-top: 20px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.why-panel p {
  color: var(--muted);
  margin-top: 22px;
  max-width: 580px;
}

.text-link {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
}

.benefits-list {
  display: grid;
  gap: 14px;
}

.benefit-item {
  display: flex;
  gap: 17px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255,255,255,.028);
}

.benefit-item > span {
  flex: 0 0 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(56,217,200,.1);
  color: var(--primary);
  font-weight: 800;
}

.benefit-item h3 {
  font-size: 1rem;
}

.benefit-item p {
  color: var(--muted);
  font-size: .84rem;
  margin-top: 2px;
}

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

.process-card {
  min-height: 230px;
  padding: 25px;
  border-top: 2px solid rgba(56,217,200,.4);
  background: rgba(255,255,255,.028);
  border-radius: 0 0 18px 18px;
  position: relative;
}

.process-card span {
  font-size: 2.2rem;
  color: rgba(255,255,255,.11);
  font-weight: 800;
}

.process-card h3 {
  margin-top: 30px;
  font-size: 1.05rem;
}

.process-card p {
  color: var(--muted);
  font-size: .84rem;
  margin-top: 10px;
}

.contact-section {
  padding-bottom: 70px;
}

.contact-card {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 32px;
  padding: 55px;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 70px;
  background:
    radial-gradient(circle at 10% 10%, rgba(56,217,200,.12), transparent 38%),
    linear-gradient(145deg, rgba(17,38,61,.95), rgba(8,20,35,.96));
  box-shadow: var(--shadow);
}

.contact-info > p {
  color: var(--muted);
  margin-top: 22px;
  max-width: 540px;
}

.contact-links {
  margin-top: 34px;
  display: grid;
  gap: 13px;
}

.contact-links a,
.contact-links > div {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #dce5ee;
}

.contact-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(56,217,200,.08);
  color: var(--primary);
}

.contact-links span:last-child {
  display: flex;
  flex-direction: column;
}

.contact-links small {
  color: var(--muted);
  font-size: .72rem;
}

.contact-links strong {
  font-size: .92rem;
}

.contact-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(4,14,25,.4);
}

.contact-form label {
  display: block;
  color: #d9e3ee;
  font-size: .86rem;
  margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  margin-top: 7px;
  padding: 14px 15px;
  color: white;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  outline: none;
  transition: .25s ease;
}

.contact-form select option {
  color: #111;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(56,217,200,.55);
  box-shadow: 0 0 0 4px rgba(56,217,200,.07);
}

.submit-btn {
  width: 100%;
  border: 0;
}

.form-note {
  text-align: center;
  color: #8091a5;
  font-size: .72rem;
  margin-top: 12px;
}

.site-footer {
  padding: 36px 0 42px;
  border-top: 1px solid var(--line);
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 30px;
}

.footer-wrap > div strong {
  font-size: 1rem;
}

.footer-wrap > div p,
.copyright {
  color: var(--muted);
  font-size: .77rem;
}

.footer-wrap > a {
  color: var(--primary);
  font-size: .84rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

html[data-theme="light"] body {
  background:
    radial-gradient(circle at 12% 8%, rgba(14, 158, 145, .1), transparent 25%),
    radial-gradient(circle at 90% 30%, rgba(52, 120, 207, .1), transparent 28%),
    var(--bg);
}

html[data-theme="light"] .site-header {
  background: rgba(244, 248, 252, .8);
}

html[data-theme="light"] .main-nav a {
  color: #3f5269;
}

html[data-theme="light"] .main-nav a:hover,
html[data-theme="light"] .main-nav .nav-cta {
  color: var(--primary);
}

html[data-theme="light"] .theme-toggle {
  background: rgba(255,255,255,.7);
}

html[data-theme="light"] .btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), #23bbae);
}

html[data-theme="light"] .btn-primary:hover {
  background: linear-gradient(135deg, #18ac9f, var(--primary-dark));
}

html[data-theme="light"] .btn-secondary,
html[data-theme="light"] .strip-card,
html[data-theme="light"] .benefit-item,
html[data-theme="light"] .process-card {
  background: rgba(255,255,255,.64);
}

html[data-theme="light"] .strip-card p,
html[data-theme="light"] .about-copy > p,
html[data-theme="light"] .contact-links a,
html[data-theme="light"] .contact-links > div {
  color: #344a62;
}

html[data-theme="light"] .service-card {
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(232,241,248,.76));
}

html[data-theme="light"] .service-card:hover {
  background: linear-gradient(145deg, rgba(14,158,145,.08), rgba(255,255,255,.9));
}

html[data-theme="light"] .service-card.featured {
  background:
    radial-gradient(circle at 10% 10%, rgba(14,158,145,.13), transparent 36%),
    linear-gradient(145deg, #ffffff, #eaf2f8);
}

html[data-theme="light"] .service-number,
html[data-theme="light"] .process-card span {
  color: rgba(16,32,51,.14);
}

html[data-theme="light"] .contact-card {
  background:
    radial-gradient(circle at 10% 10%, rgba(14,158,145,.13), transparent 38%),
    linear-gradient(145deg, rgba(255,255,255,.97), rgba(232,241,248,.97));
}

html[data-theme="light"] .contact-form {
  background: rgba(255,255,255,.6);
}

html[data-theme="light"] .contact-form label {
  color: #263c53;
}

html[data-theme="light"] .contact-form input,
html[data-theme="light"] .contact-form textarea,
html[data-theme="light"] .contact-form select {
  color: #102033;
  background: rgba(255,255,255,.85);
  border-color: rgba(16,32,51,.14);
}

html[data-theme="light"] .form-note {
  color: #687b91;
}

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

  .hero-grid {
    gap: 55px;
  }

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

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-highlights {
    justify-content: center;
  }

  .hero-visual {
    max-width: 620px;
    width: 100%;
    margin-inline: auto;
  }

  .about-grid,
  .why-grid,
  .contact-card {
    gap: 42px;
  }

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

  .about-points {
    justify-content: center;
  }

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

  .process-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 75px 0;
  }

  .nav-wrap {
    height: 70px;
  }

  .menu-toggle {
    display: block;
    z-index: 60;
  }

  .main-nav {
    position: fixed;
    top: 70px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    background: rgba(9, 22, 38, .98);
    border: 1px solid var(--line);
    border-radius: 18px;
    transform: translateY(-15px);
    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
    box-shadow: var(--shadow);
    margin-left: 0;
  }

  html[data-theme="light"] .main-nav {
    background: rgba(247,250,253,.98);
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

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

  .main-nav .nav-cta {
    border-radius: 12px;
    margin-top: 6px;
  }

  .hero {
    min-height: auto;
    padding-top: 125px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .hero-highlights {
    gap: 18px;
  }

  .browser-card {
    transform: none;
  }

  .browser-body {
    min-height: 360px;
    padding: 50px 25px;
  }

  .hero-badge {
    right: 15px;
    bottom: -20px;
  }

  .strip-card {
    grid-template-columns: 1fr;
    padding: 12px 18px;
  }

  .strip-card > div {
    padding: 15px 4px;
  }

  .strip-card > div:not(:last-child) {
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .service-card,
  .service-card.featured,
  .service-card:nth-child(4) {
    grid-column: auto;
  }

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

  .process-card:last-child {
    grid-column: auto;
  }

  .contact-card {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .contact-form {
    padding: 20px;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 26px), var(--container));
  }

  .brand-text small {
    display: none;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }

  .hero-highlights div {
    padding: 10px 5px;
    border: 1px solid var(--line);
    border-radius: 12px;
  }

  .visual-title {
    font-size: 2rem;
  }

  .floating-chip {
    font-size: .65rem;
  }

  .contact-links strong {
    font-size: .8rem;
  }
}
