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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #020617;
  color: #ffffff;
  line-height: 1.7;
}

body::selection {
  background: #38bdf8;
  color: #020617;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.hero-section {
  background:
    radial-gradient(circle at 85% 15%, rgba(37, 99, 235, 0.35), transparent 30%),
    radial-gradient(circle at 15% 80%, rgba(14, 165, 233, 0.18), transparent 35%),
    linear-gradient(135deg, #020617, #0f172a, #111827);
  padding-bottom: 30px;
}

.navbar {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.logo img {
  display: block;
  width: 190px;
  height: auto;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.75);
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: #e2e8f0;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 24px;
  flex-wrap: wrap;
}

.navbar a {
  text-decoration: none;
  color: #e2e8f0;
  font-weight: 500;
  font-size: 15px;
  transition: 0.3s;
}

.navbar a:hover {
  color: #38bdf8;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #7dd3fc;
  outline-offset: 4px;
}

.hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 55px;
}

.badge,
.small-title {
  display: inline-block;
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.5);
  background: rgba(56, 189, 248, 0.08);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
}

.hero h1 {
  font-size: 64px;
  line-height: 1.12;
  max-width: 760px;
}

.hero h1 span {
  color: #38bdf8;
}

.hero p {
  max-width: 660px;
  color: #cbd5e1;
  font-size: 18px;
  margin-top: 22px;
}

.hero-buttons,
.contact-buttons {
  display: flex;
  gap: 15px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-buttons {
  align-items: flex-start;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.primary {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.35);
}

.primary:hover {
  box-shadow: 0 16px 38px rgba(220, 38, 38, 0.48);
}

.secondary {
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: #ffffff;
  background: rgba(15, 23, 42, 0.5);
}

.secondary:hover {
  box-shadow: 0 0 30px 5px rgba(56, 189, 248, 0.24);
}

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

.hero-profile {
  display: flex;
  justify-content: center;
}

.profile-card {
  width: 340px;
  padding: 24px;
  text-align: center;
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.32);
  animation: profileGlow 4s ease-in-out infinite;
}

@keyframes profileGlow {
  0%, 100% { box-shadow: 0 25px 70px rgba(0, 0, 0, 0.32), 0 0 0 rgba(56, 189, 248, 0); }
  50% { box-shadow: 0 25px 70px rgba(0, 0, 0, 0.32), 0 0 42px rgba(56, 189, 248, 0.24); }
}

.profile-card img {
  width: 235px;
  height: 235px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid rgba(56, 189, 248, 0.35);
  box-shadow: 0 0 55px rgba(56, 189, 248, 0.35);
}

.profile-card h3 {
  margin-top: 18px;
  font-size: 22px;
}

.profile-card p {
  color: #cbd5e1;
  font-size: 14px;
  margin-top: 8px;
}

section {
  padding: 64px 0;
}

.brand-section {
  padding: 46px 0;
  background: rgba(15, 23, 42, 0.45);
}

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

.brand-card {
  min-height: 120px;
  background: rgba(15, 23, 42, 0.68);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.brand-card img {
  max-width: 145px;
  max-height: 70px;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.brand-card img.rounded-brand-logo {
  border-radius: 14px;
}

.brand-card:hover,
.brand-card:focus-visible {
  transform: scale(1.05);
  border-color: rgba(56, 189, 248, 0.65);
  background: rgba(15, 23, 42, 0.94);
  box-shadow: 0 0 32px rgba(56, 189, 248, 0.25);
}

.brand-card:hover img,
.brand-card:focus-visible img {
  transform: scale(1.03);
}

.section-title {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #ffffff;
}

.section-intro {
  max-width: 760px;
  margin: -12px 0 38px;
  color: #cbd5e1;
  font-size: 17px;
}

.glass-box,
.contact-box,
.service-card,
.timeline-card,
.approach-card {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.glass-box,
.contact-box {
  padding: 48px;
}

.glass-box p,
.contact-box p {
  color: #cbd5e1;
  margin-bottom: 16px;
}

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

.service-card {
  padding: 34px;
  transition: 0.3s;
}

.service-card:hover,
.timeline-card:hover,
.approach-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.55);
}

.service-card h3 {
  color: #38bdf8;
  font-size: 23px;
  margin-bottom: 12px;
}

.service-card p {
  color: #cbd5e1;
  margin-bottom: 18px;
}

.service-card ul {
  list-style: none;
}

.service-card li {
  color: #e2e8f0;
  margin-bottom: 9px;
  padding-left: 22px;
  position: relative;
}

.service-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #38bdf8;
}

