@font-face {
  font-family: 'Rubik';
  src: url('./fonts/rubik/Rubik-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Rubik';
  src: url('./fonts/rubik/Rubik-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Rubik';
  src: url('./fonts/rubik/Rubik-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Rubik';
  src: url('./fonts/rubik/Rubik-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --white: #ffffff;
  --beige: #eef4ff;
  --surface-blue-0: #f4f8ff;
  --surface-blue-1: #eef4ff;
  --surface-blue-2: #e9f2ff;
  --surface-blue-3: #dff3ff;
  --surface-blue-4: #d9ecff;
  --text: #102a43;
  --muted: #4a6176;
  --blue: #123a70;
  --teal: #00a8b5;
  --shadow: 0 12px 28px rgba(16, 42, 67, 0.09);
  --radius: 18px;
  --header-offset: 90px;
  --domain-header-h: 94px;
  --domain-content-h: 210px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

body:has(.site-header) {
  padding-top: var(--header-offset);
}

body.site-public {
  opacity: 1;
  transition: opacity 0.28s ease;
}

body.site-public.page-transition-leaving {
  opacity: 1;
}

body:not(.site-ready) .site-header,
body:not(.site-ready) .dashboard-navbar,
body.site-intro-active .site-header,
body.site-route-leaving .site-header,
body.site-intro-active .dashboard-navbar {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.site-ready .site-header,
body.site-ready .dashboard-navbar {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.site-ready.site-intro-active .site-header,
body.site-ready.site-intro-active .dashboard-navbar {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.site-ready.site-route-leaving .site-header,
body.site-ready.site-route-leaving .dashboard-navbar {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.section {
  padding: 60px 0;
}

.section[id] {
  scroll-margin-top: calc(var(--header-offset) + 14px);
}

.site-header,
main[id],
section[id] {
  scroll-margin-top: calc(var(--header-offset) + 14px);
}

.section-alt {
  background:
    radial-gradient(circle at 12% 16%, rgba(0, 168, 181, 0.08), transparent 28%),
    radial-gradient(circle at 88% 4%, rgba(139, 123, 211, 0.12), transparent 30%),
    linear-gradient(135deg, var(--surface-blue-0) 0%, var(--surface-blue-1) 42%, var(--surface-blue-3) 100%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(16, 42, 67, 0.09);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(16, 42, 67, 0.06);
  box-shadow: 0 8px 24px rgba(16, 42, 67, 0.1);
}

/* Disable fixed header during popup/modal/login/loading states */
body.page-login .site-header,
body.site-modal-open .site-header {
  position: absolute !important;
  z-index: 100 !important;
}

.nav-wrap {
  position: relative;
  min-height: 90px;
  padding: 0px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.brand-logo {
  width: clamp(128px, 16vw, 174px);
  height: 100px;
  transform: scale(0.9);
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  vertical-align: middle;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.nav-links a {
  position: relative;
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: var(--teal);
  transform: translateY(-1px);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  padding: 0.46rem 0.86rem;
  font-weight: 500 !important;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.nav-logout-btn {
  padding: 0.34rem 0.7rem;
  font-size: 0.82rem;
}

.nav-login-btn {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff !important;
}

.nav-login-btn::after {
  display: none;
}

.nav-login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(18, 58, 112, 0.22);
}

.nav-wrap-packages {
  padding-top: 0;
  padding-bottom: 0;
}

.menu-toggle {
  display: none;
  border: 0;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #fbf7f2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70vh !important;
  padding-top: 10px;
  margin-top: -20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 1rem;
  align-items: center;
  min-height: 70vh !important;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: -10px;
  min-width: 0;
}

.hero-content .eyebrow,
.hero-content .hero-program-title,
.hero-content h1,
.hero-content > .section-text,
.hero-content .hero-actions {
  opacity: 0;
  transform: translateY(40px);
  animation: heroEntrance 0.72s ease-out forwards;
  will-change: transform, opacity;
}

.hero-content .eyebrow {
  animation-delay: 0.04s;
}

.hero-content .hero-program-title {
  animation-delay: 0.1s, 0.84s;
}

.hero-content h1 {
  animation-delay: 0.18s;
}

.hero-content > .section-text {
  animation-delay: 0.24s;
}

.hero-content .hero-actions {
  animation-delay: 0.3s;
}

.hero-content h1,
.hero-content > .section-text,
.hero-content .hero-actions {
  animation-fill-mode: forwards;
}

.hero-content h1,
.hero-content p {
  margin-top: 0;
}

.hero-program-title {
  position: relative;
  display: inline-flex;
  margin: 0 0 0.7rem;
  padding: 0.58rem 0.3rem;
  border-radius: 999px;
  color: #0e2f5a;
  font-size: clamp(1rem, 2.1vw, 1.36rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  isolation: isolate;
  transform-origin: center;
  animation: heroEntrance 0.72s ease-out forwards, megthiranPulse 8s ease-in-out infinite;
}

/*.hero-program-title::before {
  content: '';
  position: absolute;
  inset: -6px -12px;
  border-radius: 999px;
  background: linear-gradient(130deg, rgba(160, 215, 255, 0.88), rgba(116, 234, 244, 0.78));
  z-index: -1;
  box-shadow: 0 10px 22px rgba(17, 66, 125, 0.16);
}

.hero-program-title::after {
  content: '';
  position: absolute;
  inset: 18% 30%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55), transparent 70%);
  filter: blur(4px);
  z-index: -1;
}*/

.eyebrow {
  margin: 0 0 0 0.4rem;
  color: var(--teal);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.hero-program {
  margin: 0 0 0.5rem;
  color: var(--blue);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  line-height: 1.2;
  font-family: 'Rubik', sans-serif;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
}

.hero h1 span {
  color: var(--teal);
}

h2,
h3 {
  font-weight: 600;
}

h4 {
  font-weight: 600;
}

p {
  font-weight: 400;
  color: var(--muted);
}

.section-text {
  color: var(--muted);
  max-width: 64ch;
}

#about .container {
  width: min(1260px, 94%);
}

.about-heading {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-content {
  max-width: 96ch;
  margin: 0 auto;
}

.about-text {
  max-width: 92ch;
  line-height: 1.9;
  margin-left: auto;
  margin-right: auto;
}

.about-marquee {
  --edge-fade: clamp(40px, 6vw, 84px);
  margin-top: 2.1rem;
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  display: flex;
  gap: 2.8rem;
  border: 1px solid rgba(16, 42, 67, 0.1);
  border-left: 0;
  border-right: 0;
  background: linear-gradient(90deg, rgba(248, 251, 255, 0.94), rgba(239, 247, 251, 0.98), rgba(248, 251, 255, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 12px 26px rgba(18, 58, 112, 0.05);
}

.about-marquee::before,
.about-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: var(--edge-fade);
  pointer-events: none;
  z-index: 1;
}

.about-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(248, 251, 255, 0) 100%);
}

.about-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(248, 251, 255, 0) 100%);
}

.about-marquee-track {
  flex-shrink: 0;
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--blue);
  font-weight: 500;
  font-size: clamp(0.95rem, 1.55vw, 1.12rem);
  letter-spacing: 0.01em;
  animation: aboutMarqueeLTR 44s linear infinite;
  white-space: nowrap;
}

.marquee-sep,
.about-marquee-track > span:nth-child(odd) {
  color: var(--teal);
  opacity: 0.92;
  font-size: 1.05em;
}

.about-marquee-track > span:nth-child(even) {
  color: var(--blue);
}

.why-section-head {
  max-width: 720px;
  margin-bottom: 1.4rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.why-card {
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow);
}

.why-card h3 {
  margin-bottom: 0.55rem;
  color: var(--blue);
  font-size: 1.08rem;
  font-weight: 600;
}

.why-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
  opacity: 0.8;
}

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

@keyframes aboutMarqueeLTR {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 2.8rem));
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.internship-opening-section {
  position: relative;
  padding: 18px 0 38px;
}

.internship-opening-shell {
  position: relative;
  min-height: min(64vh, 600px);
  display: grid;
  align-items: center;
  padding: clamp(28px, 4.6vw, 56px);
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(0, 168, 181, 0.12), transparent 26%),
    radial-gradient(circle at bottom left, rgba(18, 58, 112, 0.12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 52%, #f3f8fa 100%);
  border: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow: 0 26px 54px rgba(16, 42, 67, 0.09);
}

.internship-opening-shell::before,
.internship-opening-shell::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.internship-opening-shell::before {
  width: clamp(220px, 30vw, 380px);
  height: clamp(220px, 30vw, 380px);
  top: -10%;
  right: -8%;
  background: radial-gradient(circle, rgba(0, 168, 181, 0.14), rgba(0, 168, 181, 0));
  filter: blur(2px);
}

.internship-opening-shell::after {
  width: clamp(260px, 34vw, 420px);
  height: clamp(260px, 34vw, 420px);
  left: -10%;
  bottom: -16%;
  background: radial-gradient(circle, rgba(18, 58, 112, 0.12), rgba(18, 58, 112, 0));
}

.internship-opening-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  width: 100%;
}

.internship-opening-lead {
  max-width: 680px;
}

.internship-opening-content {
  position: relative;
  justify-self: end;
  width: min(100%, 420px);
  padding: clamp(22px, 2.8vw, 30px);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(245, 250, 252, 0.9));
  border: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow: 0 18px 38px rgba(16, 42, 67, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.internship-opening-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: clamp(22px, 2.8vw, 30px);
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 168, 181, 0.6), rgba(0, 168, 181, 0));
}

.internship-opening-eyebrow {
  margin: 0 0 1rem;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.internship-opening-title {
  margin: 0;
  color: var(--blue);
  font-size: clamp(2.25rem, 4.4vw, 4.1rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.06em;
  max-width: 11ch;
}

.internship-opening-subtitle {
  margin: 0;
  max-width: 18ch;
  color: var(--text);
  font-size: clamp(1.08rem, 1.45vw, 1.35rem);
  font-weight: 600;
  line-height: 1.35;
}

.internship-opening-note {
  margin: 0.9rem 0 0;
  max-width: 32ch;
  color: var(--muted);
  font-size: clamp(0.96rem, 1.05vw, 1.04rem);
  line-height: 1.74;
}

.internship-cta-section {
  padding-top: 20px;
  padding-bottom: 12px;
}

.internship-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 24px 28px;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 16px 34px rgba(18, 58, 112, 0.24);
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.internship-cta-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(18, 58, 112, 0.3);
  filter: saturate(1.04);
}

.internship-cta-copy {
  flex: 1;
}

.internship-cta-eyebrow {
  margin: 0 0 0.35rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.internship-cta-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.12rem, 2.2vw, 1.9rem);
  font-weight: 700;
}

.internship-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  min-height: 48px;
  padding: 0.78rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.72rem 1.25rem;
  cursor: pointer;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  will-change: transform;
}

/* Button shimmer layer for subtle premium hover glow */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transition: left 0.45s ease;
}

.btn:hover::before {
  left: 120%;
}

.btn:hover {
  transform: scale(1.05);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(18, 58, 112, 0.22);
}

.btn-secondary {
  color: var(--blue);
  background: #e8f9fb;
}

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

.hero-card,
.pricing-card,
.domain-card,
.contact-card,
.form-card,
.package-detail-card,
.package-block {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(16, 42, 67, 0.1);
  box-shadow: var(--shadow);
}

.hero-card,
.form-card {
  padding: 1.3rem;
}

.hero-visual {
  position: relative;
  z-index: 2;
  margin: 0;
  min-height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(155deg, #f8f1e9 10%, #ffffff 90%);
  box-shadow: 0 18px 36px rgba(18, 58, 112, 0.16), 0 0 28px rgba(0, 168, 181, 0.14);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-top: -10px;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(238, 244, 255, 0.35), rgba(255, 255, 255, 0.08) 45%, rgba(18, 58, 112, 0.18));
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  mix-blend-mode: multiply;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
  display: grid;
  gap: 0.55rem;
}

.feature-list li {
  display: flex;
  gap: 0.52rem;
  align-items: flex-start;
}

.feature-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  margin-top: 0.48rem;
  border-radius: 999px;
  background: var(--teal);
  flex-shrink: 0;
}

.domains-shell {
  margin-top: 1.2rem;
  position: relative;
}

.domains-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
  align-items: start;
}

.domain-card {
  position: relative;
  min-height: var(--domain-header-h);
  max-height: none;
  padding: 0;
  overflow: hidden;
  cursor: default;
  transition: box-shadow 0.28s ease, border-color 0.28s ease;
  z-index: 0;
}

.domain-card:hover {
  box-shadow: 0 14px 24px rgba(16, 42, 67, 0.12);
  z-index: 1;
}

.domain-card.active {
  border-color: rgba(0, 168, 181, 0.5);
  box-shadow: 0 16px 28px rgba(16, 42, 67, 0.15);
  z-index: 1;
}

.domain-card.active:hover {
  box-shadow: 0 16px 28px rgba(16, 42, 67, 0.15);
}

.domain-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--domain-header-h);
  height: var(--domain-header-h);
  padding: 0.45rem 3.1rem 0.45rem 0.95rem;
  width: 100%;
  cursor: pointer;
}

