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

:root {
  --c-primary: #F27059;
  --c-primary-dark: #E0553F;
  --c-accent: #E76F51;
  --c-bg-body: #FFF8F5;
  --c-bg-card: #FFFFFF;
  --c-text-main: #2C3E50;
  --c-text-muted: #5D6D7E;
  --c-border: #F0EBE8;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Manrope', sans-serif;
  
  --space-unit: 1rem;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  
  --shadow-soft: 0 4px 20px rgba(44, 62, 80, 0.04);
  --shadow-hover: 0 12px 30px rgba(242, 112, 89, 0.15);
  
  --container-width: 1200px;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-text-main);
  margin-bottom: calc(var(--space-unit) * 1.5);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }

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

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

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

/* Layout & Containers */
.hook-container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 3rem);
}

.hook-section {
  padding-block: clamp(3rem, 8vw, 6rem);
  display: block; /* Explicit block */
}

/* Header & Nav */
.hook-header {
  background-color: rgba(255, 248, 245, 0.9);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--c-border);
  padding-block: 1rem;
}

.hook-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hook-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--c-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hook-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  list-style: none;
}

.hook-menu-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--c-text-main);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.hook-menu-link:hover {
  color: var(--c-primary);
  background-color: rgba(242, 112, 89, 0.08);
}

.hook-menu-link--cta {
  background-color: var(--c-primary);
  color: white;
}

.hook-menu-link--cta:hover {
  background-color: var(--c-primary-dark);
  color: white;
}

/* Buttons */
.hook-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  border: none;
  gap: 0.5rem;
}

.hook-btn--primary {
  background-color: var(--c-primary);
  color: #fff;
}

.hook-btn--primary:hover {
  background-color: var(--c-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.hook-btn--secondary {
  background-color: transparent;
  border: 2px solid var(--c-border);
  color: var(--c-text-main);
}

.hook-btn--secondary:hover {
  border-color: var(--c-text-main);
  transform: translateY(-2px);
}

/* Hero Section */
.hook-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hook-hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
}

.hook-hero-eyebrow {
  display: inline-block;
  background-color: rgba(242, 112, 89, 0.1);
  color: var(--c-primary);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hook-hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #FFE5DD 0%, #FFF8F5 100%);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

/* Cards */
.hook-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.hook-card {
  background-color: var(--c-bg-card);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.hook-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(242, 112, 89, 0.2);
}

.hook-card-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(242, 112, 89, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--c-primary);
  font-size: 1.5rem;
}

/* Stats */
.hook-stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
  text-align: center;
}

.hook-stat-item {
  flex: 1 1 200px;
}

.hook-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--c-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hook-stat-label {
  font-size: 1rem;
  color: var(--c-text-muted);
  font-weight: 500;
}

/* FAQ */
.hook-faq-item {
  border-bottom: 1px solid var(--c-border);
  padding: 1.5rem 0;
}

.hook-faq-q {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--c-text-main);
}

.hook-faq-a {
  color: var(--c-text-muted);
}

/* Footer */
.hook-footer {
  background-color: var(--c-text-main);
  color: #fff;
  padding-top: 4rem;
  padding-bottom: 2rem;
  margin-top: 4rem;
}

.hook-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.hook-footer-col h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.hook-footer-col ul {
  list-style: none;
}

.hook-footer-col li {
  margin-bottom: 0.8rem;
}

.hook-footer-col a {
  color: #AAB7C4;
  font-size: 0.95rem;
}

.hook-footer-col a:hover {
  color: #fff;
}

.hook-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  color: #7F8C8D;
  font-size: 0.9rem;
}

/* Utility */
.hook-text-center { text-align: center; }
.hook-mb-0 { margin-bottom: 0; }
.hook-mb-sm { margin-bottom: 1rem; }
.hook-mb-md { margin-bottom: 2rem; }
.hook-mb-lg { margin-bottom: 3rem; }

@media (max-width: 768px) {
  .hook-menu {
    display: none; /* In a real scenario, this would be a hamburger menu */
  }
  .hook-nav {
    justify-content: space-between;
    flex-direction: row;
  }
} body{margin:0} *{box-sizing:border-box} img,svg,video{max-width:100%;height:auto} html{-webkit-text-size-adjust:100%} 