.website-showcase {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 50%, rgba(14, 165, 233, 0.15), transparent 34%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.28), rgba(2, 6, 23, 0.2));
}

.showcase-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.showcase-copy > p:not(.small-title) {
  color: #cbd5e1;
}

.showcase-points {
  display: grid;
  gap: 10px;
  margin: 26px 0;
  list-style: none;
}

.showcase-points li {
  position: relative;
  padding-left: 25px;
  color: #e2e8f0;
}

.showcase-points li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #38bdf8;
}

.device-stage {
  position: relative;
  min-height: 440px;
}

.device {
  position: absolute;
  overflow: hidden;
  border: 6px solid #1e293b;
  background: #e2e8f0;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
}

.desktop-device {
  top: 10px;
  left: 0;
  width: 82%;
  height: 340px;
  border-radius: 17px;
}

.tablet-device {
  right: 1%;
  bottom: 38px;
  z-index: 2;
  width: 39%;
  height: 285px;
  border-width: 8px;
  border-radius: 20px;
}

.phone-device {
  bottom: 4px;
  left: 13%;
  z-index: 3;
  width: 22%;
  min-width: 116px;
  height: 230px;
  border-width: 7px;
  border-radius: 24px;
}

.device-bar {
  display: flex;
  gap: 5px;
  height: 22px;
  padding: 7px 9px;
  background: #0f172a;
}

.device-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #475569;
}

.device-speaker {
  position: absolute;
  z-index: 2;
  top: 7px;
  left: 50%;
  width: 35px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 50px;
  background: #020617;
}

.concept-page {
  min-height: 100%;
  padding: 8%;
  color: #0f172a;
  background: linear-gradient(145deg, #eff6ff, #f8fafc);
}

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

.concept-nav span {
  margin-right: auto;
  color: #2563eb;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.concept-nav b {
  width: 28px;
  height: 3px;
  border-radius: 5px;
  background: #cbd5e1;
}

.concept-hero {
  display: grid;
  width: 72%;
  margin-top: 12%;
}

.concept-hero small {
  color: #0ea5e9;
  font-size: 7px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.concept-hero strong {
  margin: 7px 0 12px;
  font-size: clamp(10px, 2vw, 23px);
  line-height: 1.15;
}

.concept-hero em {
  width: 58px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
}

.concept-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 12%;
}

.concept-cards i {
  height: 58px;
  border: 1px solid #dbeafe;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 5px 15px rgba(15, 23, 42, 0.06);
}

.tablet-device .concept-hero,
.phone-device .concept-hero {
  width: 90%;
}

.tablet-device .concept-cards,
.phone-device .concept-cards {
  grid-template-columns: repeat(2, 1fr);
}

.phone-device .concept-page {
  padding-top: 24%;
}

.phone-device .concept-nav b {
  width: 14px;
}

.phone-device .concept-hero strong {
  font-size: 15px;
}

.phone-device .concept-cards i {
  height: 38px;
}

.concept-label {
  position: absolute;
  right: 3%;
  bottom: 0;
  color: #64748b;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(37, 99, 235, 0.18), transparent 28%),
    rgba(15, 23, 42, 0.38);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 28px;
  align-items: start;
}

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

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.17);
  border-radius: 22px;
  background: rgba(2, 6, 23, 0.72);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.42);
}

.pricing-card.is-selected {
  border-color: #38bdf8;
  box-shadow: 0 22px 55px rgba(14, 165, 233, 0.18);
}