.domain-title {
  margin: 0;
  font-weight: 700;
  color: var(--blue);
  width: 100%;
  text-align: center;
}

.toggle-icon {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
  transition: box-shadow 0.24s ease, transform 0.24s ease;
}

.toggle-icon i {
  font-size: 0.95rem;
  line-height: 1;
}

.domain-card:hover .toggle-icon,
.domain-card.active .toggle-icon {
  box-shadow: 0 8px 16px rgba(0, 168, 181, 0.25);
  transform: translateY(-50%);
}

.domain-expand {
  margin-top: 0;
  padding: 0 0.95rem 0.85rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.38s ease, opacity 0.22s ease;
}

.domain-card.active .domain-expand {
  max-height: var(--domain-content-h);
  opacity: 1;
}

.domain-topics {
  margin: 0;
  padding: 0 0 0 1.1rem;
  display: grid;
  gap: 0.3rem;
  max-height: calc(var(--domain-content-h) - 18px);
  overflow: auto;
}

.domain-detail {
  display: none !important;
}

.card-grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
}

.pricing-card {
  padding: 1.25rem;
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease;
  will-change: transform;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.85rem;
  height: 100%;
}

.pricing-card h3 {
  margin: 0;
}

.pricing-card .btn {
  margin-top: auto;
}

.pricing-card.premium {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card.premium .pricing-card-heading {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pricing-card.premium .plan-description {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 0;
  padding-top: 0;
}

.pricing-card.premium .plan-description p {
  margin: 0;
}

.pricing-card.premium h3 {
  margin: 0;
}

.pricing-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 18px 32px rgba(16, 42, 67, 0.14);
}

.form-card {
  margin-top: 1.2rem;
}

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

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

label {
  font-size: 0.92rem;
  font-weight: 700;
}

input,
select {
  width: 100%;
  border: 1px solid rgba(16, 42, 67, 0.2);
  border-radius: 12px;
  padding: 0.76rem 0.86rem;
  font: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color 0.24s ease, box-shadow 0.24s ease;
}

input:focus,
select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 168, 181, 0.22);
}

.error-text {
  min-height: 1rem;
  color: #b83c3c;
  font-size: 0.8rem;
}

.form-message {
  min-height: 1.1rem;
  margin-top: 0.9rem;
  font-weight: 700;
}

/* Dynamic fields animate in when profile type changes */
.dynamic-fields .field-group {
  animation: fieldFadeIn 0.38s ease both;
}

@keyframes fieldFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.contact-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  grid-auto-rows: 1fr;
  align-items: stretch;

}

.contact-social-wrap {
  margin-top: 1.4rem;
}

.contact-card {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease;
  will-change: transform;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 18px 32px rgba(16, 42, 67, 0.14);
}

.icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  transition: transform 0.24s ease;
}

.contact-card:hover .icon-circle {
  transform: translateY(-2px);
}

.contact-card a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
}

.social-block {
  width: 100%;
  padding: 1.2rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(16, 42, 67, 0.1);
  box-shadow: var(--shadow);
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.social-block h3 {
  margin-bottom: 0.5rem;
  text-align: center;
}

.social-vertical {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  width: 100%;
}

.social-vertical a {
  display: flex;
  align-items: center;
  gap: 0.58rem;
  text-decoration: none;
  color: var(--text);
  border: 1px solid rgba(16, 42, 67, 0.11);
  border-radius: 12px;
  padding: 0.62rem 0.72rem;
  min-height: 66px;
  transition: transform 0.24s ease, border-color 0.24s ease, color 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.social-vertical a i {
  color: var(--blue);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.social-vertical a:hover {
  transform: scale(1.03);
  border-color: rgba(0, 168, 181, 0.45);
  color: var(--blue);
  background-color: #f8fcfc;
  box-shadow: 0 8px 16px rgba(16, 42, 67, 0.08);
}

.package-detail-card {
  padding: clamp(1.2rem, 2.8vw, 2rem);
  display: grid;
  gap: 1rem;
}

.package-hero {
  text-align: center;
  padding: 40px 20px 20px;
}

.package-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue);
}

.duration {
  margin-top: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0ea5a4;
}

.tagline {
  margin-top: 12px;
  font-size: 1rem;
  color: #6b7280;
}

.hero-buttons {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--blue);
  font-weight: 500;
}

.content-card {
  margin-top: 30px;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  display: grid;
  gap: 1.1rem;
}

.quick-summary {
  display: grid;
  gap: 0.8rem;
}

.quick-summary h4 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--blue);
}

.quick-summary p {
  margin: 0;
  color: var(--muted);
}

.mid-cta {
  margin: 25px 0;
  text-align: center;
  display: grid;
  gap: 1rem;
  justify-items: center;
  padding: 24px 20px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fbfd, #eef7f8);
  border: 1px solid rgba(14, 165, 164, 0.14);
}

.final-cta {
  margin-top: 40px;
  text-align: center;
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  padding: 32px 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, #1e3a8a, #0ea5a4);
  box-shadow: 0 18px 36px rgba(18, 58, 112, 0.18);
}

.final-cta h3,
.final-cta p {
  color: #fff;
}

.final-cta .btn-primary {
  background: #fff;
  color: var(--blue);
}

.final-cta .btn-primary:hover {
  box-shadow: 0 14px 24px rgba(255, 255, 255, 0.2);
}

.package-header-main {
  display: grid;
  gap: 0.35rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(16, 42, 67, 0.1);
}

.package-header-main h1 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
}

.package-header-main p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.7;
  color: var(--muted);
}

