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

:root {
  --brand: #0d6e7c;
  --brand-dark: #094f5a;
  --brand-deep: #062f36;
  --brand-light: #e0f4f7;
  --accent: #f4a847;
  --bg: #f5f8f9;
  --surface: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --border: #dce8ea;
  --error-bg: #fff1f0;
  --error: #c0392b;
  --radius: 14px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* ── LEFT PANEL ── */
.panel-left {
  background: var(--brand-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.panel-left::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 60px solid rgba(255, 255, 255, 0.04);
  top: -100px;
  right: -100px;
}
.panel-left::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 40px solid rgba(255, 255, 255, 0.04);
  bottom: -80px;
  left: -80px;
}

.brand-logo {
  width: 390px;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.brand-name {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}

.brand-tagline {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  max-width: 260px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.brand-divider {
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 1.8rem auto;
  position: relative;
  z-index: 1;
}

.brand-features {
  list-style: none;
  position: relative;
  z-index: 1;
}
.brand-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.brand-features li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── RIGHT PANEL ── */
.panel-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.form-box {
  width: 100%;
  max-width: 420px;
}

.form-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.error-box {
  background: var(--error-bg);
  border: 1px solid #fac9c4;
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--error);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.error-box::before {
  content: '⚠';
  font-size: 1rem;
}

.field {
  margin-bottom: 1.25rem;
}

label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.45rem;
  letter-spacing: 0.3px;
}

input[type='email'],
input[type='password'],
input[type='text'] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--surface);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
}

input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(13, 110, 124, 0.12);
}

.forgot {
  display: block;
  text-align: right;
  font-size: 0.8rem;
  color: var(--brand);
  text-decoration: none;
  margin-top: -0.75rem;
  margin-bottom: 1.5rem;
}
.forgot:hover {
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  padding: 0.85rem;
  background: var(--brand);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  letter-spacing: 0.3px;
  transition:
    background 0.2s,
    transform 0.1s;
}
.btn-submit:hover {
  background: var(--brand-dark);
}
.btn-submit:active {
  transform: scale(0.99);
}

.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: var(--muted);
  font-size: 0.8rem;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.signup-link {
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
}
.signup-link a {
  color: var(--brand);
  font-weight: 500;
  text-decoration: none;
}
.signup-link a:hover {
  text-decoration: underline;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  body {
    grid-template-columns: 1fr;
  }
  .panel-left {
    display: none;
  }
  .panel-right {
    padding: 1.5rem;
    align-items: flex-start;
    padding-top: 3rem;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

:root {
  --brand: #0d6e7c;
  --brand-dark: #094f5a;
  --brand-deep: #062f36;
  --accent: #f4a847;
  --accent2: #e8773a;
  --bg: #f7f9f8;
  --surface: #ffffff;
  --text: #0f1c1e;
  --muted: #5a7070;
  --border: #d8e8ea;
  --nav-h: 70px;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ══════════════════════════════════
   NAVBAR
══════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 20px rgba(6, 47, 54, 0.07);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.nav-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-deep);
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  padding: 0.45rem 1rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  transition:
    background 0.15s,
    color 0.15s;
}
.nav-links a:hover,
.nav-links a.active {
  background: #e6f4f6;
  color: var(--brand);
}

.nav-cta {
  padding: 0.55rem 1.4rem;
  background: var(--brand);
  color: #fff;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition:
    background 0.2s,
    transform 0.1s;
}
.nav-cta:hover {
  background: var(--brand-dark);
}

.nav-ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}
.nav-ham.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-ham.open span:nth-child(2) {
  opacity: 0;
}
.nav-ham.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  gap: 2px;
  padding: 1rem;
  z-index: 99;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  transition:
    background 0.12s,
    color 0.12s;
}
.mobile-menu a:hover {
  background: #e6f4f6;
  color: var(--brand);
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 4rem) 5% 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 60% at 70% 40%,
      rgba(13, 110, 124, 0.08) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 50% at 20% 80%,
      rgba(244, 168, 71, 0.07) 0%,
      transparent 60%
    );
  z-index: 0;
}

/* floating shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}
.hs1 {
  width: 320px;
  height: 320px;
  background: rgba(13, 110, 124, 0.06);
  top: -60px;
  right: 10%;
  animation: float1 8s ease-in-out infinite;
}
.hs2 {
  width: 180px;
  height: 180px;
  background: rgba(244, 168, 71, 0.09);
  bottom: 10%;
  right: 20%;
  animation: float2 6s ease-in-out infinite;
}
.hs3 {
  width: 80px;
  height: 80px;
  background: rgba(13, 110, 124, 0.12);
  top: 30%;
  left: 5%;
  animation: float3 7s ease-in-out infinite;
}

@keyframes float1 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
@keyframes float2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes float3 {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.08);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e6f4f6;
  border: 1px solid rgba(13, 110, 124, 0.2);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--brand-deep);
  margin-bottom: 0.6rem;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-title em {
  font-style: italic;
  color: var(--brand);
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
  padding: 0.75rem 2rem;
  background: var(--brand);
  color: #fff;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition:
    background 0.2s,
    transform 0.1s,
    box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(13, 110, 124, 0.3);
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(13, 110, 124, 0.4);
}

.btn-secondary {
  padding: 0.75rem 2rem;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}
.btn-secondary:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: #e6f4f6;
}

/* hero visual */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-card-stack {
  position: relative;
  width: 340px;
  height: 400px;
}

