:root {
  --ink: #17202a;
  --muted: #5c6774;
  --paper: #fbfaf7;
  --line: #dde3e8;
  --green: #0f8a78;
  --green-dark: #0b4f5a;
  --gold: #d69f32;
  --blue: #1e5f92;
  --red: #b93f45;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(23, 32, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  color: var(--white);
  background: rgba(16, 27, 38, 0.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.brand,
.main-nav,
.hero-actions,
.contact-details {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 52px;
  height: 42px;
  object-fit: contain;
  border-radius: 6px;
  background: #050505;
}

.main-nav {
  gap: 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
  font-weight: 600;
}

.header-cta,
.primary-button,
.secondary-button,
.contact-form button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-weight: 800;
}

.header-cta {
  padding: 0 18px;
  color: var(--ink);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 6vw, 78px) 76px;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 22, 32, 0.92) 0%, rgba(8, 22, 32, 0.68) 54%, rgba(8, 22, 32, 0.22) 100%),
    linear-gradient(0deg, rgba(8, 22, 32, 0.5), transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  color: var(--white);
}

.hero-visual {
  position: absolute;
  right: clamp(20px, 6vw, 78px);
  bottom: 64px;
  z-index: 2;
  width: min(280px, 28vw);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  animation: float-card 5.4s ease-in-out infinite;
}

.hero-visual img {
  display: block;
  width: 100%;
  border-radius: 8px;
  background: #050505;
}

.hero-visual div {
  display: grid;
  gap: 3px;
  margin-top: 12px;
}

.hero-visual strong {
  font-size: 0.95rem;
}

.hero-visual span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  font-weight: 700;
}

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

  50% {
    transform: translateY(-14px);
  }
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.65rem, 5.6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
}

.hero-actions {
  gap: 14px;
  flex-wrap: wrap;
}

.primary-button,
.secondary-button {
  padding: 0 22px;
}

.primary-button {
  color: var(--ink);
  background: var(--gold);
}

.secondary-button {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.46);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-band div {
  padding: 28px clamp(16px, 3vw, 34px);
  background: var(--white);
}

.trust-band strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.1;
}

.trust-band span {
  color: var(--muted);
  font-weight: 600;
}

.trust-band .live-count-card {
  color: var(--white);
  background: var(--green-dark);
}

.trust-band .live-count-card strong {
  color: var(--gold);
  font-size: 2rem;
}

.trust-band .live-count-card span:last-child {
  color: rgba(255, 255, 255, 0.84);
}

.section,
.feature-section,
.contact-section {
  padding: 88px clamp(20px, 6vw, 78px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading p:not(.eyebrow),
.feature-copy p:not(.eyebrow),
.contact-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.about-section {
  background: linear-gradient(180deg, #ffffff 0%, #f5f9fb 100%);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.about-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.about-lead {
  color: var(--green-dark) !important;
  font-weight: 800;
}

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

.about-grid article {
  min-height: 150px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
  box-shadow: 0 14px 32px rgba(23, 32, 42, 0.06);
}

.about-grid strong {
  color: var(--green-dark);
  font-size: 2.3rem;
  line-height: 1;
}

.about-grid span {
  color: var(--muted);
  font-weight: 800;
}

.about-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 138, 120, 0.18);
  border-radius: 8px;
  background: #111923;
  box-shadow: var(--shadow);
  animation: about-float 5.5s ease-in-out infinite;
}

.about-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-visual figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 3px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(8, 22, 32, 0.72);
  backdrop-filter: blur(12px);
}

.about-visual figcaption strong {
  color: var(--gold);
}

.about-visual figcaption span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

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

  50% {
    transform: translateY(-10px);
  }
}

.service-grid,
.course-grid,
.result-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.course-card,
.result-panel {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(23, 32, 42, 0.06);
}

.service-card p,
.course-card p,
.result-panel p,
.process-item p {
  color: var(--muted);
}

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

.course-card {
  min-height: 278px;
}

.featured-course {
  border-color: rgba(15, 138, 120, 0.34);
  background: linear-gradient(180deg, #ffffff 0%, #effaf7 100%);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green-dark);
  font-weight: 800;
}

.card-icon {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--green);
  font-weight: 800;
}

.feature-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
  color: var(--white);
  background: var(--green-dark);
}

.why-section {
  background: #fff;
}

.why-image {
  margin: 0 0 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111923;
  box-shadow: var(--shadow);
}

.why-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

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

.why-grid div {
  min-height: 240px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
  box-shadow: 0 14px 32px rgba(23, 32, 42, 0.06);
}