.package-container {
  margin-top: 30px;
}

.package-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
}

.package-left,
.package-right {
  min-width: 0;
}

.package-layout .content-card {
  margin-top: 0;
}

.package-right {
  position: static;
  top: auto;
}

.package-right .quick-summary {
  background: #f8fafc;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.left-content,
.right-content {
  min-width: 0;
}

.package-highlight {
  background: linear-gradient(180deg, #f8fbfd, #eef5fa);
  padding: 16px;
  border-radius: 12px;
  max-width: 250px;
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow: 0 10px 24px rgba(16, 42, 67, 0.08);
  margin-left: auto;
}

.package-highlight p {
  margin: 0;
}

.package-highlight p + p {
  margin-top: 0.75rem;
}

.objective,
.features {
  margin-top: 0;
}

.objective h3,
.features h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
}

.objective ul,
.features ul {
  margin: 0;
  padding-left: 18px;
}

.objective ul li,
.features ul li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.objective .package-objectives,
.features .package-features {
  display: block;
}

.objective .package-objectives li,
.features .package-features li {
  padding: 0;
  opacity: 1;
  transform: none;
}

.features .package-features li {
  display: list-item;
}

.features .package-features li::before,
.objective .package-objectives li::before {
  content: none;
}

.apply-btn {
  margin-top: 30px;
}

.package-head {
  border-bottom: 1px solid rgba(16, 42, 67, 0.1);
  padding-bottom: 0.9rem;
}

.package-head h1 {
  margin-bottom: 0;
  font-size: 3rem;
}

.package-subtitle {
  margin-top: 0.6rem;
  margin-bottom: 0;
  font-size: 1rem;
  color: var(--muted);
}

.package-block {
  padding: 1rem 1.1rem;
  box-shadow: none;
  border: 0;
}

.package-desc .desc p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.package-features-box {
  border: 1px solid rgba(16, 42, 67, 0.1);
  border-radius: 14px;
  background: linear-gradient(180deg, #fbfdff, #f7fbfc);
  padding: 1rem 1.1rem;
}

.package-block h2 {
  margin-bottom: 0.8rem;
}

.package-objectives,
.package-features {
  margin: 0;
  padding-left: 3rem;
  display: grid;
  gap: 0.65rem;
}

.package-objectives li,
.package-features li {
  position: relative;
  padding-left: 0;
  color: var(--muted);
}

.package-objectives li::before,
.package-features li::before {
  content: none;
}

.package-features li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 0.24rem 0;
  line-height: 1.6;
  text-align: left;
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.24s ease, color 0.24s ease, opacity 0.34s ease;
}

.package-features li::before {
  content: '•';
  color: var(--teal);
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
}

.package-features li.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--line-index, 0) * 65ms);
}

.package-features li:hover {
  color: var(--blue);
  transform: translateY(-1px);
}

.package-actions {
  padding-top: 0.2rem;
}

