/* ================================================== */
/* Design system: variables & reset */
/* ================================================== */

:root {
  --bg: #050608;
  --bg-elevated: #0d0f13;
  --bg-card: #11141a;
  --border-subtle: #1b1f27;
  --border-strong: #262b36;

  --text: #f5f5f7;
  --text-muted: #a3a8b5;
  --text-soft: #7b8190;

  --accent: #ff7a00;
  --accent-soft: rgba(255, 122, 0, 0.12);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.35);

  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3rem;

  --font-base: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-base);
  background: radial-gradient(circle at top, #101320 0, #050608 55%);
  color: var(--text);
  padding-top: 4.5rem;
}

/* Links & lists */

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

a:hover {
  color: var(--accent);
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

main {
  margin: 0;
  padding: 0;
}

/* ================================================== */
/* Buttons */
/* ================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #050608;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease,
    box-shadow 0.18s ease, border-color 0.18s ease;
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.35);
}

.btn:hover {
  background: #ff8f26;
  box-shadow: 0 10px 26px rgba(255, 122, 0, 0.45);
  color: #050608;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border-subtle);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--border-subtle);
  color: var(--text);
  box-shadow: none;
}

/* ================================================== */
/* Header / Navigation */
/* ================================================== */

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  background: rgba(5, 6, 8, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}

header > nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

/* Logo */

.logo {
  display: flex;
  align-items: center;
  padding-left: 0;
}

.logo > a > img {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  box-shadow: 0 0 0 1px var(--border-subtle);
}

/* Nav links */

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.75rem;
  padding: 0.4rem 0.75rem;
}

.nav-links > li > a {
  position: relative;
  font-size: 0.9rem;
  color: var(--text-soft);
  padding: 0.25rem 0;
  transition: color 0.18s ease;
}

.nav-links > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transition: width 0.18s ease;
}

.nav-links > li > a:hover {
  color: var(--text);
}

.nav-links > li > a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--text);
  font-weight: 600;
}

/* Auth links */

.auth-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.auth-links > li > a {
  font-size: 0.85rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-soft);
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.auth-links > li > a:hover {
  background: var(--border-subtle);
  color: var(--text);
  border-color: var(--accent);
}

/* ================================================== */
/* Footer */
/* ================================================== */

footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-lg) 1.5rem var(--space-md);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-soft);
}

footer nav {
  flex: 1 1 180px;
  min-width: 140px;
}

footer nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

footer nav ul li a {
  font-size: 0.9rem;
  color: var(--text-soft);
}

footer nav ul li a:hover {
  color: var(--accent);
}

footer > p {
  width: 100%;
  margin: 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-soft);
  opacity: 0.8;
}

/* ================================================== */
/* Layout helpers */
/* ================================================== */

.hero,
.section-intro,
.services,
.home-contact,
.indexCardWrapper,
.testimonials,
.about-section,
.contact-grid,
.dashboard-page,
.servicesHero,
.servicesIntro,
.serviceCards,
.serviceCardWrapper {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* ================================================== */
/* Home: Hero */
/* ================================================== */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: var(--space-lg);
  min-height: 80vh;
  padding: var(--space-xl) 1.5rem var(--space-lg);
  align-items: center;
}

.hero-copy {
  background: linear-gradient(135deg, rgba(17, 20, 26, 0.96), rgba(9, 11, 16, 0.96));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: var(--space-lg);
  box-shadow: var(--shadow-soft);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.05;
  margin: 0 0 0.75rem;
}

.hero-copy p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-features {
  display: grid;
  gap: 0.75rem;
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  padding: var(--space-md);
}

.feature-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-soft);
}

/* ================================================== */
/* Section intro */
/* ================================================== */

.section-intro {
  padding: 0 1.5rem var(--space-lg);
  text-align: center;
}

.section-intro h2 {
  font-size: 2rem;
  margin: 0 0 0.5rem;
}

.section-intro p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-soft);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

/* ================================================== */
/* Services preview */
/* ================================================== */

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--space-md);
  padding: 0 1.5rem var(--space-xl);
}