.why-grid strong {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--red);
}

.why-grid p {
  color: var(--muted);
}

.feature-copy {
  position: sticky;
  top: 116px;
}

.feature-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.75);
}

.process-list {
  display: grid;
  gap: 16px;
}

.process-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.process-item span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  color: var(--ink);
  background: var(--gold);
  font-weight: 800;
}

.process-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.predictor-section {
  background: #f6f8fb;
}

.predictor-layout {
  display: grid;
  grid-template-columns: minmax(320px, 480px) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.predictor-form,
.prediction-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(23, 32, 42, 0.07);
}

.predictor-form {
  display: grid;
  gap: 18px;
  padding: 26px;
}

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

.predictor-steps span {
  display: grid;
  min-height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--muted);
  background: #fbfcfd;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.predictor-steps span.active {
  color: var(--white);
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.form-stage {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.form-stage h3 {
  margin-bottom: 0;
}

.predictor-form label {
  display: grid;
  gap: 7px;
  font-size: 0.92rem;
  font-weight: 800;
}

.predictor-form input,
.predictor-form select {
  width: 100%;
  border: 1px solid #cfd8df;
  border-radius: 7px;
  padding: 13px 14px;
  color: var(--ink);
  background: #f8fafb;
  font: inherit;
}

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

.predictor-form button {
  min-height: 46px;
  border: 0;
  border-radius: 7px;
  color: var(--white);
  background: var(--blue);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.prediction-card {
  padding: 30px;
}

.prediction-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.prediction-card-head .eyebrow {
  margin-bottom: 8px;
}

.result-pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  white-space: nowrap;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--green-dark);
  background: #e8f6f3;
  font-size: 0.78rem;
  font-weight: 800;
}

.prediction-intro {
  color: var(--muted);
}

.predictor-benefits {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.predictor-benefits span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border-radius: 999px;
  padding: 0 11px;
  color: var(--ink);
  background: #f2f5f7;
  font-size: 0.8rem;
  font-weight: 800;
}

.prediction-results {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
}

.prediction-results div {
  display: grid;
  gap: 5px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.prediction-results strong {
  color: var(--green-dark);
}

.prediction-results span {
  color: var(--muted);
}

.college-match-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.state-predictor-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.state-predictor-card {
  padding: 18px;
  border: 1px solid rgba(15, 138, 120, 0.22);
  border-radius: 8px;
  background: #eefaf7;
}

.state-row-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.state-predictor-card h4 {
  margin: 0 0 6px;
  font-size: 1.08rem;
}

.state-predictor-card p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.state-predictor-card strong {
  color: var(--green-dark);
}

.state-college-list {
  display: grid;
  gap: 7px;
  margin-top: 12px;
}

.state-college-list article {
  display: grid;
  grid-template-columns: minmax(180px, 1.4fr) 110px minmax(180px, 1fr) minmax(180px, 1fr) minmax(130px, 0.8fr);
  gap: 10px;
  align-items: center;
  border-radius: 7px;
  padding: 12px;
  color: var(--ink);
  background: var(--white);
  font-size: 0.84rem;
}

.state-college-list b {
  font-weight: 800;
}

.state-college-list span {
  color: var(--green-dark);
  font-weight: 800;
}

.state-college-list small {
  color: var(--muted);
  font-weight: 700;
}
.state-directory {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(23, 32, 42, 0.06);
}

.state-directory h3 {
  margin-bottom: 16px;
}

.state-directory div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.state-directory span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--green-dark);
  background: #eefaf7;
  font-size: 0.86rem;
  font-weight: 800;
}

.college-match-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff8ed;
}

.college-match-card h4 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.college-match-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.college-match-card span {
  color: var(--green-dark);
  font-weight: 800;
  white-space: nowrap;
}

.college-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.college-meta small {
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--muted);
  background: var(--white);
  font-weight: 800;
}

.communication-section {
  background: var(--white);
}

.admin-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(34px, 6vw, 78px);
  padding: 88px clamp(20px, 6vw, 78px);
  color: var(--white);
  background: #17202a;
}

.admin-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
}

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