.btn.primary {
  background: linear-gradient(135deg, #1e3a8a, #0ea5a4);
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
}

.btn.secondary {
  border: 1px solid #0ea5a4;
  color: #0ea5a4;
  background: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
}

.mid-cta .btn.primary,
.final-cta .btn.primary {
  padding: 12px 20px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .package-layout {
    grid-template-columns: 1fr;
  }

  .content-card {
    padding: 22px 18px;
  }

  .trust-points {
    gap: 12px;
  }

  .package-right {
    position: static;
  }
}

.repeat-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.repeat-reveal.reveal-left {
  transform: translateX(-20px);
}

.repeat-reveal.reveal-right {
  transform: translateX(20px);
}

.repeat-reveal.reveal-up {
  transform: translateY(16px);
}

.repeat-reveal.reveal-zoom {
  transform: translateY(16px) scale(0.96);
}

.repeat-reveal.is-visible {
  opacity: 1 !important;
  transform: translateX(0) translateY(0) scale(1) !important;
}

.footer-cta-wrap {
  position: relative;
  padding: 0 0 0;
  margin-top: 24px;
  z-index: 1;
}

.footer-cta-banner {
  position: relative;
  max-width: 960px;
  margin: 0 auto -48px;
  padding: 26px 28px;
  text-align: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 18px 38px rgba(18, 58, 112, 0.34);
}

.footer-cta-banner::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.footer-cta-eyebrow {
  margin: 0 0 0.4rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-cta-banner h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 700;
}

.site-footer {
  position: relative;
  padding: 110px 0 28px;
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at top center, rgba(0, 168, 181, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(18, 58, 112, 1) 0%, rgba(16, 42, 67, 1) 100%);
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.footer-shell {
  position: relative;
  padding: 38px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: clamp(28px, 4vw, 72px);
  align-items: start;
}

.footer-column {
  min-width: 0;
}

.footer-brand,
.footer-heading {
  margin: 0 0 0.9rem;
  color: var(--white);
}

.footer-brand {
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  letter-spacing: 0.01em;
}

.footer-heading {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-description {
  margin: 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact-list {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.85rem;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  width: fit-content;
  max-width: 100%;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-contact-link:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-contact-link span:last-child {
  overflow-wrap: anywhere;
}

.footer-contact-icon {
  width: 35px;
  height: 35px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 10px 20px rgba(0, 168, 181, 0.18);
  color: var(--white);
  flex-shrink: 0;
}

.footer-nav-links {
  display: grid;
  gap: 0.9rem;
}

.footer-nav-links a,
.footer-bottom-links a {
  position: relative;
  width: fit-content;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.25s ease;
}

.footer-nav-links a::after,
.footer-bottom-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--white));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.footer-nav-links a:hover,
.footer-bottom-links a:hover {
  color: var(--white);
}

.footer-nav-links a:hover::after,
.footer-bottom-links a:hover::after {
  transform: scaleX(1);
}

.footer-social-links {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-social-links a {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.footer-social-links a:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 14px 24px rgba(0, 168, 181, 0.22);
}

.footer-social-links i {
  font-size: 1.1rem;
}

.footer-bottom-bar {
  margin-top: 34px;
  padding: 18px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom-bar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.25rem;
}

.process-steps {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0.85rem;
  align-items: stretch;
}

.process-step {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(16, 42, 67, 0.1);
  box-shadow: var(--shadow);
  padding: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease;
  will-change: transform;
}

.process-step:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 18px 32px rgba(16, 42, 67, 0.14);
}

.section-head {
  display: grid;
  gap: 0.4rem;
}

.step-meta {
  margin: 0 0 0.28rem;
  color: var(--blue);
  font-weight: 500;
}

.step-badge {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  font-weight: 700;
}

.process-step p {
  margin: 0;
}

.process-arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  color: var(--teal);
}

.process-arrow::before {
  content: none;
}

.process-arrow::after {
  content: none;
}

.process-arrow-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.12rem;
  line-height: 1;
  box-shadow: 0 8px 16px rgba(18, 58, 112, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.process-arrow:hover .process-arrow-icon {
  transform: scale(1.05);
  box-shadow: 0 10px 18px rgba(18, 58, 112, 0.22);
}

@keyframes arrowFlow {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.45;
  }
  50% {
    transform: translateX(6px);
    opacity: 0.95;
  }
}

@keyframes megthiranPulse {
  0%,
  100% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(0, 168, 181, 0), 0 0 0 rgba(18, 58, 112, 0);
  }
  50% {
    transform: scale(1.02);
    text-shadow: 0 0 8px rgba(0, 168, 181, 0.22), 0 0 14px rgba(18, 58, 112, 0.12);
  }
}

@keyframes heroEntrance {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

body:not(.page-login):not(.page-dashboard) .hidden {
  opacity: 0;
  --reveal-y: 30px;
  transform: translateY(var(--reveal-y));
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

body:not(.page-login):not(.page-dashboard) .show {
  opacity: 1;
  --reveal-y: 0px;
  transform: translateY(var(--reveal-y));
}

body:not(.page-login):not(.page-dashboard) .reveal-heading.hidden {
  transition-delay: 0.1s;
}

body:not(.page-login):not(.page-dashboard) .reveal-text.hidden {
  transition-delay: 0.16s;
}

body:not(.page-login):not(.page-dashboard) .reveal-stagger.hidden {
  transition-delay: var(--reveal-delay, 0s);
}

body:not(.page-login):not(.page-dashboard) .reveal-parallax {
  transform: translate3d(0, calc(var(--reveal-y, 0px) + var(--parallax-y, 0px)), 0);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: transform;
}

body:not(.page-login):not(.page-dashboard) .domain-card.show.reveal-parallax:hover,
body:not(.page-login):not(.page-dashboard) .pricing-card.show.reveal-parallax:hover,
body:not(.page-login):not(.page-dashboard) .contact-card.show:hover,
body:not(.page-login):not(.page-dashboard) .process-step.show:hover {
  transform: translate3d(0, calc(var(--parallax-y, 0px) - 6px), 0) scale(1.01);
}

.domain-card:nth-child(1),
.pricing-card:nth-child(1),
.contact-card:nth-child(1),
.process-step:nth-child(1) {
  --reveal-delay: 0s;
}

.domain-card:nth-child(2),
.pricing-card:nth-child(2),
.contact-card:nth-child(2),
.process-step:nth-child(3) {
  --reveal-delay: 0.15s;
}

.domain-card:nth-child(3),
.pricing-card:nth-child(3),
.process-step:nth-child(5) {
  --reveal-delay: 0.3s;
}

.domain-card:nth-child(4),
.pricing-card:nth-child(4),
.process-step:nth-child(7) {
  --reveal-delay: 0.45s;
}

.domain-card:nth-child(n + 5) {
  --reveal-delay: 0.6s;
}

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

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

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

  .process-arrow {
    transform: rotate(90deg);
    width: 56px;
    margin: 0 auto;
  }

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

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

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

  .footer-brand-block {
    grid-column: 1 / -1;
  }

}

@media (max-width: 780px) {
  :root {
    --header-offset: 86px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.35rem);
    right: 4%;
    display: none;
    flex-direction: column;
    width: min(240px, 92vw);
    padding: 0.85rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(16, 42, 67, 0.12);
    box-shadow: 0 12px 28px rgba(16, 42, 67, 0.12);
  }

  .nav-login-btn {
    width: 100%;
  }

  .nav-links.open {
    display: flex;
  }

  .domains-list,
  .pricing-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .domain-card.active .domain-expand {
    max-height: var(--domain-content-h);
  }

  .hero-visual {
    min-height: 240px;
    max-height: 320px;
  }

  .about-marquee-track {
    animation-duration: 24s;
  }

  .internship-cta-banner {
    flex-direction: column;
    border-radius: 34px;
    padding: 24px 20px;
  }

  .footer-cta-banner {
    border-radius: 30px;
    margin-bottom: -36px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

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

  .internship-cta-section {
    padding-top: 12px;
    padding-bottom: 8px;
  }

  .internship-cta-banner {
    padding: 22px 16px;
    border-radius: 28px;
  }

  .internship-cta-button {
    width: 100%;
    max-width: 220px;
  }

  .footer-cta-wrap {
    margin-top: 8px;
  }

  .footer-cta-banner {
    margin-bottom: -30px;
    padding: 22px 18px;
    border-radius: 28px;
  }

  .site-footer {
    padding-top: 92px;
  }

  .footer-shell {
    padding: 28px 0 0;
  }

  .footer-brand,
  .footer-heading,
  .footer-description,
  .footer-contact-link,
  .footer-bottom-bar,
  .footer-bottom-links {
    text-align: center;
  }

  .footer-description {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-contact-list,
  .footer-nav-links,
  .footer-social-links {
    justify-content: center;
  }

  .footer-contact-link,
  .footer-nav-links a,
  .footer-bottom-links a {
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-bottom-bar {
    align-items: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content .hero-program-title,
  .hero-content .eyebrow,
  .hero-content h1,
  .hero-content > .section-text,
  .hero-content .hero-actions {
    opacity: 1;
    transform: none;
  }

  .hero-program-title,
  .hero-laptop-scene::after,
  .process-arrow-icon,
  .about-marquee-track {
    animation: none !important;
  }
}

body.site-public {
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
  background:
    radial-gradient(circle at top left, rgba(18, 58, 112, 0.08), transparent 30%),
    radial-gradient(circle at top right, rgba(0, 168, 181, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, var(--surface-blue-0) 100%);
}

body.site-intro-active {
  overflow: hidden;
}

body.site-modal-open,
body.site-nav-open {
  overflow: hidden;
}

[data-page-shell] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.45s var(--motion-ease),
    transform 0.45s var(--motion-ease);
  will-change: opacity, transform;
}

body.site-public.site-intro-active:not(.site-ready) [data-page-shell] {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
}

body.site-public.site-ready [data-page-shell] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.site-home .site-header,
body.site-home .hero-content h1,
body.site-home .hero-content > .section-text,
body.site-home .hero-content .hero-actions,
body.site-home .hero-laptop-scene {
  will-change: opacity, transform;
}

body.site-home:not(.site-ready) .site-header {
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, -8px, 0);
}

body.site-home:not(.site-ready) .hero-content .eyebrow,
body.site-home:not(.site-ready) .hero-content .hero-program-title,
body.site-home:not(.site-ready) .hero-content h1,
body.site-home:not(.site-ready) .hero-content > .section-text,
body.site-home:not(.site-ready) .hero-content .hero-actions,
body.site-home:not(.site-ready) .hero-laptop-scene {
  animation-play-state: paused !important;
}

body.site-home.site-ready .site-header {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.8s var(--motion-ease),
    transform 0.8s var(--motion-ease);
}

body.site-home.site-ready .hero-actions .btn {
  animation: heroButtonIn 0.8s var(--motion-ease) both;
}

body.site-home.site-ready .hero-actions .btn:nth-child(1) {
  animation-delay: 0.36s;
}

body.site-home.site-ready .hero-actions .btn:nth-child(2) {
  animation-delay: 0.44s;
}

.site-header {
  transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 24px rgba(16, 42, 67, 0.1);
}

.menu-toggle {
  position: relative;
  width: 50px;
  height: 50px;
  padding: 0;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 28px rgba(18, 58, 112, 0.18);
  transition:
    transform 0.35s var(--motion-ease),
    box-shadow 0.35s var(--motion-ease),
    background 0.35s ease;
}

.menu-toggle:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 20px 36px rgba(18, 58, 112, 0.24);
}

.menu-toggle__box {
  position: relative;
  width: 20px;
  height: 16px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle__line {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition:
    transform 0.35s var(--motion-ease),
    opacity 0.25s ease,
    width 0.35s var(--motion-ease);
}

.menu-toggle.is-open .menu-toggle__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open .menu-toggle__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.4);
}

.menu-toggle.is-open .menu-toggle__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav-backdrop {
  position: fixed;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 89;
}

.site-nav-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.hero,
.hero-grid,
.hero-visual,
.pricing-card,
.domain-card,
.contact-card,
.why-card,
.package-detail-card,
.final-cta,
.social-block,
.process-step {
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.hero-visual,
.pricing-card,
.domain-card,
.contact-card,
.why-card,
.social-block,
.package-detail-card,
.final-cta {
  transition:
    transform 0.42s var(--motion-ease),
    box-shadow 0.42s var(--motion-ease),
    border-color 0.42s var(--motion-ease),
    background-color 0.42s var(--motion-ease),
    opacity 0.6s ease;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 8% 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 168, 181, 0.12), transparent 68%);
  filter: blur(14px);
  z-index: 0;
  pointer-events: none;
}

.hero-visual:hover,
.package-detail-card:hover {
  transform: translate3d(0, -6px, 0) scale(1.008);
  box-shadow: 0 28px 48px rgba(18, 58, 112, 0.15), 0 0 0 1px rgba(0, 168, 181, 0.08);
}

.pricing-card:hover,
.domain-card:hover,
.contact-card:hover,
.why-card:hover,
.social-block:hover,
.final-cta:hover {
  transform: translate3d(0, -8px, 0) scale(1.01);
}

body.site-public:not(.page-login):not(.page-dashboard) .hidden {
  opacity: 0;
  --reveal-y: 24px;
  transform: translate3d(0, var(--reveal-y), 0);
  transition:
    opacity 0.6s var(--motion-ease),
    transform 0.6s var(--motion-ease);
  will-change: opacity, transform;
}

body.site-public:not(.page-login):not(.page-dashboard) .show {
  opacity: 1;
  --reveal-y: 0px;
  transform: translate3d(0, var(--reveal-y), 0);
}

body.site-public:not(.page-login):not(.page-dashboard) .reveal-parallax {
  transform: translate3d(0, calc(var(--reveal-y, 0px) + var(--parallax-y, 0px)), 0);
}

.site-splash {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, var(--surface-blue-1) 100%);
  z-index: 5000;
  transition:
    opacity 0.65s var(--motion-ease),
    transform 0.65s var(--motion-ease);
}

.site-splash.is-leaving {
  opacity: 0;
  transform: scale(1.02);
}

.site-splash__backdrop,
.site-splash__orb,
.site-splash__particle {
  position: absolute;
  pointer-events: none;
}

.site-splash__backdrop {
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.56) 38%, rgba(238, 244, 255, 0.86) 70%),
    linear-gradient(180deg, rgba(0, 168, 181, 0.06), transparent 45%);
}

.site-splash__orb {
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 58, 112, 0.1), rgba(0, 168, 181, 0.07) 42%, transparent 72%);
  filter: blur(22px);
  animation: splashFloat 4.5s ease-in-out infinite;
}

.site-splash__center {
  position: relative;
  z-index: 2;
  width: min(58vw, 360px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  animation: splashReveal 0.95s var(--motion-ease) both;
}

.site-splash__logo {
  width: min(56%, 184px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(18, 58, 112, 0.18));
  z-index: 2;
}

.site-splash__ring {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 2px solid rgba(0, 168, 181, 0.12);
  border-top-color: rgba(0, 168, 181, 0.9);
  border-right-color: rgba(18, 58, 112, 0.55);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.28),
    0 0 30px rgba(0, 168, 181, 0.16);
  animation: splashSpin 1.35s linear infinite;
}

.site-splash__particle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 168, 181, 0.9), rgba(0, 168, 181, 0));
  box-shadow: 0 0 28px rgba(0, 168, 181, 0.35);
}

.site-splash__particle--one {
  top: 24%;
  left: 28%;
  animation: splashParticleOne 5s ease-in-out infinite;
}

.site-splash__particle--two {
  top: 30%;
  right: 25%;
  animation: splashParticleTwo 5.8s ease-in-out infinite;
}