.service-card,
.card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 14rem;
}

.service-card h3,
.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.service-card p,
.card p {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-soft);
}

/* ================================================== */
/* Home contact section */
/* ================================================== */

.home-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: var(--space-md);
  padding: 0 1.5rem var(--space-xl);
}

.contact-promo,
.home-contact-form {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: var(--space-lg);
}

.contact-promo h2 {
  margin: 0 0 0.5rem;
  font-size: 1.6rem;
}

.contact-promo p {
  margin: 0 0 1.5rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.home-contact-form {
  display: grid;
  gap: 0.75rem;
}

.home-contact-form input,
.home-contact-form textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  color: var(--text);
  font-size: 0.95rem;
}

.home-contact-form textarea {
  min-height: 9rem;
  resize: vertical;
}

/* ================================================== */
/* Index cards (About, Blog, Add-on) */
/* ================================================== */

.indexCardWrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--space-md);
  padding: 0 1.5rem var(--space-xl);
}

.indexCard {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.indexCard h2 {
  margin: 0;
  font-size: 1.3rem;
}

.indexCard p {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: var(--text-soft);
}

/* ================================================== */
/* Testimonials */
/* ================================================== */

.testimonials {
  padding: 0 1.5rem var(--space-xl);
}

.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: var(--space-lg);
}

.testimonial-card p {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.testimonial-card span {
  font-size: 0.95rem;
  color: var(--text-soft);
}

/* ================================================== */
/* Contact / About / Services / Dashboard shared */
/* (kept minimal, reusing card styles) */
/* ================================================== */

.contact-hero,
.about-hero,
.servicesHero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 55vh;
  padding: var(--space-xl) 1.5rem var(--space-lg);
}

.contact-hero .page-intro,
.about-hero .page-intro,
.servicesHeroContent {
  max-width: 55rem;
  width: 100%;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.contact-hero .page-intro h1,
.about-hero .page-intro h1,
.servicesHeroContent h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.contact-hero .page-intro p,
.about-hero .page-intro p,
.servicesHeroContent p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-soft);
}

/* About / contact content grids */

.about-section,
.contact-grid,
.dashboard-page {
  padding: var(--space-xl) 1.5rem var(--space-xl);
}

.content-grid,
.contact-grid,
.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-md);
}

.highlight-card,
.about-card,
.contact-details,
.contact-form-panel,
.dashboard-panel,
.metric-card,
.serviceCard,
.offerCard {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  padding: var(--space-md);
}

/* Forms */

.contact-page-form input,
.contact-page-form textarea,
.auth-form input,
.auth-form textarea,
.dashboard-form textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  color: var(--text);
  font-size: 0.95rem;
}

/* ================================================== */
/* Responsive */
/* ================================================== */

@media (max-width: 900px) {
  header > nav {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    row-gap: 0.5rem;
  }

  .auth-links {
    justify-content: flex-end;
  }

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

  .home-contact {
    grid-template-columns: 1fr;
  }

  .content-grid,
  .contact-grid,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  header > nav {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero,
  .about-section,
  .contact-hero,
  .about-hero,
  .servicesHero,
  .dashboard-page {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-copy,
  .contact-promo,
  .home-contact-form,
  .testimonial-card,
  .service-card,
  .indexCard,
  .contact-details,
  .contact-form-panel,
  .about-card,
  .highlight-card,
  .dashboard-panel {
    padding: var(--space-md);
  }

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

@media (max-width: 400px) {
  .btn {
    width: 100%;
    justify-content: center;
  }

  .nav-links {
    gap: 0.5rem;
  }
}

/* ================================================== */
/* SERVICES PAGE — HERO */
/* ================================================== */

.servicesHero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: var(--space-xl) 1.5rem var(--space-lg);
}

.servicesHeroContent {
  max-width: 60rem;
  width: 100%;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.servicesHeroContent h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.servicesHeroContent p {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-soft);
}

/* ================================================== */
/* SERVICES INTRO BLOCKS */
/* ================================================== */

.servicesIntro {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
  padding: var(--space-xl) 1.5rem 0;
}

.serviceBlock {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  padding: var(--space-lg);
  text-align: center;
}

.serviceBlock h2 {
  margin: 0 0 0.75rem;
  font-size: 1.6rem;
}

.serviceBlock p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-soft);
}