.admin-grid div {
  min-height: 106px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.testimonials {
  padding: 80px 20px;
  background: #f8fbff;
  text-align: center;
}

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

.testimonials h2 {
  margin-bottom: 10px;
  color: #0a2a66;
  font-size: 38px;
}

.subtitle {
  margin-bottom: 50px;
  color: #666;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.testimonial-card {
  padding: 30px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.stars {
  margin-bottom: 15px;
  font-size: 22px;
}

.testimonial-card p {
  margin-bottom: 20px;
  color: #555;
  line-height: 1.8;
}

.testimonial-card h4 {
  margin: 0;
  color: #0a2a66;
}

.testimonial-card span {
  color: #777;
  font-size: 14px;
}

.tech-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: 68px clamp(20px, 6vw, 78px);
  background: var(--gold);
}

.tech-band .eyebrow {
  color: var(--green-dark);
}

.tech-band h2 {
  margin-bottom: 0;
}

.tech-band p:last-child {
  margin: 0;
  color: rgba(23, 32, 42, 0.78);
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-links a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 7px;
  color: var(--white);
  background: var(--ink);
  font-weight: 800;
}

.social-links a:first-child {
  background: var(--red);
}

.inner-header {
  background: rgba(16, 27, 38, 0.94);
}

.inner-hero {
  padding: 150px clamp(20px, 6vw, 78px) 76px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 22, 32, 0.94), rgba(8, 22, 32, 0.68)),
    url("https://images.unsplash.com/photo-1581056771107-24ca5f033842?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.inner-hero h1 {
  max-width: 850px;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
}

.inner-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.college-page-section {
  background: #f6f8fb;
}