.pricing-card.featured-plan {
  z-index: 2;
  transform: scale(1.025);
  border: 2px solid #38bdf8;
  background: linear-gradient(145deg, rgba(30, 64, 175, 0.2), rgba(2, 6, 23, 0.82));
  box-shadow: 0 0 32px rgba(56, 189, 248, 0.28), 0 24px 65px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured-plan:hover {
  transform: scale(1.025) translateY(-5px);
  box-shadow: 0 0 45px rgba(56, 189, 248, 0.38), 0 28px 70px rgba(0, 0, 0, 0.34);
}

.pricing-card.project-plan {
  grid-column: 1 / -1;
}

.popular-label {
  position: absolute;
  top: 16px;
  right: -34px;
  width: 140px;
  padding: 5px 0;
  transform: rotate(38deg);
  background: #38bdf8;
  color: #020617;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card-top {
  min-height: 150px;
}

.plan-type,
.estimate-eyebrow {
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 12px 0 10px;
  padding-right: 12px;
  font-size: 22px;
  line-height: 1.3;
}

.pricing-card > p {
  margin-bottom: 20px;
  color: #cbd5e1;
}

.plan-price {
  color: #ffffff;
  line-height: 1.45;
}

.plan-price .price-label {
  display: block;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plan-price strong {
  color: #38bdf8;
  font-size: 29px;
}

.plan-price span {
  display: block;
  color: #94a3b8;
  font-size: 13px;
}

.hours-control {
  margin: 2px 0 24px;
  padding: 18px;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 15px;
  background: rgba(15, 23, 42, 0.62);
}

.hours-control-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 13px;
}

.hours-control label {
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 600;
}

.hours-output {
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: 50px;
  background: rgba(56, 189, 248, 0.13);
  color: #7dd3fc;
  font-size: 13px;
  font-weight: 700;
}

.hours-slider {
  width: 100%;
  height: 7px;
  border-radius: 50px;
  accent-color: #38bdf8;
  cursor: pointer;
}

.hours-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  color: #64748b;
  font-size: 10px;
}

.hours-note {
  margin: 10px 0 0 !important;
  color: #94a3b8 !important;
  font-size: 11px;
  text-align: center;
}

.pricing-feature-list,
.not-included-list,
.availability-box ul,
.estimate-items {
  list-style: none;
}

.pricing-feature-list {
  flex: 1;
  margin-bottom: 24px;
}

.pricing-feature-list li,
.not-included-list li,
.availability-box li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 23px;
  color: #dbeafe;
  font-size: 14px;
}

.pricing-feature-list li::before,
.availability-box li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #38bdf8;
  font-weight: 700;
}

.not-included-list li::before {
  content: "\2013";
  position: absolute;
  left: 2px;
  color: #64748b;
}

.includes-label {
  margin-bottom: 10px !important;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 600;
}

.project-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.plan-toggle {
  width: 100%;
  margin-top: auto;
  padding: 13px 18px;
  border: 1px solid rgba(56, 189, 248, 0.5);
  border-radius: 11px;
  background: rgba(56, 189, 248, 0.08);
  color: #e0f2fe;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

.plan-toggle:hover,
.plan-toggle[aria-pressed="true"] {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  border-color: transparent;
  color: #ffffff;
}

.estimate-card {
  position: sticky;
  top: 24px;
  padding: 28px;
  border: 1px solid rgba(56, 189, 248, 0.34);
  border-radius: 22px;
  background: rgba(2, 6, 23, 0.94);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.35);
}

.estimate-card h3 {
  margin: 8px 0 18px;
  font-size: 25px;
}

.estimate-empty {
  padding: 18px;
  border: 1px dashed rgba(148, 163, 184, 0.28);
  border-radius: 12px;
  color: #94a3b8;
  font-size: 14px;
}

.estimate-items {
  display: grid;
  gap: 11px;
}

.estimate-items li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.13);
  color: #dbeafe;
  font-size: 13px;
}

.estimate-items strong {
  flex-shrink: 0;
  color: #7dd3fc;
}

.estimate-totals {
  display: grid;
  gap: 18px;
  margin-top: 22px;
  padding: 22px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.estimate-totals div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 2px 12px;
}

.estimate-totals span,
.estimate-totals small {
  color: #94a3b8;
  font-size: 12px;
}

.estimate-totals strong {
  color: #38bdf8;
  font-size: 26px;
}

.estimate-totals small {
  grid-column: 1 / -1;
  text-align: right;
}

.estimate-note {
  margin: 18px 0;
  color: #94a3b8;
  font-size: 12px;
  line-height: 1.6;
}

.estimate-cta {
  width: 100%;
  text-align: center;
}

.clear-estimate {
  width: 100%;
  margin-top: 12px;
  border: 0;
  background: transparent;
  color: #94a3b8;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

.clear-estimate:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.availability-box,
.custom-package-box {
  margin-top: 28px;
  padding: 32px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.82);
}

.availability-box {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 30px;
  align-items: center;
}

.availability-box h3,
.custom-package-box h3 {
  font-size: 24px;
}

.availability-box ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px 18px;
}

.custom-package-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(14, 165, 233, 0.08));
}

.custom-package-box span {
  color: #38bdf8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.custom-package-box p {
  margin-top: 7px;
  color: #cbd5e1;
}

.timeline {
  display: grid;
  gap: 22px;
}

.timeline-card {
  padding: 30px;
  transition: 0.3s;
}