.site-splash__particle--three {
  bottom: 24%;
  left: 50%;
  animation: splashParticleThree 6.2s ease-in-out infinite;
}

.site-splash__particle--four {
  top: 48%;
  left: 20%;
  width: 8px;
  height: 8px;
  opacity: 0.72;
  animation: splashParticleFour 6.8s ease-in-out infinite;
}

.site-splash__particle--five {
  top: 18%;
  right: 34%;
  width: 7px;
  height: 7px;
  opacity: 0.62;
  animation: splashParticleFive 7.4s ease-in-out infinite;
}

.login-gate-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  z-index: 210;
}

.login-gate-modal[hidden] {
  display: none;
}

.login-gate-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 42, 67, 0.28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.login-gate-modal__dialog {
  position: relative;
  width: min(520px, calc(100vw - 2rem));
  padding: 2rem 1.6rem 1.5rem;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 32px 70px rgba(16, 42, 67, 0.18);
  transform: translate3d(0, 18px, 0) scale(0.96);
  opacity: 0;
  transition:
    opacity 0.32s var(--motion-ease),
    transform 0.42s var(--motion-ease);
}

.login-gate-modal.is-visible .login-gate-modal__dialog {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.login-gate-modal__eyebrow {
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.login-gate-modal__dialog h2 {
  margin-bottom: 0.9rem;
  color: var(--blue);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.login-gate-modal__headline {
  min-height: 2.6em;
}

.login-gate-modal__message {
  min-height: 4.5rem;
  margin-bottom: 1.4rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.typewriter-cursor {
  display: none;
}

.typewriter-text {
  display: inline;
}

.typewriter-text.is-typing,
.typewriter-text.is-resting {
  position: relative;
}

.typewriter-text.is-typing::after,
.typewriter-text.is-resting::after {
  content: '';
  display: inline-block;
  width: 0.62ch;
  height: 1.02em;
  margin-left: 0.12rem;
  vertical-align: -0.1em;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(18, 58, 112, 0.92), rgba(0, 168, 181, 0.78));
}

.typewriter-text.is-typing::after {
  animation: cursorBlink 1.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.typewriter-text.is-resting::after {
  opacity: 0.55;
  animation: cursorBlinkSoft 2.2s ease-in-out infinite;
}

.login-gate-modal__close,
.login-gate-modal__action {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.login-gate-modal__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(18, 58, 112, 0.08);
  color: var(--blue);
  font-size: 1.5rem;
  line-height: 1;
}

.login-gate-modal__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 18px 28px rgba(18, 58, 112, 0.18);
  transition:
    transform 0.3s var(--motion-ease),
    box-shadow 0.3s var(--motion-ease);
}

.login-gate-modal__action:hover,
.login-gate-modal__close:hover {
  transform: translateY(-2px);
}

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

@keyframes splashReveal {
  from {
    opacity: 0;
    transform: translate3d(0, 26px, 0) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes splashSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes splashFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -10px, 0) scale(1.03);
  }
}

@keyframes splashParticleOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.8);
    opacity: 0.4;
  }
  50% {
    transform: translate3d(30px, -24px, 0) scale(1.3);
    opacity: 1;
  }
}

@keyframes splashParticleTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.7);
    opacity: 0.45;
  }
  50% {
    transform: translate3d(-24px, 20px, 0) scale(1.25);
    opacity: 0.95;
  }
}

@keyframes splashParticleThree {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.8);
    opacity: 0.38;
  }
  50% {
    transform: translate3d(0, -28px, 0) scale(1.15);
    opacity: 1;
  }
}

@keyframes splashParticleFour {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.72);
    opacity: 0.28;
  }
  50% {
    transform: translate3d(20px, -18px, 0) scale(1.08);
    opacity: 0.76;
  }
}

@keyframes splashParticleFive {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.7);
    opacity: 0.24;
  }
  50% {
    transform: translate3d(-16px, 16px, 0) scale(1);
    opacity: 0.64;
  }
}

@keyframes cursorBlink {
  0%,
  38% {
    opacity: 1;
  }
  56% {
    opacity: 0.28;
  }
  100% {
    opacity: 1;
  }
}

@keyframes cursorBlinkSoft {
  0%,
  42% {
    opacity: 0.55;
  }
  58% {
    opacity: 0.16;
  }
  100% {
    opacity: 0.55;
  }
}