.label-card {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(6, 47, 54, 0.18);
}

.lc-main {
  width: 260px;
  height: 320px;
  background: var(--brand-deep);
  top: 40px;
  left: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  animation: float1 7s ease-in-out infinite;
}

.lc-main-inner {
  width: 200px;
  height: 240px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.lc-logo-box {
  width: 70px;
  height: 70px;
  background: rgba(244, 168, 71, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lc-logo-box img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.lc-text {
  text-align: center;
}
.lc-text span {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}
.lc-text small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.65rem;
}

.lc-float {
  width: 130px;
  height: 90px;
  background: #fff;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  animation: float2 6s ease-in-out infinite;
}
.lc-float-bar {
  width: 80px;
  height: 8px;
  background: var(--accent);
  border-radius: 4px;
}
.lc-float-bar2 {
  width: 60px;
  height: 6px;
  background: var(--border);
  border-radius: 4px;
}
.lc-float-bar3 {
  width: 50px;
  height: 6px;
  background: var(--border);
  border-radius: 4px;
}

.lc-accent {
  width: 100px;
  height: 70px;
  background: var(--accent);
  bottom: 20px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float3 8s ease-in-out infinite;
}
.lc-accent svg {
  width: 36px;
  height: 36px;
  fill: var(--brand-deep);
  opacity: 0.9;
}

/* stats row */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  animation: fadeUp 0.6s 0.4s ease both;
}
.stat {
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand-deep);
}
.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px;
}

/* ══════════════════════════════════
   SECTION COMMON
══════════════════════════════════ */
section {
  padding: 5rem 5%;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--brand-deep);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 560px;
}

/* ══════════════════════════════════
   MARQUEE / TRUST BAR
══════════════════════════════════ */
.trust-bar {
  background: var(--brand-deep);
  padding: 1rem 0;
  overflow: hidden;
}
.trust-track {
  display: flex;
  gap: 3rem;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.trust-track span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
}
.trust-track span.dot {
  color: var(--accent);
  font-size: 1rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════
   SERVICES
══════════════════════════════════ */
.services {
  background: var(--surface);
}

.services-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  border-radius: 18px;
  padding: 2rem;
  border: 1px solid var(--border);
  background: var(--surface);
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(6, 47, 54, 0.1);
  border-color: rgba(13, 110, 124, 0.25);
}
.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #e6f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.service-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--brand);
  fill: none;
  stroke-width: 1.8;
}

.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-deep);
  margin-bottom: 0.6rem;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand);
  transition: gap 0.2s;
}
.service-link:hover {
  gap: 10px;
}
.service-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

/* featured card */
.service-card.featured {
  background: var(--brand-deep);
  border-color: transparent;
}
.service-card.featured .service-icon {
  background: rgba(255, 255, 255, 0.1);
}
.service-card.featured .service-icon svg {
  stroke: rgba(255, 255, 255, 0.9);
}
.service-card.featured .service-name {
  color: #fff;
}
.service-card.featured .service-desc {
  color: rgba(255, 255, 255, 0.6);
}
.service-card.featured .service-link {
  color: var(--accent);
}
.service-card.featured::before {
  background: var(--accent);
}

/* ══════════════════════════════════
   ABOUT
══════════════════════════════════ */
.about {
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-frame {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 24px;
  background: var(--brand-deep);
  overflow: hidden;
  position: relative;
}

.about-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.03) 0px,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 20px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.03) 0px,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 20px
    );
}

.about-img-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.about-big-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.about-label-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 2rem;
}

.label-pill {
  padding: 0.3rem 0.9rem;
  background: rgba(244, 168, 71, 0.15);
  border: 1px solid rgba(244, 168, 71, 0.3);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(244, 168, 71, 0.4);
}
.about-badge-float strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--brand-deep);
}
.about-badge-float span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand-deep);
  opacity: 0.75;
}

.about-content .section-desc {
  margin-bottom: 2rem;
}

.about-checks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.about-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
}
.check-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-dot svg {
  width: 12px;
  height: 12px;
  stroke: #fff;
  stroke-width: 2.5;
  fill: none;
}

/* ══════════════════════════════════
   TESTIMONIAL
══════════════════════════════════ */
.testimonial-section {
  background: var(--brand-deep);
  padding: 5rem 5%;
  text-align: center;
}

.testimonial-section .section-label {
  color: var(--accent);
}
.testimonial-section .section-title {
  color: #fff;
  margin: 0 auto 3rem;
  max-width: 500px;
}