.timeline-card h3 {
  font-size: 24px;
  color: #38bdf8;
}

.timeline-card span {
  display: inline-block;
  margin: 6px 0 12px;
  color: #ffffff;
  font-weight: 600;
}

.timeline-card p {
  color: #cbd5e1;
}

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

.approach-card {
  padding: 30px;
  transition: 0.3s;
}

.approach-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: #38bdf8;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.approach-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.approach-card p {
  color: #e2e8f0;
  font-size: 16px;
  margin-bottom: 20px;
}

.results-section {
  background: rgba(15, 23, 42, 0.34);
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 26px;
  align-items: center;
}

.outcome-card {
  min-height: 330px;
  padding: 38px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.84);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.outcome-card:hover {
  transform: translateY(-6px);
}

.before-card {
  border-color: rgba(248, 113, 113, 0.25);
}

.after-card {
  border-color: rgba(52, 211, 153, 0.3);
  background: linear-gradient(145deg, rgba(5, 150, 105, 0.08), rgba(15, 23, 42, 0.88));
}

.outcome-label {
  display: inline-block;
  margin-bottom: 15px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.after-card .outcome-label {
  color: #6ee7b7;
}

.outcome-card h3 {
  margin-bottom: 22px;
  font-size: 25px;
}

.outcome-card ul {
  display: grid;
  gap: 14px;
  list-style: none;
}

.outcome-card li {
  position: relative;
  padding-left: 28px;
  color: #dbeafe;
}

.before-card li::before,
.after-card li::before {
  position: absolute;
  left: 0;
  font-weight: 700;
}

.before-card li::before {
  content: "\00d7";
  color: #f87171;
}

.after-card li::before {
  content: "\2713";
  color: #34d399;
}

.outcome-arrow {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(56, 189, 248, 0.4);
  border-radius: 50%;
  color: #38bdf8;
  font-size: 26px;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.16);
}

.process-section {
  overflow: hidden;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.process-step {
  position: relative;
  min-height: 230px;
  padding: 28px 22px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.8);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.process-step:not(:last-child)::after {
  content: "\2192";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -19px;
  color: #38bdf8;
  font-size: 21px;
  transform: translateY(-50%);
}

.process-step:hover {
  transform: translateY(-7px);
  border-color: rgba(56, 189, 248, 0.55);
  box-shadow: 0 18px 45px rgba(14, 165, 233, 0.14);
}

.process-step span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.1);
  color: #7dd3fc;
  font-size: 13px;
  font-weight: 700;
}

.process-step h3 {
  margin: 20px 0 10px;
  font-size: 18px;
}

.process-step p {
  color: #94a3b8;
  font-size: 13px;
}

.reviews-section {
  background:
    radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.12), transparent 38%),
    rgba(15, 23, 42, 0.34);
}

.testimonial-card {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 44px;
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 26px;
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.3);
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-photo {
  display: grid;
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  place-items: center;
  border: 2px solid rgba(56, 189, 248, 0.45);
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #ffffff;
  font-weight: 700;
}

.testimonial-profile h3 {
  font-size: 19px;
}

.testimonial-profile p {
  color: #94a3b8;
  font-size: 13px;
}

.testimonial-stars {
  margin: 26px 0 14px;
  color: #fbbf24;
  letter-spacing: 4px;
}

.testimonial-card blockquote {
  max-width: 650px;
  color: #e2e8f0;
  font-size: 21px;
  line-height: 1.7;
}

.consultation-box {
  position: relative;
  overflow: hidden;
  border-color: rgba(56, 189, 248, 0.38);
  background:
    radial-gradient(circle at 80% 15%, rgba(56, 189, 248, 0.16), transparent 28%),
    rgba(15, 23, 42, 0.9);
}

.no-obligation {
  display: inline-block;
  margin-top: 6px;
  color: #7dd3fc;
  font-size: 13px;
}

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

.timeline-card.reveal-ready:nth-child(odd) {
  transform: translateX(-34px);
}

.timeline-card.reveal-ready:nth-child(even) {
  transform: translateX(34px);
}

.reveal-ready.reveal-visible,
.timeline-card.reveal-ready.reveal-visible {
  opacity: 1;
  transform: none;
}

.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tools-grid span {
  padding: 10px 16px;
  border-radius: 50px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.24);
  color: #e2e8f0;
  font-size: 14px;
}

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

.contact-box .contact-buttons {
  justify-content: center;
}

.site-header {
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(2, 6, 23, 0.9);
}