@media (max-width: 520px) {
  .social-vertical {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .internship-opening-section {
    padding-top: 14px;
    padding-bottom: 30px;
  }

  .internship-opening-shell {
    min-height: 52vh;
    border-radius: 28px;
    padding: 24px 20px;
  }

  .internship-opening-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

  .internship-opening-lead {
    max-width: 100%;
  }

  .internship-opening-content {
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
    padding: 22px 20px;
  }

  .internship-opening-subtitle {
    max-width: 20ch;
  }

  .nav-links {
    top: calc(100% + 0.55rem);
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    width: min(320px, calc(100vw - 1rem));
    padding: 1rem;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(16, 42, 67, 0.12);
    box-shadow: 0 12px 28px rgba(16, 42, 67, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, -10px, 0);
    transition:
      opacity 0.28s ease,
      transform 0.28s ease,
      visibility 0.28s ease;
    z-index: 90;
  }

  .nav-links a {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    color: var(--blue);
  }

  .nav-links a:hover {
    background: rgba(16, 42, 67, 0.05);
    color: var(--teal);
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  .nav-login-btn {
    margin-top: 0.35rem;
  }
}

@media (max-width: 520px) {
  .internship-opening-shell {
    min-height: 46vh;
    border-radius: 24px;
    padding: 20px 16px;
  }

  .internship-opening-layout {
    gap: 1.2rem;
  }

  .internship-opening-title {
    max-width: 12ch;
  }

  .internship-opening-content {
    padding: 18px 16px;
    border-radius: 22px;
  }

  .internship-opening-subtitle {
    margin-top: 0.95rem;
    font-size: 1.08rem;
  }

  .internship-opening-note {
    margin-top: 0.82rem;
    line-height: 1.64;
  }

  .site-splash__center {
    width: min(76vw, 290px);
  }

  .login-gate-modal__dialog {
    padding: 1.6rem 1.1rem 1.2rem;
    border-radius: 24px;
  }
}

:root {
  --pastel-blue: #eaf3ff;
  --pastel-teal: #e7fbfd;
  --pastel-lavender: #f0edff;
  --pastel-gray: #f8fafc;
  --soft-purple: #8b7bd3;
  --dark-startup: #07172d;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.domain-showcase {
  display: grid;
  gap: clamp(18px, 2.6vw, 28px);
}

.domains-page-main {
  background:
    radial-gradient(circle at top left, rgba(18, 58, 112, 0.08), transparent 30%),
    radial-gradient(circle at top right, rgba(0, 168, 181, 0.1), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 58%, #ffffff 100%);
}

.domains-page-hero {
  padding: clamp(34px, 5vw, 58px) 0 clamp(16px, 2.4vw, 28px);
}

.domains-page-head {
  display: grid;
  gap: 0.55rem;
  max-width: 820px;
}

.domains-page-head .eyebrow {
  margin: 0;
}

.domains-page-head h1 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.02;
  font-weight: 800;
}

.domains-page-head .section-text {
  margin: 0;
}

.domains-page-section {
  padding: clamp(14px, 2.3vw, 26px) 0 clamp(44px, 6vw, 72px);
}

.domains-page-container {
  width: min(1240px, 94%);
}

.domain-section-card {
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 3vw, 32px);
  border-radius: clamp(22px, 2.4vw, 30px);
  border: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow: 0 24px 54px rgba(16, 42, 67, 0.1);
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.domain-section-card::before {
  content: '';
  position: absolute;
  inset: -20% -12% auto auto;
  width: clamp(220px, 28vw, 360px);
  height: clamp(220px, 28vw, 360px);
  border-radius: 999px;
  pointer-events: none;
  filter: blur(18px);
  opacity: 0.55;
}

.domain-section-technical {
  background:
    radial-gradient(circle at 92% 4%, rgba(0, 168, 181, 0.12), transparent 30%),
    linear-gradient(145deg, #ffffff 0%, var(--pastel-blue) 48%, var(--pastel-teal) 100%);
}

.domain-section-technical::before {
  background: radial-gradient(circle, rgba(0, 168, 181, 0.16), transparent 70%);
}

.domain-section-hybrid {
  background:
    radial-gradient(circle at 12% 18%, rgba(231, 251, 253, 0.85), transparent 26%),
    radial-gradient(circle at 88% 22%, rgba(139, 123, 211, 0.16), transparent 30%),
    linear-gradient(135deg, #eef9ff 0%, #e7fbfd 46%, #f0edff 100%);
  border-color: rgba(0, 168, 181, 0.16);
  box-shadow: 0 28px 62px rgba(18, 58, 112, 0.13);
}

.domain-section-hybrid::before {
  background: radial-gradient(circle, rgba(18, 58, 112, 0.12), transparent 70%);
}

.domain-section-non-technical {
  background:
    radial-gradient(circle at 90% 8%, rgba(139, 123, 211, 0.12), transparent 30%),
    linear-gradient(145deg, #ffffff 0%, var(--pastel-gray) 46%, var(--pastel-lavender) 100%);
}

.domain-section-non-technical::before {
  background: radial-gradient(circle, rgba(139, 123, 211, 0.14), transparent 70%);
}

.domain-section-head {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
}

.domain-section-eyebrow {
  margin: 0 0 0.55rem;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.domain-section-card h3 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(1.55rem, 2.8vw, 2.45rem);
  font-weight: 800;
  line-height: 1.08;
}

.domain-section-card p {
  margin: 0.55rem 0 0;
  color: rgba(74, 97, 118, 0.9);
  max-width: 68ch;
  line-height: 1.62;
}

.domain-section-card .domain-section-eyebrow {
  margin: 0 0 0.42rem;
  color: var(--teal);
  max-width: none;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.domain-groups {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(14px, 2.1vw, 22px);
  margin-top: clamp(16px, 2.6vw, 26px);
}

.domain-group {
  min-width: 0;
}

.domain-group h4 {
  margin: 0 0 0.62rem;
  color: var(--blue);
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
  font-weight: 700;
  line-height: 1.2;
}

.domain-pill-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: 46px;
  gap: 0.62rem;
}

.domain-pill {
  min-width: 0;
  width: 100%;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.48rem 0.78rem;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow:
    0 10px 22px rgba(16, 42, 67, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  text-align: center;
  font-size: 0.87rem;
  font-weight: 600;
  line-height: 1.18;
  overflow: hidden;
  text-wrap: balance;
  transition:
    transform 0.34s var(--motion-ease, ease),
    box-shadow 0.34s var(--motion-ease, ease),
    border-color 0.34s ease,
    color 0.34s ease;
  will-change: transform;
}

.domain-pill span {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-width: 100%;
}

.domain-pill:hover {
  transform: translate3d(0, -5px, 0) scale(1.025);
  color: #0e2f5a;
  border-color: rgba(0, 168, 181, 0.28);
  box-shadow:
    0 16px 30px rgba(18, 58, 112, 0.12),
    0 0 22px rgba(0, 168, 181, 0.12);
}

.domain-section-hybrid .domain-pill {
  height: 46px;
  box-shadow:
    0 14px 28px rgba(18, 58, 112, 0.1),
    0 0 0 1px rgba(0, 168, 181, 0.06);
}

.domain-section-card:hover {
  box-shadow: 0 30px 68px rgba(16, 42, 67, 0.14);
  border-color: rgba(0, 168, 181, 0.18);
}

.site-splash {
  background: linear-gradient(180deg, #ffffff 0%, var(--surface-blue-1) 100%);
}

.site-splash__backdrop {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.56) 38%, rgba(238, 244, 255, 0.86) 70%),
    linear-gradient(180deg, rgba(0, 168, 181, 0.06), transparent 45%);
}

.site-splash__orb {
  background: radial-gradient(circle, rgba(139, 123, 211, 0.14), rgba(0, 168, 181, 0.08) 45%, transparent 72%);
  filter: blur(24px);
}

.site-splash__logo-glow {
  position: absolute;
  inset: 20%;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.92), rgba(231, 251, 253, 0.5) 42%, rgba(139, 123, 211, 0.1) 68%, transparent 76%);
  filter: blur(10px);
  animation: splashLogoGlow 2.2s ease-in-out infinite;
}

.site-splash__center {
  animation: splashRevealPremium 1.1s var(--motion-ease, ease) both;
}

.site-splash__logo {
  width: min(62%, 198px);
  animation: splashLogoReveal 1.08s var(--motion-ease, ease) both;
  filter:
    drop-shadow(0 18px 32px rgba(18, 58, 112, 0.16))
    drop-shadow(0 0 22px rgba(0, 168, 181, 0.12));
}

.site-splash__ring {
  border-color: rgba(0, 168, 181, 0.12);
  border-top-color: rgba(0, 168, 181, 0.88);
  border-right-color: rgba(18, 58, 112, 0.5);
  animation: splashSpin 2.6s linear infinite;
}

.site-splash__particle {
  background: radial-gradient(circle, rgba(0, 168, 181, 0.72), rgba(139, 123, 211, 0.12) 52%, transparent 72%);
  box-shadow: 0 0 30px rgba(0, 168, 181, 0.22);
}

@keyframes splashLogoGlow {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.88;
    transform: scale(1.05);
  }
}

@keyframes splashLogoReveal {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0) scale(0.86);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes splashRevealPremium {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 1060px) {
  .domain-pill-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .domain-section-card {
    border-radius: 26px;
  }

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

@media (max-width: 520px) {
  .domain-pill-grid,
  .domain-pill {
    width: 100%;
  }

  .domain-pill-grid {
    grid-template-columns: 1fr;
  }
}

.hero {
  background:
    radial-gradient(circle at 86% 22%, rgba(0, 168, 181, 0.12), transparent 28%),
    radial-gradient(circle at 18% 12%, rgba(217, 236, 255, 0.95), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

body.site-home .hero {
  color: var(--text);
  background: #ffffff;
}

body.site-home .hero::before {
  display: none;
}

body.site-home .hero::after {
  display: none;
}

body.site-home .hero-content h1 {
  color: var(--blue);
  text-shadow: none;
}

body.site-home .hero-content > .section-text {
  color: var(--muted);
}

body.site-home .btn-secondary {
  color: var(--blue);
  background: #e8f9fb;
  border: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-visual {
  min-height: clamp(380px, 40vw, 540px);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  perspective: 1100px;
  isolation: isolate;
}

.hero-visual::before,
.hero-visual::after {
  display: none;
}

.hero-visual:hover {
  box-shadow: none;
}

.hero-laptop-scene {
  position: relative;
  width: clamp(340px, 36vw, 500px);
  max-width: 100%;
  aspect-ratio: 1.48;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-laptop-scene::before {
  content: '';
  position: absolute;
  inset: 12% -3% 4%;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 58% 70%, rgba(16, 42, 67, 0.18), transparent 42%),
    radial-gradient(ellipse at 56% 48%, rgba(0, 168, 181, 0.12), transparent 36%);
  filter: blur(26px);
  opacity: 0.76;
  z-index: -2;
}

.hero-laptop-scene::after {
  content: '';
  position: absolute;
  left: 34%;
  top: 25%;
  width: 28%;
  height: 22%;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.26), rgba(0, 218, 255, 0.12) 42%, transparent 72%);
  filter: blur(8px);
  opacity: 0.7;
  animation: logoFloat 4.8s ease-in-out infinite;
  z-index: 1;
}

.hero-laptop-image {
  position: relative;
  width: 100%;
  max-height: clamp(300px, 41vw, 510px);
  object-fit: contain;
  filter:
    drop-shadow(0 30px 30px rgba(16, 42, 67, 0.18))
    drop-shadow(0 0 28px rgba(0, 168, 181, 0.1));
  z-index: 2;
}

.what-you-get-section {
  position: relative;
  padding: clamp(38px, 6vw, 74px) 0;
  background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
}

.what-you-get-shell {
  overflow: hidden;
  border-radius: 18px;
  padding: clamp(18px, 3vw, 28px);
  background:
    radial-gradient(circle at 7% 8%, rgba(0, 168, 181, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 248, 255, 0.94));
  border: 1px solid rgba(18, 58, 112, 0.08);
  box-shadow: 0 18px 44px rgba(18, 58, 112, 0.08);
}

.section-kicker {
  display: grid;
  grid-template-columns: minmax(40px, 1fr) auto minmax(40px, 1fr);
  align-items: center;
  gap: 0.75rem;
  width: min(390px, 100%);
  margin: 0 auto 18px;
  color: #008f9a;
}

.section-kicker span {
  height: 2px;
  background: linear-gradient(90deg, transparent, #00a8b5);
}

.section-kicker span:last-child {
  background: linear-gradient(90deg, #00a8b5, transparent);
}

.section-kicker h2 {
  margin: 0;
  color: #008f9a;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: clamp(8px, 1.7vw, 16px) 0;
  background: rgba(255, 255, 255, 0.58);
  border-radius: 14px;
}

.benefit-card {
  position: relative;
  min-width: 0;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.72rem;
  padding: clamp(14px, 2.3vw, 24px) clamp(10px, 1.4vw, 16px);
  text-align: center;
  border-right: 1px solid rgba(18, 58, 112, 0.13);
  transition: transform 0.32s var(--motion-ease, ease), background 0.32s ease;
}

.benefit-card:last-child {
  border-right: 0;
}

.benefit-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.76);
}

.benefit-icon {
  width: clamp(54px, 6vw, 68px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.72), transparent 24%),
    radial-gradient(circle at 70% 76%, rgba(2, 31, 60, 0.44), transparent 34%),
    linear-gradient(145deg, #34e4dc 0%, #00a8b5 42%, #0b4a73 76%, #082b55 100%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    inset 0 2px 10px rgba(255, 255, 255, 0.38),
    inset 0 -10px 18px rgba(6, 29, 60, 0.28),
    0 0 0 7px rgba(0, 168, 181, 0.09),
    0 15px 26px rgba(18, 58, 112, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.benefit-icon i {
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1;
  filter: drop-shadow(0 3px 5px rgba(4, 22, 42, 0.28));
}

.benefit-card h3 {
  margin: 0;
  color: #0d2143;
  font-size: clamp(1.08rem, 1.65vw, 1.36rem);
  font-weight: 800;
  line-height: 1.16;
}

.benefit-card p {
  margin: 0;
  color: #2f4862;
  font-size: clamp(0.88rem, 1.08vw, 0.98rem);
  line-height: 1.62;
}

.project-feature-card {
  margin-top: clamp(18px, 2.4vw, 26px);
  display: grid;
  grid-template-columns: minmax(96px, 160px) 1fr minmax(68px, 112px);
  align-items: center;
  gap: clamp(16px, 3.5vw, 44px);
  min-height: 136px;
  padding: clamp(16px, 2.4vw, 24px) clamp(20px, 4vw, 44px);
  border-radius: 16px;
  background:
    radial-gradient(circle at 8% 34%, rgba(0, 168, 181, 0.09), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.94));
  border: 1px solid rgba(18, 58, 112, 0.07);
  box-shadow: 0 14px 28px rgba(18, 58, 112, 0.07);
}

.target-illustration {
  position: relative;
  width: clamp(88px, 12vw, 132px);
  aspect-ratio: 1;
  justify-self: center;
}

.target-ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: conic-gradient(from -40deg, #123a70, #00a8b5, #1bd4d0, #123a70);
  box-shadow: 0 16px 28px rgba(18, 58, 112, 0.18);
}

.target-ring-two {
  inset: 16%;
  background: #ffffff;
  box-shadow: inset 0 0 0 11px #08b8b5;
}

.target-ring-three {
  inset: 34%;
  background: #ffffff;
  box-shadow: inset 0 0 0 10px #123a70;
}

.target-illustration::after {
  content: '';
  position: absolute;
  inset: 46%;
  border-radius: 999px;
  background: #08b8b5;
}

.target-arrow {
  position: absolute;
  right: -9%;
  top: 11%;
  width: 56%;
  height: 7px;
  border-radius: 999px;
  background: #123a70;
  transform: rotate(-35deg);
  transform-origin: left center;
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.65);
}

.target-arrow::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  width: 18px;
  height: 18px;
  border-top: 7px solid #123a70;
  border-right: 7px solid #123a70;
  transform: translateY(-50%) rotate(45deg);
}

.project-feature-copy h3 {
  margin: 0 0 0.35rem;
  color: #0d2143;
  font-size: clamp(1.05rem, 2.1vw, 1.45rem);
  font-weight: 800;
}

.project-feature-copy p {
  margin: 0;
  color: #2f4862;
  line-height: 1.62;
}

.idea-icon {
  justify-self: end;
  width: clamp(58px, 8vw, 88px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: #00a8b5;
  border-radius: 999px;
  background: rgba(223, 243, 255, 0.45);
}

.idea-icon i {
  font-size: clamp(2.7rem, 6vw, 4.3rem);
  text-shadow: 0 0 18px rgba(0, 168, 181, 0.16);
}

@keyframes laptopFloat {
  0%,
  100% {
    transform: rotateX(7deg) rotateY(-10deg) rotateZ(2deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotateX(7deg) rotateY(-8deg) rotateZ(1.4deg) translate3d(0, -12px, 0);
  }
}

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

@media (max-width: 1060px) {
  .hero-laptop-scene {
    width: min(86vw, 480px);
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    background: transparent;
  }

  .benefit-card {
    border: 1px solid rgba(18, 58, 112, 0.09);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.76);
  }

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

@media (max-width: 780px) {
  .hero-visual {
    min-height: clamp(280px, 72vw, 420px);
  }

  .hero-laptop-scene {
    width: min(88vw, 420px);
  }

  .project-feature-card {
    grid-template-columns: 92px 1fr;
  }

  .idea-icon {
    grid-column: 2;
    justify-self: start;
    width: 58px;
  }
}

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

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

  .project-feature-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .idea-icon {
    grid-column: auto;
    justify-self: center;
  }

}

.reveal-ready {
  opacity: 0;
}

/* Refinement pass: compact hero, consistent nav, and cleaner global footer rhythm. */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 24px rgba(16, 42, 67, 0.1);
}

.hero {
  min-height: clamp(460px, calc(100vh - var(--header-offset)), 600px) !important;
  padding: clamp(18px, 3vw, 34px) 0 clamp(28px, 4vw, 44px);
}

.hero-grid {
  min-height: auto !important;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: clamp(1.5rem, 5vw, 4.75rem);
}

.hero-content {
  margin-top: 0;
  gap: 0.72rem;
  max-width: 620px;
}

.hero-content .eyebrow {
  margin: 0;
  color: var(--teal);
  letter-spacing: 0.14em;
}

.hero-content h1 {
  margin: 0;
  max-width: 640px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.hero-content > .section-text {
  margin: 0;
  max-width: 54ch;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.68;
}

.hero-actions {
  margin-top: 0.35rem;
}

.hero-visual {
  min-height: clamp(220px, 31vw, 340px);
}

.site-footer {
  padding-top: clamp(76px, 9vw, 104px);
}

.footer-shell {
  padding-top: clamp(28px, 4vw, 40px);
}

.footer-grid {
  gap: clamp(22px, 3.4vw, 42px);
}

.footer-description {
  line-height: 1.68;
}

@media (max-width: 1060px) {
  .hero {
    min-height: auto !important;
  }

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

  .hero-content {
    max-width: 720px;
    width: 100%;
  }

  .hero-content h1 {
    max-width: 680px;
  }
}

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

  .hero-content h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 7.8vw, 3.2rem);
  }

  .hero-visual {
    min-height: 220px;
  }

  .site-footer {
    padding-top: 82px;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-top: 18px;
    padding-bottom: 30px;
  }

  .hero-content {
    gap: 0.68rem;
  }

  .hero-content h1 {
    font-size: clamp(1.65rem, 9.2vw, 2.45rem);
    line-height: 1.08;
  }

  .hero-content > .section-text {
    font-size: 0.95rem;
    line-height: 1.58;
    max-width: 100%;
    overflow-wrap: break-word;
  }

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

  .hero-laptop-scene {
    width: min(100%, 380px);
  }

}

/* Final polish pass for the dark hero, package pages, mobile alignment, and footer rhythm. */
body.site-home .hero {
  min-height: calc(100vh - var(--header-offset)) !important;
  min-height: calc(100svh - var(--header-offset)) !important;
  display: flex;
  align-items: center;
}

body.site-home .hero-grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
  transform: translateY(clamp(-28px, -2.2vh, -14px));
}

