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

/* ==========================================
   Custom Properties
   ========================================== */
:root {
  --red: #E41A00;
  --red-dark: #C01600;
  --orange: #FDA53E;
  --yellow: #FFB724;
  --pink: #FF516D;
  --dark: #3A3A3A;
  --dark-light: #555;
  --gray: #888;
  --gray-light: #E0E0E0;
  --white: #FFFFFF;
  --cream: #FFF9F3;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
  --radius: 12px;
  --transition: .3s ease;
  --container: 1200px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color var(--transition); }

ul { list-style: none; }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* ==========================================
   Utilities
   ========================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 6rem 0; }
.section--cream { background: var(--cream); }
.section--dark { background: var(--dark); color: var(--white); }

.text-center { text-align: center; }

.section__header {
  max-width: 640px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section__tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .75rem;
}

.section__title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1rem;
}

.section--dark .section__title { color: var(--white); }

.section__subtitle {
  font-size: 1.1rem;
  color: var(--dark-light);
  line-height: 1.7;
}

.section--dark .section__subtitle { color: rgba(255,255,255,.7); }

/* ==========================================
   Buttons
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .95rem;
  padding: .875rem 2rem;
  border-radius: 50px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(228,26,0,.3);
}

.btn--primary:hover {
  background: var(--red-dark);
  box-shadow: 0 6px 24px rgba(228,26,0,.4);
  transform: translateY(-2px);
}

.btn--outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}

.btn--outline:hover {
  background: var(--white);
  color: var(--red);
}

.btn--outline-dark {
  border: 2px solid var(--red);
  color: var(--red);
  background: transparent;
}

.btn--outline-dark:hover {
  background: var(--red);
  color: var(--white);
}

.btn--dark {
  background: var(--dark);
  color: var(--white);
}

.btn--dark:hover {
  background: #222;
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

/* ==========================================
   Header
   ========================================== */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.header__logo img {
  height: 50px;
  width: auto;
}

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

.header__menu { display: flex; gap: .25rem; }

.header__menu a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .9rem;
  padding: .5rem 1rem;
  border-radius: 8px;
  color: var(--dark);
  transition: all var(--transition);
}

.header__menu a:hover,
.header__menu a.active {
  color: var(--red);
  background: rgba(228,26,0,.08);
}

.header__cta {
  padding: .625rem 1.5rem;
  font-size: .85rem;
  background: var(--red);
  color: var(--white);
}

/* Hamburger */
.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.header__toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.header__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__toggle.active span:nth-child(2) { opacity: 0; }
.header__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==========================================
   Hero
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #E41A00 0%, #FF516D 40%, #FDA53E 70%, #FFB724 100%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E")
    repeat;
  z-index: 1;
}

.hero .container { position: relative; z-index: 2; }

.hero__content {
  max-width: 700px;
  color: var(--white);
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
  padding: .5rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero__title span { color: var(--yellow); }

.hero__subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  opacity: .9;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

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

.hero__shape {
  position: absolute;
  right: -5%;
  bottom: -10%;
  width: 45%;
  opacity: .08;
  z-index: 1;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.7);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero__scroll i { font-size: 1.25rem; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  padding: 10rem 0 5rem;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #E41A00 0%, #FF516D 50%, #FDA53E 100%);
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E")
    repeat;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero__title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: .75rem;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  color: rgba(255,255,255,.8);
}

.page-hero__breadcrumb a:hover { color: var(--white); }

.page-hero__breadcrumb span { color: var(--yellow); }

/* Angled divider */
.angle-divider {
  position: relative;
  height: 80px;
  margin-top: -80px;
  z-index: 2;
}

.angle-divider svg { display: block; width: 100%; height: 100%; }
.angle-divider--white svg path { fill: var(--white); }
.angle-divider--cream svg path { fill: var(--cream); }

/* ==========================================
   Services Cards
   ========================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: all var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(228,26,0,.08);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, rgba(228,26,0,.08), rgba(253,165,62,.08));
  color: var(--red);
}

.service-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: .75rem;
}

.service-card__text {
  color: var(--dark-light);
  font-size: .95rem;
  line-height: 1.7;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .9rem;
  color: var(--red);
  margin-top: 1.25rem;
  transition: gap var(--transition);
}

.service-card__link:hover { gap: .75rem; }

/* Section cream cards */
.section--cream .service-card { box-shadow: var(--shadow-sm); }

/* ==========================================
   About Preview
   ========================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.about__image-main {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--cream), rgba(228,26,0,.05));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__image-main img {
  max-height: 80%;
  object-fit: contain;
}

.about__badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
  line-height: 1.2;
}

.about__badge-number {
  font-size: 2.25rem;
  display: block;
}

.about__badge-text {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: .9;
}

.about__tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .75rem;
}

.about__title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.about__text {
  color: var(--dark-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .9rem;
}

.about__feature i {
  color: var(--red);
  font-size: 1.1rem;
}

/* ==========================================
   Stats
   ========================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat {
  text-align: center;
  padding: 2rem 1rem;
}

.stat__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: .5rem;
}

.stat__label {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
}

/* ==========================================
   Differentials / Features
   ========================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.feature-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--red), var(--pink));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(228,26,0,.25);
}

.feature-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: .5rem;
}

.feature-card__text {
  color: var(--dark-light);
  font-size: .9rem;
}

/* ==========================================
   CTA Banner
   ========================================== */
.cta-banner {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red) 0%, var(--pink) 100%);
}