.contact-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 25%, rgba(14, 165, 233, 0.16), transparent 30%),
    radial-gradient(circle at 88% 80%, rgba(220, 38, 38, 0.12), transparent 28%),
    #020617;
}

.contact-page-main {
  padding: 52px 0 68px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-page-copy {
  position: sticky;
  top: 32px;
  padding: 20px 0 0;
}

.contact-page-copy h1 {
  max-width: 540px;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.1;
}

.contact-page-copy > p {
  max-width: 540px;
  margin-top: 22px;
  color: #cbd5e1;
  font-size: 17px;
}

.consultation-points {
  display: grid;
  gap: 14px;
  margin-top: 30px;
  list-style: none;
}

.consultation-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e2e8f0;
}

.consultation-points li::before {
  content: "\2713";
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 50%;
  color: #7dd3fc;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.28);
}

.whatsapp-contact {
  max-width: 470px;
  margin-top: 30px;
  padding: 20px;
  border: 1px solid rgba(34, 197, 94, 0.26);
  border-radius: 18px;
  background: rgba(22, 101, 52, 0.1);
}

.whatsapp-contact > p {
  margin-bottom: 12px;
  color: #e2e8f0;
  font-weight: 600;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 16px;
  border: 1px solid rgba(74, 222, 128, 0.42);
  border-radius: 12px;
  color: #ffffff;
  background: rgba(22, 163, 74, 0.18);
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-link span {
  font-weight: 600;
}

.whatsapp-link strong {
  color: #86efac;
  font-size: 13px;
  white-space: nowrap;
}

.whatsapp-link:hover {
  transform: translateY(-3px);
  border-color: rgba(74, 222, 128, 0.75);
  box-shadow: 0 0 28px rgba(34, 197, 94, 0.22);
}

.whatsapp-contact small {
  display: block;
  margin-top: 11px;
  color: #94a3b8;
  line-height: 1.6;
}

.back-home {
  display: inline-block;
  margin-top: 32px;
  color: #7dd3fc;
  text-decoration: none;
  font-weight: 600;
}

.back-home:hover {
  color: #bae6fd;
}

.enquiry-form {
  padding: 34px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.78);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
}

.form-heading {
  margin-bottom: 26px;
}

.form-heading h2 {
  font-size: 28px;
}

.form-heading p {
  margin-top: 6px;
  color: #94a3b8;
}

.selected-package-summary {
  margin-bottom: 28px;
  padding: 22px;
  border: 1px solid rgba(56, 189, 248, 0.34);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.16), transparent 45%),
    rgba(2, 6, 23, 0.72);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.selected-package-summary[hidden],
.selected-package-totals [hidden] {
  display: none;
}

.selected-package-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.selected-package-heading span {
  color: #7dd3fc;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.selected-package-heading h3 {
  margin-top: 4px;
  font-size: 21px;
}

.selected-package-heading a {
  flex-shrink: 0;
  padding: 7px 11px;
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 9px;
  color: #bae6fd;
  background: rgba(56, 189, 248, 0.07);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.selected-package-heading a:hover {
  transform: translateY(-2px);
  border-color: rgba(125, 211, 252, 0.7);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.18);
}

.selected-package-items {
  display: grid;
  gap: 13px;
  margin-top: 17px;
  list-style: none;
}

.selected-package-items li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.selected-package-items li > div {
  display: grid;
  gap: 3px;
}

.selected-package-items strong {
  color: #e0f2fe;
  font-size: 14px;
}

.selected-package-items small {
  color: #94a3b8;
  font-size: 11px;
}

.selected-package-items li > span {
  flex-shrink: 0;
  color: #7dd3fc;
  font-size: 13px;
  font-weight: 600;
}

.selected-package-totals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 17px;
}

.selected-package-totals > div {
  display: grid;
  gap: 2px;
  padding: 13px;
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 11px;
  background: rgba(56, 189, 248, 0.06);
}

.selected-package-totals span,
.selected-package-totals small {
  color: #94a3b8;
  font-size: 11px;
}

.selected-package-totals strong {
  color: #38bdf8;
  font-size: 19px;
}

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

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

.form-field.full-width {
  grid-column: 1 / -1;
}

.form-field label {
  color: #e2e8f0;
  font-size: 14px;
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 11px;
  padding: 13px 14px;
  color: #f8fafc;
  background: rgba(2, 6, 23, 0.72);
  font: inherit;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-field select {
  color-scheme: dark;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.12);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
  color: #cbd5e1;
  font-size: 13px;
}