/* ================================================== */
/* OFFERINGS INTRO */
/* ================================================== */

.serviceOfferingsIntro {
  max-width: 60rem;
  margin: 0 auto;
  padding: var(--space-xl) 1.5rem var(--space-lg);
  text-align: center;
}

.serviceOfferingsIntro h2 {
  margin: 0 0 0.75rem;
  font-size: 2rem;
}

.serviceOfferingsIntro p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.75;
}

/* ================================================== */
/* CORE PACKAGE CARDS */
/* ================================================== */

.serviceCards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
  padding: 0 1.5rem var(--space-xl);
}

.offerCard {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.offerCard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.offerCard h3 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
}

.offerCard .price {
  margin: -0.25rem 0 1rem;
  font-size: 1.2rem;
  color: var(--accent);
}

.offerCard ul {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.offerCard ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.offerCard ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ================================================== */
/* SERVICE CARD WRAPPER (BOTTOM SECTION) */
/* ================================================== */

.serviceCardWrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
  padding: 0 1.5rem var(--space-xl);
}

.serviceCard {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 14rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.serviceCard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.serviceCard h2 {
  margin: 0 0 0.75rem;
  font-size: 1.4rem;
}

.serviceCard p {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ================================================== */
/* RESPONSIVE */
/* ================================================== */

@media (max-width: 900px) {
  .servicesHero {
    padding: var(--space-lg) 1.25rem;
  }

  .servicesHeroContent {
    padding: var(--space-lg);
  }
}

@media (max-width: 680px) {
  .serviceOfferingsIntro {
    padding: var(--space-lg) 1.25rem;
  }

  .offerCard,
  .serviceCard {
    padding: var(--space-md);
  }
}


/* ================================================== */
/* ABOUT PAGE — HERO */
/* ================================================== */

.about-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 65vh;
  padding: var(--space-xl) 1.5rem var(--space-lg);
}

.about-hero .page-intro {
  max-width: 60rem;
  width: 100%;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.about-hero .page-intro h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.about-hero .page-intro p {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

/* ================================================== */
/* ABOUT PAGE — SECTION WRAPPER */
/* ================================================== */

.about-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-xl) 1.5rem;
}

.about-section h2 {
  margin: 0 0 0.75rem;
  font-size: 2rem;
}

/* ================================================== */
/* ABOUT PAGE — STORY SECTION */
/* ================================================== */

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-md);
  align-items: flex-start;
}

.about-section p {
  margin: 0 0 1.25rem;
  line-height: 1.8;
  color: var(--text-soft);
}

/* Highlight cards */

.about-highlights {
  display: grid;
  gap: var(--space-md);
}

.highlight-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  padding: var(--space-md);
}

.highlight-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.highlight-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ================================================== */
/* ABOUT PAGE — MISSION CARDS */
/* ================================================== */

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.about-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  padding: var(--space-lg);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.about-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.about-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
}

.about-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ================================================== */
/* ABOUT PAGE — CURRENT RESULTS SECTION */
/* ================================================== */

.currentResults {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-xl) 1.5rem;
}

.resultsWrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-md);
  align-items: center;
}

.resultsWrapper h3 {
  margin: 0 0 0.75rem;
  font-size: 1.4rem;
}

.resultsWrapper p {
  margin: 0;
  line-height: 1.8;
  color: var(--text-soft);
}

.resultsWrapper a {
  color: var(--accent);
}