.testimonial-card {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem 3rem;
  position: relative;
}

.tq-mark {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.25;
  position: absolute;
  top: -10px;
  left: 2rem;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brand-deep);
}
.author-info strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}
.author-info span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

.stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

/* ══════════════════════════════════
   CTA
══════════════════════════════════ */
.cta-section {
  background: var(--bg);
  padding: 5rem 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.cta-card {
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.cta-card.light {
  background: var(--surface);
  border: 1px solid var(--border);
}
.cta-card.dark {
  background: var(--brand-deep);
}

.cta-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.cta-card.light .cta-card-icon {
  background: #e6f4f6;
}
.cta-card.dark .cta-card-icon {
  background: rgba(255, 255, 255, 0.1);
}

.cta-card-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.8;
  fill: none;
}
.cta-card.light .cta-card-icon svg {
  stroke: var(--brand);
}
.cta-card.dark .cta-card-icon svg {
  stroke: rgba(255, 255, 255, 0.9);
}

.cta-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.cta-card.light .cta-label {
  color: var(--brand);
}
.cta-card.dark .cta-label {
  color: var(--accent);
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.cta-card.light .cta-title {
  color: var(--brand-deep);
}
.cta-card.dark .cta-title {
  color: #fff;
}

.cta-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.cta-card.light .cta-desc {
  color: var(--muted);
}
.cta-card.dark .cta-desc {
  color: rgba(255, 255, 255, 0.55);
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.7rem 1.8rem;
  background: var(--accent);
  color: var(--brand-deep);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  transition:
    background 0.2s,
    transform 0.1s;
}
.btn-accent:hover {
  background: #e09830;
  transform: translateY(-2px);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.7rem 1.8rem;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.btn-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
  background: var(--brand-deep);
  padding: 3rem 5% 2rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.15s;
}
.footer-nav a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  transition:
    border-color 0.15s,
    color 0.15s,
    background 0.15s;
}
.social-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.social-btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

/* ══════════════════════════════════
   ANIMATIONS
══════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-sub {
    margin: 0 auto 2.5rem;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-visual {
    display: none;
  }
  .about {
    grid-template-columns: 1fr;
    padding: 4rem 5%;
  }
  .about-visual {
    display: none;
  }
  .cta-section {
    grid-template-columns: 1fr;
  }
  .services-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-ham {
    display: flex;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: calc(var(--nav-h) + 2rem);
    padding-bottom: 3rem;
  }
  section {
    padding: 3.5rem 5%;
  }
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
  .cta-card {
    padding: 2rem;
  }
}
.trust-bar {
  position: sticky;
  top: 60px;
  left: 0;
  width: 100%;
  z-index: 90; /* Ensures it stays on top of other content */
}
.steps {
  margin-top: 2rem;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 280px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 1.4rem;
}

.step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--brand-deep);
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-text strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 2px;
}

.step-text span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
}
/* ── RIGHT PANEL ── */
.panel-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow-y: auto;
}

.form-box {
  width: 100%;
  max-width: 420px;
  padding: 2rem 0;
}

.form-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.error-box {
  background: var(--error-bg);
  border: 1px solid #fac9c4;
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--error);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.error-box::before {
  content: '⚠';
  font-size: 1rem;
}

.success-box {
  background: var(--success-bg);
  border: 1px solid #bbf7d0;
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--success);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}
.success-box a {
  color: var(--brand);
  font-weight: 500;
  text-decoration: none;
}
.success-box a:hover {
  text-decoration: underline;
}

.field {
  margin-bottom: 1.1rem;
}

label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.45rem;
  letter-spacing: 0.3px;
}

input[type='email'],
input[type='password'],
input[type='text'] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--surface);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
}

input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(13, 110, 124, 0.12);
}

.hint {
  font-size: 0.77rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

/* Password strength bar */
.strength-bar {
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  margin-top: 0.5rem;
  overflow: hidden;
}
.strength-fill {
  height: 100%;
  border-radius: 2px;
  width: 0%;
  transition:
    width 0.3s,
    background 0.3s;
}

.terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
}
.terms input[type='checkbox'] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--brand);
  flex-shrink: 0;
}
.terms a {
  color: var(--brand);
  text-decoration: none;
}
.terms a:hover {
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  padding: 0.85rem;
  background: var(--brand);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  letter-spacing: 0.3px;
  transition:
    background 0.2s,
    transform 0.1s;
}
.btn-submit:hover {
  background: var(--brand-dark);
}
.btn-submit:active {
  transform: scale(0.99);
}

.login-link {
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 1.5rem;
}
.login-link a {
  color: var(--brand);
  font-weight: 500;
  text-decoration: none;
}
.login-link a:hover {
  text-decoration: underline;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  body {
    grid-template-columns: 1fr;
  }
  .panel-left {
    display: none;
  }
  .panel-right {
    padding: 1.5rem;
    align-items: flex-start;
    padding-top: 3rem;
  }
}