.form-consent input {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  accent-color: #dc2626;
}

.submit-button {
  width: 100%;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.submit-button:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.form-fallback {
  width: 100%;
  margin-top: 12px;
  padding: 12px 18px;
  border: 1px solid rgba(56, 189, 248, 0.42);
  border-radius: 11px;
  color: #e0f2fe;
  background: rgba(56, 189, 248, 0.08);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-fallback[hidden] {
  display: none;
}

.form-fallback:hover {
  transform: translateY(-2px);
  border-color: rgba(125, 211, 252, 0.72);
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.2);
}

.form-status {
  min-height: 26px;
  margin-top: 14px;
  color: #bae6fd;
  text-align: center;
  font-size: 14px;
}

.form-status.is-error {
  color: #fca5a5;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

footer {
  padding: 24px 0;
  background: #020617;
  color: #94a3b8;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 11px;
  color: #e0f2fe;
  background: rgba(56, 189, 248, 0.08);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.back-to-top span {
  color: #7dd3fc;
  font-size: 19px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.back-to-top:hover {
  transform: translateY(-3px);
  border-color: rgba(125, 211, 252, 0.7);
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.22);
}

.back-to-top:hover span {
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .navbar {
    padding: 24px 0;
    flex-direction: column;
    gap: 18px;
  }

  .navbar ul {
    justify-content: center;
    gap: 16px;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 30px;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

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

  .showcase-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .showcase-copy {
    max-width: 680px;
  }

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

  .process-step:not(:last-child)::after {
    display: none;
  }

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

  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .estimate-card {
    position: static;
  }

  .hero h1 {
    font-size: 44px;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-page-copy {
    position: static;
    padding: 0;
  }
}

@media (max-width: 600px) {
  .container {
    width: 92%;
  }

  section {
    padding: 52px 0;
  }

  .navbar {
    position: relative;
    flex-direction: row;
    padding: 18px 0;
  }

  .logo img {
    width: 158px;
  }

  .menu-button {
    display: block;
  }

  .navbar ul {
    display: none;
    position: absolute;
    z-index: 10;
    top: 76px;
    left: 0;
    right: 0;
    padding: 18px;
    gap: 4px;
    flex-direction: column;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 16px;
    background: rgba(2, 6, 23, 0.98);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.38);
  }

  .navbar ul.is-open {
    display: flex;
  }

  .navbar li,
  .navbar ul a {
    width: 100%;
  }

  .navbar ul a {
    display: block;
    padding: 10px 12px;
    font-size: 13px;
  }

  .hero h1 {
    font-size: 36px;
  }

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

  .contact-page-main {
    padding: 32px 0 52px;
  }

  .contact-page-copy h1 {
    font-size: 40px;
  }

  .enquiry-form {
    padding: 24px 20px;
    border-radius: 19px;
  }

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

  .selected-package-heading,
  .selected-package-items li {
    flex-direction: column;
  }

  .selected-package-heading a {
    align-self: flex-start;
  }

  .form-field.full-width {
    grid-column: auto;
  }

  .whatsapp-link {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .profile-card {
    width: 100%;
  }

  .profile-card img {
    width: 190px;
    height: 190px;
  }

  .brand-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .pricing-catalog,
  .project-details,
  .availability-box,
  .availability-box ul {
    grid-template-columns: 1fr;
  }

  .pricing-card.project-plan {
    grid-column: auto;
  }

  .pricing-card.featured-plan,
  .pricing-card.featured-plan:hover {
    transform: none;
  }

  .device-stage {
    min-height: 330px;
  }

  .desktop-device {
    width: 92%;
    height: 245px;
  }

  .tablet-device {
    right: 0;
    bottom: 32px;
    height: 210px;
  }

  .phone-device {
    left: 7%;
    min-width: 90px;
    height: 175px;
  }

  .concept-label {
    display: none;
  }

  .before-after-grid,
  .process-track {
    grid-template-columns: 1fr;
  }

  .outcome-arrow {
    margin: -8px auto;
    transform: rotate(90deg);
  }

  .outcome-card {
    min-height: 0;
    padding: 28px;
  }

  .testimonial-card {
    padding: 28px;
  }

  .testimonial-card blockquote {
    font-size: 17px;
  }

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

  .glass-box,
  .contact-box,
  .service-card,
  .timeline-card,
  .approach-card {
    padding: 26px;
  }

  .section-title {
    font-size: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal-ready,
  .timeline-card.reveal-ready {
    opacity: 1;
    transform: none;
  }
}