.resultsImg {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

/* ================================================== */
/* ABOUT PAGE — VALUES SECTION */
/* ================================================== */

.values-grid {
  display: grid;
  gap: var(--space-md);
  max-width: 60rem;
}

.values-grid p {
  margin: 0;
  line-height: 1.8;
  color: var(--text-soft);
}

/* ================================================== */
/* RESPONSIVE */
/* ================================================== */

@media (max-width: 900px) {
  .content-grid,
  .resultsWrapper {
    grid-template-columns: 1fr;
  }

  .about-hero {
    padding: var(--space-lg) 1.25rem;
  }

  .about-hero .page-intro {
    padding: var(--space-lg);
  }
}

@media (max-width: 680px) {
  .about-card,
  .highlight-card,
  .resultsWrapper div,
  .resultsImg {
    padding: var(--space-md);
  }

  .hero-actions {
    flex-direction: column;
  }
}

/* ================================================== */
/* CONTACT PAGE — HERO */
/* ================================================== */

.contact-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 55vh;
  padding: var(--space-xl) 1.5rem var(--space-lg);
}

.contact-hero .page-intro {
  max-width: 55rem;
  width: 100%;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.contact-hero .page-intro h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.contact-hero .page-intro p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-soft);
}

/* ================================================== */
/* CONTACT PAGE — GRID LAYOUT */
/* ================================================== */

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-xl) 1.5rem var(--space-xl);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: var(--space-md);
}

/* ================================================== */
/* CONTACT DETAILS PANEL */
/* ================================================== */

.contact-details {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: var(--space-lg);
}

.contact-details h2 {
  margin: 0 0 0.75rem;
  font-size: 1.6rem;
}

.contact-details p {
  margin: 0 0 1.25rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* Contact info cards */

.contact-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  padding: var(--space-md);
  margin-bottom: var(--space-sm);
}

.contact-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
}

.contact-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ================================================== */
/* CONTACT FORM PANEL */
/* ================================================== */

.contact-form-panel {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: var(--space-lg);
}

.contact-form-panel h2 {
  margin: 0 0 0.75rem;
  font-size: 1.6rem;
}

.contact-page-form {
  display: grid;
  gap: var(--space-md);
}

.form-group {
  display: grid;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.contact-page-form input,
.contact-page-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  color: var(--text);
  font-size: 0.95rem;
}

.contact-page-form textarea {
  resize: vertical;
  min-height: 10rem;
}

/* ================================================== */
/* RESPONSIVE */
/* ================================================== */

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

  .contact-hero {
    padding: var(--space-lg) 1.25rem;
  }

  .contact-hero .page-intro {
    padding: var(--space-lg);
  }
}

@media (max-width: 680px) {
  .contact-details,
  .contact-form-panel,
  .contact-card {
    padding: var(--space-md);
  }
}

/* ================================================== */
/* LOGIN PAGE — AUTH LAYOUT */
/* ================================================== */

.auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 6rem);
  padding: var(--space-xl) 1.5rem;
}

/* ================================================== */
/* LOGIN FORM CONTAINER */
/* ================================================== */

.auth-form {
  width: min(100%, 420px);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: var(--space-xl);
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.auth-form h1 {
  margin: 0 0 0.75rem;
  font-size: 2rem;
}

.auth-form p {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-soft);
}

/* ================================================== */
/* FORM FIELDS */
/* ================================================== */

.auth-form .form-group {
  display: grid;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}

.auth-form label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.auth-form input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  color: var(--text);
  font-size: 0.95rem;
}

/* ================================================== */
/* DIVIDER TEXT */
/* ================================================== */

.auth-form p[style] {
  color: var(--text-soft) !important;
  margin: 1.5rem 0 !important;
}

/* ================================================== */
/* OAUTH BUTTONS */
/* ================================================== */

.auth-form .form-group button {
  width: 100%;
  justify-content: center;
}

/* ================================================== */
/* LINKS BELOW FORM */
/* ================================================== */

.auth-form a {
  color: var(--accent);
  font-size: 0.9rem;
  transition: color 0.18s ease;
}

.auth-form a:hover {
  color: #ff9a3d;
}

/* ================================================== */
/* RESPONSIVE */
/* ================================================== */

@media (max-width: 680px) {
  .auth-form {
    padding: var(--space-lg);
  }
}
