@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;800&family=Plus+Jakarta+Sans:wght@400;500;700&display=swap');

:root {
  /* Palette: Deep Indigo Background, Bright Coral Accent, Electric Blue, Lime Highlights */
  --col-bg: #F8FAFC; /* Soft white/blue tint */
  --col-surface: #FFFFFF;
  --col-primary: #FF5A5F; /* Coral */
  --col-primary-hover: #E0484D;
  --col-accent: #2D3AF5; /* Electric Blue */
  --col-highlight: #D9F99D; /* Lime */
  --col-text-main: #1E1B4B; /* Deep Indigo - High Contrast */
  --col-text-muted: #475569;
  --col-border: #E2E8F0;

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Spacing & Layout */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container-width: 1140px;
  --header-height: 80px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--col-bg);
  color: var(--col-text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--col-text-main);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 1.5rem;
  color: var(--col-text-muted);
  font-size: 1.05rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Utility Classes --- */

/* Container Pattern: Inner wrapper for layout control */
.u-container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
  width: 100%;
}

.u-tag {
  display: inline-block;
  background: var(--col-highlight);
  color: #1E293B;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Header / Nav --- */
.hdr {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.hdr__wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hdr__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--col-accent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hdr__logo span {
  color: var(--col-primary);
}

.hdr__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hdr__link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--col-text-main);
}

.hdr__link:hover {
  color: var(--col-primary);
}

.hdr__cta {
  background-color: var(--col-text-main);
  color: #fff;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.2s, background 0.2s;
}

.hdr__cta:hover {
  background-color: var(--col-primary);
  transform: translateY(-2px);
  color: #fff;
}

/* Mobile Menu Toggle (Hidden on Desktop) */
.hdr__menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--col-text-main);
}

/* --- Footer --- */
.foot {
  background-color: var(--col-text-main);
  color: #E2E8F0;
  padding-top: 4rem;
}

.foot__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
}

.foot__brand-desc {
  color: #94A3B8;
  font-size: 0.95rem;
  margin-top: 1rem;
  max-width: 300px;
}

.foot__col-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
}

.foot__link {
  display: block;
  color: #94A3B8;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.foot__link:hover {
  color: var(--col-primary);
}

.foot__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.875rem;
  color: #64748B;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.btn--primary {
  background-color: var(--col-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 90, 95, 0.4);
}

.btn--primary:hover {
  background-color: var(--col-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 90, 95, 0.5);
}

.btn--secondary {
  background-color: transparent;
  border-color: var(--col-text-main);
  color: var(--col-text-main);
}

.btn--secondary:hover {
  background-color: var(--col-text-main);
  color: #fff;
}

/* --- Hero Section --- */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 4rem; /* Offset for fixed header */
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  color: var(--col-text-main);
}

.hero-content h1 span {
  color: var(--col-primary);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  margin-bottom: 2.5rem;
  max-width: 90%;
}

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

.hero-visual {
  position: relative;
}

.hero-img {
  border-radius: var(--radius-lg);
  box-shadow: 20px 20px 0px var(--col-accent);
  width: 100%;
  object-fit: cover;
  transform: rotate(2deg);
  transition: transform 0.3s;
}

.hero-img:hover {
  transform: rotate(0deg);
}

/* --- Feature Cards --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: var(--col-surface);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--col-border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-color: var(--col-highlight);
}

.card__icon {
  width: 50px;
  height: 50px;
  background: var(--col-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--col-accent);
}

.card__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.card__text {
  font-size: 1rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* --- Stats Row --- */
.stats-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
  background: var(--col-text-main);
  color: #fff;
  padding: 3rem;
  border-radius: var(--radius-lg);
}

.stat-item h3 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--col-highlight);
  margin-bottom: 0.25rem;
}

.stat-item p {
  color: #CBD5E1;
  font-size: 1rem;
  margin: 0;
  font-weight: 500;
}

/* --- Content Section --- */
.content-section {
  background-color: var(--col-surface);
}

.content-layout {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.content-layout h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.content-layout p.lead {
  font-size: 1.25rem;
  color: var(--col-text-main);
  margin-bottom: 2rem;
}

/* --- CTA Band --- */
.cta-band {
  background: var(--col-primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.cta-band p {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-band .btn--white {
  background: #fff;
  color: var(--col-primary);
}

.cta-band .btn--white:hover {
  background: var(--col-highlight);
  color: var(--col-text-main);
}

/* --- FAQ --- */
.faq-list {
  max-width: 800px;
  margin: 2rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--col-border);
  padding: 1.5rem 0;
}

.faq-question {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--col-text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.faq-answer {
  margin-top: 0.75rem;
  color: var(--col-text-muted);
  display: block; /* Simplified for demo, usually JS toggles this */
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .hdr__nav {
    display: none; /* In real scenario, toggle via JS */
  }
  
  .hdr__menu-btn {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-actions {
    justify-content: center;
  }

  .hero-img {
    transform: rotate(0);
    box-shadow: 10px 10px 0px var(--col-accent);
  }

  .foot__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .foot__brand-desc {
    margin: 1rem auto;
  }
} body{margin:0} *{box-sizing:border-box} img,svg,video{max-width:100%;height:auto} 