.cta-banner .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner__text {
  color: rgba(255,255,255,.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================
   About Page
   ========================================== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story__content p {
  color: var(--dark-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.story__image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--cream), rgba(253,165,62,.08));
  border-radius: var(--radius);
}

.story__image img {
  max-width: 70%;
  object-fit: contain;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border-bottom: 4px solid transparent;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--red);
}

.value-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.value-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: .75rem;
}

.value-card__text {
  color: var(--dark-light);
  font-size: .95rem;
}

/* ==========================================
   Services Page
   ========================================== */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-detail {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border-left: 4px solid transparent;
}

.service-detail:hover {
  box-shadow: var(--shadow-lg);
  border-left-color: var(--red);
  transform: translateY(-4px);
}

.service-detail__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, rgba(228,26,0,.1), rgba(253,165,62,.1));
  color: var(--red);
}

.service-detail__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: .75rem;
}

.service-detail__text {
  color: var(--dark-light);
  font-size: .95rem;
  line-height: 1.7;
}

.service-detail ul {
  margin-top: .75rem;
  padding-left: .25rem;
}

.service-detail li {
  color: var(--dark-light);
  font-size: .9rem;
  padding: .25rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.service-detail li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .7rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 12.5%;
  width: 75%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow));
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  margin: 0 auto 1.25rem;
  background: var(--white);
  color: var(--red);
  border: 3px solid var(--red);
  box-shadow: var(--shadow-sm);
}

.process-step__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .5rem;
}

.process-step__text {
  color: var(--dark-light);
  font-size: .9rem;
}

/* ==========================================
   Contact Page
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: .5rem;
  color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .875rem 1rem;
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: all var(--transition);
  color: var(--dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(228,26,0,.08);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-info { padding: 1rem 0; }

.contact-info__item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-info__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  background: linear-gradient(135deg, rgba(228,26,0,.08), rgba(253,165,62,.08));
  color: var(--red);
  flex-shrink: 0;
}

.contact-info__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .25rem;
}

.contact-info__text {
  color: var(--dark-light);
  font-size: .95rem;
  line-height: 1.6;
}

.contact-info__text a:hover { color: var(--red); }

.contact-map {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: .9rem;
  border: 2px dashed var(--gray-light);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
}

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

.footer__brand img {
  height: 60px;
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: .9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer__links a,
.footer__contact-list li {
  display: block;
  font-size: .9rem;
  padding: .35rem 0;
  transition: all var(--transition);
}

.footer__links a:hover { color: var(--orange); transform: translateX(4px); }

.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}

.footer__contact-list i { color: var(--orange); margin-top: .25rem; }

.footer__social {
  display: flex;
  gap: .75rem;
  margin-top: .5rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  transition: all var(--transition);
}

.footer__social a:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-3px);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  text-align: center;
  font-size: .85rem;
}

/* ==========================================
   Animations
   ========================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 1024px) {
  .hero__title { font-size: 2.75rem; }
  .services-grid,
  .services-page-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }

  .header__nav {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    box-shadow: -8px 0 32px rgba(0,0,0,.1);
    transition: right var(--transition);
    z-index: 999;
  }

  .header__nav.open { right: 0; }

  .header__menu {
    flex-direction: column;
    width: 100%;
    gap: .25rem;
  }

  .header__menu a {
    color: var(--dark);
    padding: .75rem 1rem;
    width: 100%;
    display: block;
    font-size: 1rem;
  }

  .header__cta {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
    background: var(--red);
    color: var(--white);
    box-shadow: none;
  }

  .header__toggle { display: flex; }

  .hero { min-height: 100svh; padding: 7rem 0 4rem; }
  .hero__title { font-size: 2.25rem; }
  .hero__subtitle { font-size: 1rem; }

  .page-hero { padding: 8rem 0 3.5rem; }
  .page-hero__title { font-size: 2.25rem; }

  .about-grid,
  .story-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .services-grid,
  .services-page-grid,
  .values-grid { grid-template-columns: 1fr; }

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

  .stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  .section__title { font-size: 1.75rem; }
  .about__title { font-size: 1.75rem; }

  .cta-banner__title { font-size: 1.75rem; }

  .form-row { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }

  .about__badge { position: relative; bottom: auto; right: auto; display: inline-flex; gap: .5rem; align-items: center; margin-top: 1rem; }
  .about__badge-number { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.85rem; }
  .hero__buttons { flex-direction: column; }
  .hero__buttons .btn { width: 100%; justify-content: center; }
  .stat__number { font-size: 2.25rem; }
}

/* Mobile menu overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}