.college-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.college-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.college-table th,
.college-table td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.college-table th {
  color: var(--white);
  background: var(--green-dark);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.college-table td {
  color: var(--muted);
  font-weight: 600;
}

.college-table td:first-child {
  color: var(--ink);
  font-weight: 800;
}

.floating-enquiry {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.floating-toggle {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 40px rgba(185, 63, 69, 0.32);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.floating-form {
  display: none;
  width: min(360px, calc(100vw - 36px));
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.floating-enquiry.open .floating-form {
  display: grid;
}

.floating-form h3 {
  margin: 0;
}

.floating-form label {
  display: grid;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 800;
}

.floating-form input,
.floating-form select {
  width: 100%;
  border: 1px solid #cfd8df;
  border-radius: 7px;
  padding: 11px 12px;
  background: #f8fafb;
  font: inherit;
}

.floating-form button {
  min-height: 42px;
  border: 0;
  border-radius: 7px;
  color: var(--white);
  background: var(--green);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.results-section {
  background: #eef4f2;
}

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

.result-panel {
  min-height: 210px;
}

.testimonial-band {
  padding: 74px clamp(20px, 10vw, 140px);
  color: var(--white);
  background: var(--blue);
}

.testimonial-band blockquote {
  max-width: 920px;
  margin: 0 0 18px;
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  font-weight: 800;
  line-height: 1.12;
}

.testimonial-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 520px);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.contact-details {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.contact-details a {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfd8df;
  border-radius: 7px;
  padding: 13px 14px;
  color: var(--ink);
  background: #f8fafb;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  border: 0;
  color: var(--white);
  background: var(--green);
  cursor: pointer;
  font: inherit;
}

.contact-form .whatsapp-submit,
.floating-form .floating-whatsapp {
  background: #25d366;
  color: #0b2818;
}

.site-footer {
  display: grid;
  gap: 28px;
  padding: 52px clamp(20px, 6vw, 78px) 26px;
  color: rgba(255, 255, 255, 0.75);
  background: #111923;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(2, minmax(160px, 0.7fr)) minmax(260px, 1fr);
  gap: clamp(22px, 4vw, 52px);
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 16px;
}

.footer-brand .brand {
  justify-content: flex-start;
  color: var(--white);
}

.footer-brand p,
.footer-legal p,
.footer-bottom span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
}

.footer-links,
.footer-legal {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links h3,
.footer-legal h3 {
  margin: 0 0 4px;
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom div {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-page-body {
  min-height: 100vh;
  background: #eef3f6;
}

.admin-topbar {
  position: sticky;
}

.admin-shell {
  padding: 52px clamp(18px, 5vw, 64px) 76px;
}

.admin-login-panel,
.admin-dashboard {
  max-width: 1180px;
  margin: 0 auto;
}

.admin-login-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
  min-height: calc(100vh - 190px);
}

.admin-login-panel h1,
.admin-dashboard-head h1 {
  margin-bottom: 14px;
  font-size: clamp(2.3rem, 4.8vw, 4.4rem);
}

.admin-login-panel p:not(.eyebrow),
.admin-dashboard-head p {
  color: var(--muted);
  font-size: 1.04rem;
}

.admin-login-form,
.admin-toolbar,
.admin-table-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(23, 32, 42, 0.07);
}

.admin-login-form {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.admin-login-form label,
.admin-toolbar label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.admin-login-form input,
.admin-toolbar input,
.admin-toolbar select {
  width: 100%;
  border: 1px solid #cfd8df;
  border-radius: 7px;
  padding: 13px 14px;
  color: var(--ink);
  background: #f8fafb;
  font: inherit;
}

.admin-login-form button,
.admin-actions button {
  min-height: 46px;
  border: 0;
  border-radius: 7px;
  color: var(--white);
  background: var(--blue);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.admin-login-error {
  min-height: 24px;
  margin: 0;
  color: var(--red);
  font-weight: 800;
}

.admin-dashboard-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
  margin-bottom: 22px;
}

.admin-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-actions button {
  padding: 0 16px;
}

.admin-actions .admin-secondary {
  background: var(--green);
}

.admin-actions .admin-danger {
  background: var(--red);
}

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.admin-stat-grid article {
  display: grid;
  gap: 8px;
  min-height: 132px;
  align-content: end;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(23, 32, 42, 0.06);
}

.admin-stat-grid span {
  color: var(--muted);
  font-weight: 800;
}

.admin-stat-grid strong {
  font-size: 2.4rem;
  line-height: 1;
}

.admin-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: 14px;
  margin-bottom: 18px;
  padding: 18px;
}

.admin-table-wrap {
  position: relative;
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--white);
  background: var(--green-dark);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-table td {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.admin-table td:nth-child(3) {
  color: var(--ink);
  font-weight: 800;
}

.admin-table td span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  color: var(--green-dark);
  background: #e8f6f3;
  font-size: 0.78rem;
  font-weight: 800;
}

.admin-empty {
  padding: 34px;
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 86vh;
    padding-top: 132px;
  }

  .trust-band,
  .service-grid,
  .about-layout,
  .about-grid,
  .course-grid,
  .why-grid,
  .result-grid,
  .testimonial-grid,
  .feature-section,
  .contact-section,
  .predictor-layout,
  .admin-section,
  .tech-band {
    grid-template-columns: 1fr;
  }

  .admin-login-panel,
  .admin-dashboard-head,
  .admin-toolbar {
    grid-template-columns: 1fr;
  }

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

  .admin-actions {
    justify-content: flex-start;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-legal {
    grid-column: 1 / -1;
  }

  .feature-copy {
    position: static;
  }

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

  .hero-visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(360px, 100%);
    margin-top: 28px;
  }

  .about-visual {
    animation: none;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 12px;
    padding: 14px 16px;
  }

  .brand span:last-child {
    max-width: 116px;
    line-height: 1.15;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 92vh;
    padding: 118px 18px 44px;
  }

  h1 {
    font-size: 2.6rem;
  }

  .secondary-button,
  .primary-button {
    width: 100%;
  }

  .section,
  .feature-section,
  .contact-section {
    padding: 64px 18px;
  }

  .trust-band div {
    padding: 22px 18px;
  }

  .service-card,
  .course-card,
  .why-grid div,
  .result-panel,
  .contact-form,
  .predictor-form,
  .prediction-card {
    padding: 22px;
  }

  .admin-section {
    padding: 64px 18px;
  }

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

  .admin-grid div {
    min-height: 78px;
  }

  .tech-band {
    padding: 54px 18px;
  }

  .social-links a {
    width: 100%;
  }

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

  .why-image img {
    aspect-ratio: 4 / 3;
  }

  .college-match-card {
    grid-template-columns: 1fr;
  }

  .state-row-head,
  .state-predictor-list {
    grid-template-columns: 1fr;
  }

  .state-row-head {
    display: grid;
  }

  .state-college-list article {
    grid-template-columns: 1fr;
  }

  .split-fields,
  .predictor-steps {
    grid-template-columns: 1fr;
  }

  .prediction-card-head {
    display: grid;
  }

  .floating-enquiry {
    right: 12px;
    bottom: 12px;
  }

  .process-item {
    grid-template-columns: 42px 1fr;
    padding: 20px;
  }

  .process-item span {
    width: 40px;
    height: 40px;
  }

  .site-footer {
    padding: 42px 18px 24px;
  }

  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-main {
    display: grid;
  }

  .footer-bottom {
    display: grid;
    justify-items: start;
  }

  .footer-bottom div {
    justify-content: flex-start;
  }

  .admin-shell {
    padding: 38px 18px 58px;
  }

  .admin-stat-grid {
    grid-template-columns: 1fr;
  }

  .admin-actions button {
    width: 100%;
  }
}