body.site-home .hero-visual {
  min-height: clamp(390px, 44vw, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
}

body.site-home .hero-actions .btn {
  box-shadow: 0 14px 24px rgba(18, 58, 112, 0.12);
}

#why-choose-us,
#application-process {
  background: #ffffff;
}

.package-page {
  background:
    radial-gradient(circle at 10% 8%, rgba(0, 168, 181, 0.08), transparent 28%),
    linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
}

.package-basic-page {
  background: linear-gradient(135deg, #f8fbff 0%, #eaf3ff 52%, #f7fbff 100%);
}

.package-standard-page {
  background: linear-gradient(135deg, #f8fbff 0%, #edf7ff 48%, #eafbf8 100%);
}

.package-premium-page {
  background: linear-gradient(135deg, #fbfbff 0%, #f0edff 46%, #eaf6ff 100%);
}

.package-elite-page {
  background: linear-gradient(135deg, #f8fbff 0%, #e7f9ff 45%, #eef4ff 100%);
}

.package-page main > .section {
  background: transparent;
}

.package-page .package-detail-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9));
  border-color: rgba(18, 58, 112, 0.08);
  box-shadow: 0 24px 54px rgba(18, 58, 112, 0.1);
}

.package-page .content-card,
.package-page .package-block,
.package-page .quick-summary {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(18, 58, 112, 0.08);
  box-shadow: 0 14px 28px rgba(18, 58, 112, 0.06);
}

.package-page .package-hero h1 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.1;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.final-cta {
  background:
    radial-gradient(circle at 18% 18%, rgba(217, 236, 255, 0.18), transparent 24%),
    linear-gradient(135deg, #163d86 0%, #1d5f9d 44%, #346fb7 72%, #5069b8 100%);
  box-shadow: 0 20px 42px rgba(25, 73, 138, 0.2);
}

.final-cta .btn.primary,
.btn.primary {
  background: linear-gradient(135deg, #183f8f, #2467a8);
}

.final-cta .btn.secondary,
.btn.secondary {
  color: #1d5f9d;
  border-color: rgba(29, 95, 157, 0.22);
}

.footer-contact-link {
  align-items: flex-start;
}

.footer-contact-link span:last-child {
  min-width: 0;
  line-height: 1.45;
}

@media (max-width: 1060px) {
  body.site-home .hero-grid {
    grid-template-columns: 1fr;
  }

  body.site-home .hero-content {
    text-align: left;
  }
}

@media (max-width: 780px) {
  body.site-home .hero {
    min-height: auto !important;
    padding-top: clamp(28px, 8vw, 44px);
  }

  body.site-home .hero-grid {
    transform: none;
  }

  body.site-home .hero-content {
    text-align: left;
  }

  body.site-home .hero-visual {
    min-height: clamp(310px, 82vw, 430px);
  }

  .package-page .container {
    width: min(100% - 28px, 1140px);
  }

  .package-page .section {
    padding-top: 34px;
  }

  .package-page .package-detail-card {
    padding: 18px 14px;
    border-radius: 22px;
  }

  .package-page .package-hero {
    padding: 24px 8px 10px;
  }

  .package-page .package-hero h1 {
    font-size: clamp(2rem, 11vw, 3rem);
    letter-spacing: 0;
  }

  .trust-points {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    font-size: 0.95rem;
    text-align: center;
  }

  .hero-buttons {
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact-list {
    width: min(100%, 420px);
    margin-left: auto;
    margin-right: auto;
  }

  .footer-contact-link {
    width: 100%;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    justify-items: start;
    text-align: left;
    gap: 12px;
  }

  .footer-contact-icon {
    width: 46px;
    height: 46px;
  }

  .footer-contact-link span:last-child {
    text-align: left;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .footer-nav-links a {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, 1140px);
  }

  .nav-wrap {
    min-height: 76px;
  }

  .brand-logo {
    width: 132px;
    height: 76px;
  }

  .menu-toggle {
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
  }

  body.site-home .hero-content h1 {
    font-size: clamp(2.05rem, 9vw, 2.7rem);
  }

  body.site-home .hero-content > .section-text {
    font-size: 0.98rem;
  }

  .hero-laptop-scene {
    width: min(92vw, 360px) !important;
  }

  .what-you-get-shell {
    padding: 18px 14px;
  }

  .benefit-card {
    padding: 20px 14px;
  }

  .project-feature-card {
    padding: 22px 16px;
  }

  .content-card {
    padding: 20px 16px;
  }

  .package-block {
    padding: 18px 16px;
  }

  .final-cta {
    padding: 28px 16px;
  }

  .footer-description {
    max-width: 28ch;
  }
}

@media (max-width: 1060px) {
  .section:not(.hero) > .container > div:first-child {
    text-align: center;
  }

  .section:not(.hero) .section-text {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-grid {
    justify-items: center;
  }

  .contact-card {
    width: min(100%, 640px);
    align-items: center;
    text-align: center;
  }

  .contact-card a {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .site-footer .container,
  .footer-shell,
  .footer-column {
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: clamp(30px, 5vw, 48px);
  }

  .footer-brand-block {
    grid-column: auto;
  }

  .footer-column {
    width: min(100%, 520px);
    display: grid;
    justify-items: center;
  }

  .footer-brand,
  .footer-heading,
  .footer-description {
    text-align: center;
  }

  .footer-description {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-contact-list {
    width: min(100%, 440px);
    justify-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-contact-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .footer-nav-links {
    justify-items: center;
    gap: 0.85rem;
  }

  .footer-nav-links a,
  .footer-bottom-links a {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .footer-social-links {
    justify-content: center;
    gap: 0.8rem;
  }

  .footer-bottom-bar {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0.85rem;
  }

  .footer-bottom-links {
    justify-content: center;
    gap: 0.85rem 1.15rem;
  }
}

@media (max-width: 780px) {
  .footer-grid {
    gap: 32px;
  }

  .footer-contact-link {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.6rem;
  }

  .footer-contact-link:hover {
    transform: translateY(-2px);
  }

  .footer-contact-link span:last-child {
    text-align: center;
  }

  .footer-social-links {
    width: min(100%, 360px);
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social-links a {
    flex: 0 0 48px;
  }

  .footer-bottom-links {
    width: min(100%, 360px);
  }
}

@media (max-width: 520px) {
  .contact-card {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .footer-column {
    width: 100%;
  }

  .footer-contact-list {
    width: 100%;
  }

  .footer-social-links {
    gap: 0.7rem;
  }

  .footer-bottom-bar p {
    max-width: 28ch;
  }
}

.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: #fff;
}

.login-shell {
  width: min(460px, 100%);
  border: 1px solid rgba(16, 42, 67, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.3rem, 3vw, 2rem);
  background: #fff;
}

.login-head h1 {
  margin-bottom: 0.3rem;
  color: var(--blue);
}

.login-head p {
  margin-top: 0;
  color: var(--muted);
}

.login-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.95rem;
}

.helper-text {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: #8b96a5;
}

.input-anim {
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.input-anim:focus {
  transform: translateY(-1px);
}

.btn-login {
  margin-top: 0.4rem;
  width: 100%;
  padding: 0.78rem 1rem;
  animation: buttonFloatIn 0.5s ease both;
}

.btn-login:hover {
  transform: translateY(-2px) scale(1.01);
}

.login-back {
  margin-top: 1rem;
  display: inline-block;
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease;
}

.login-back:hover {
  color: var(--blue);
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .site-splash,
  .site-nav-backdrop,
  .login-gate-modal__dialog,
  [data-page-shell] {
    transition: none !important;
  }
}

/* Final responsiveness, footer, and domains rendering stabilization pass. */
html,
body {
  width: 100%;
  overflow-x: clip;
}

img,
svg,
canvas,
video {
  max-width: 100%;
}

.footer-inquiry {
  margin: 1rem 0 0;
  max-width: 38ch;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
}

.footer-contact-link {
  align-items: center;
  gap: 0.7rem;
}

.footer-contact-link span:last-child {
  min-width: 0;
  line-height: 1.35;
  overflow-wrap: normal;
  word-break: normal;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-links {
  align-items: center;
}

.footer-bottom-links a {
  white-space: nowrap;
}

body[data-page="domains"] [data-page-shell],
body[data-page="domains"] .domain-section-card,
body[data-page="domains"] .domain-group,
body[data-page="domains"] .domain-pill {
  opacity: 1 !important;
  transform: none !important;
}

body[data-page="domains"] .domains-page-main {
  contain: paint;
}

body[data-page="domains"] .domain-section-card {
  box-shadow: 0 18px 42px rgba(16, 42, 67, 0.09);
}

body[data-page="domains"] .domain-pill {
  will-change: auto;
}

@media (min-width: 1061px) {
  .footer-bottom-bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
  }

  .footer-bottom-links {
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 1.35rem;
  }
}

@media (max-width: 1060px) {
  .section > .container,
  .domains-page-container {
    width: min(100% - 36px, 1140px);
  }

  body.site-home .hero {
    padding-top: clamp(42px, 7vw, 64px);
  }

  body.site-home .hero-content,
  body.site-home .hero-content h1,
  body.site-home .hero-content > .section-text {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  body.site-home .hero-actions {
    justify-content: center;
  }

  body.site-home .hero-grid,
  .benefit-grid,
  .why-grid,
  .contact-grid,
  .pricing-grid {
    justify-items: center;
  }

  .benefit-card,
  .why-card,
  .process-step,
  .contact-card {
    width: min(100%, 560px);
  }

  .process-steps {
    justify-items: center;
  }

  #packages .pricing-grid {
    width: min(100%, 820px);
    margin-left: auto;
    margin-right: auto;
    gap: 0.9rem;
  }

  body.site-home #packages .pricing-card {
    width: min(100%, 380px);
    min-height: 220px;
    padding: 22px;
  }

  body.site-home #packages .pricing-card-header {
    min-height: 92px;
    margin-bottom: 12px;
  }

  .footer-inquiry {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .footer-contact-link {
    display: inline-flex;
    width: auto;
    max-width: 100%;
    grid-template-columns: none;
    justify-content: center;
    justify-items: initial;
    text-align: left;
    gap: 0.7rem;
  }

  .footer-contact-link span:last-child {
    text-align: left;
    white-space: nowrap;
    font-size: clamp(0.84rem, 2.1vw, 1rem);
  }

  .footer-bottom-bar {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
  }
}

@media (max-width: 780px) {
  body.site-home .hero {
    padding-top: clamp(48px, 11vw, 72px);
  }

  body.site-home .hero-visual {
    margin-left: auto;
    margin-right: auto;
  }

  #packages .pricing-grid {
    width: min(100%, 390px);
  }

  body.site-home #packages .pricing-card {
    width: min(100%, 350px);
    min-height: 204px;
    padding: 20px;
    gap: 0.75rem;
  }

  body.site-home #packages .pricing-card-header {
    min-height: 78px;
    margin-bottom: 8px;
  }

  body.site-home #packages .pricing-card-header h3 {
    font-size: 1.42rem;
  }

  body.site-home #packages .plan-price {
    font-size: 1.24rem;
  }

  .domains-page-hero {
    padding-top: clamp(42px, 9vw, 60px);
    text-align: center;
  }

  .domains-page-head {
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
  }

  .domain-section-head,
  .domain-section-card p {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .domain-group h4 {
    text-align: center;
  }

  .domain-pill-grid {
    grid-auto-rows: minmax(46px, auto);
  }

  .domain-pill {
    min-height: 46px;
    height: auto;
  }

  .domain-pill span {
    -webkit-line-clamp: 3;
  }
}

@media (max-width: 520px) {
  .section > .container,
  .domains-page-container {
    width: min(100% - 28px, 1140px);
  }

  .section {
    padding-left: 0;
    padding-right: 0;
  }

  body.site-home .hero {
    padding-top: 54px;
  }

  body.site-home .hero-actions {
    width: 100%;
  }

  body.site-home .hero-actions .btn {
    max-width: 320px;
  }

  body.site-home #packages .pricing-card {
    width: min(100%, 330px);
    min-height: 190px;
    padding: 18px;
  }

  body.site-home #packages .title-row {
    gap: 0.65rem;
  }

  .footer-contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .footer-contact-link {
    gap: 0.58rem;
  }

  .footer-bottom-links {
    width: min(100%, 300px);
    gap: 0.7rem 1rem;
  }

  .domains-page-head h1 {
    font-size: clamp(1.82rem, 10vw, 2.35rem);
  }

  .domain-section-card {
    padding: 18px 14px;
  }
}
