/* ============================================
   EPD — Professional Affiliate Marketing Site
   ============================================ */

:root {
  --color-bg: #ffffff;
  --color-bg-alt: #f7faf7;
  --color-bg-dark: #1a1a1a;
  --color-bg-darker: #111111;
  --color-text: #2a2a2a;
  --color-text-light: #5c6b5c;
  --color-heading: #1a1a1a;
  --color-white: #ffffff;
  --color-mint: #c8dcc8;
  --color-sage: #8faa8f;
  --color-forest: #3d6544;
  --color-black: #1a1a1a;
  --color-primary: #3d6544;
  --color-primary-dark: #2d4f34;
  --color-primary-light: #8faa8f;
  --color-accent: #6d8f6d;
  --color-accent-light: #c8dcc8;
  --color-highlight: #d4e8d4;
  --color-muted: #8fa08f;
  --color-muted-dark: #5a6a5a;
  --gradient: linear-gradient(90deg, #c8dcc8 0%, #8faa8f 33%, #3d6544 66%, #1a1a1a 100%);
  --gradient-text: linear-gradient(135deg, #8faa8f, #3d6544);
  --shadow-sm: 0 1px 3px rgba(26, 26, 26, 0.06);
  --shadow-md: 0 4px 20px rgba(26, 26, 26, 0.08);
  --shadow-lg: 0 12px 40px rgba(26, 26, 26, 0.1);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 72px;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--gradient);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(61, 107, 61, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61, 107, 61, 0.45);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--full { width: 100%; }

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(61, 107, 61, 0.08);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 0;
}

.brand-bar {
  display: flex;
  gap: 0;
  width: 120px;
  height: 6px;
  margin-top: 12px;
  border-radius: 2px;
  overflow: hidden;
}

.brand-bar span:nth-child(1) { flex: 1; background: var(--color-mint); }
.brand-bar span:nth-child(2) { flex: 1; background: var(--color-sage); }
.brand-bar span:nth-child(3) { flex: 1; background: var(--color-forest); }
.brand-bar span:nth-child(4) { flex: 1; background: var(--color-black); }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  border-radius: 8px;
  transition: all var(--transition);
}

.nav__link:hover {
  color: var(--color-primary);
  background: rgba(61, 107, 61, 0.08);
}

.nav__link--cta {
  background: var(--gradient);
  color: var(--color-white) !important;
  margin-left: 8px;
}

.nav__link--cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  background: var(--gradient);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-heading);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 60px) 0 80px;
  background: linear-gradient(165deg, #2d4f34 0%, var(--color-bg-dark) 50%, var(--color-bg-darker) 100%);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(189, 212, 189, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 107, 61, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
}

.hero__glow--1 {
  width: 500px;
  height: 500px;
  background: var(--color-sage);
  top: -100px;
  right: -100px;
}

.hero__glow--2 {
  width: 400px;
  height: 400px;
  background: var(--color-forest);
  bottom: -50px;
  left: -100px;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero__badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-primary-light);
  background: rgba(61, 107, 61, 0.15);
  border: 1px solid rgba(109, 143, 109, 0.35);
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-muted);
  margin-bottom: 36px;
  max-width: 600px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stat strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 4px;
}

.hero__stat span {
  font-size: 13px;
  color: var(--color-muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---- Sections ---- */
.section {
  padding: 100px 0;
}

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

.section__header--left {
  text-align: left;
  margin: 0 0 32px;
}

.section__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.section__label--light { color: var(--color-primary-light); }

.section__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-heading);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

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

.section__desc {
  font-size: 17px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ---- Services ---- */
.services {
  background: var(--color-bg-alt);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--color-white);
  border: 1px solid rgba(30, 60, 30, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(61, 107, 61, 0.25);
}

.service-card--featured {
  background: linear-gradient(145deg, #1e3d1e 0%, var(--color-bg-dark) 100%);
  border-color: rgba(61, 107, 61, 0.2);
}

.service-card--featured .service-card__title { color: var(--color-white); }
.service-card--featured .service-card__desc { color: var(--color-muted); }
.service-card--featured .service-card__tag { color: var(--color-primary-light); }
.service-card--featured .service-card__list li { color: #c8ddc8; }
.service-card--featured .service-card__list li::before { color: var(--color-accent-light); }
.service-card--featured .service-card__icon {
  background: rgba(61, 107, 61, 0.2);
  color: var(--color-primary-light);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(61, 107, 61, 0.12);
  color: var(--color-primary);
  border-radius: 14px;
  margin-bottom: 20px;
}

.service-card__icon svg { width: 26px; height: 26px; }

.service-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 4px;
}

.service-card__tag {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card__list li {
  font-size: 14px;
  color: var(--color-text);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.service-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 600;
}

/* ---- Why Us ---- */
.why-us {
  background: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(189, 212, 189, 0.12), transparent 70%);
  pointer-events: none;
}

.why-us__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-us__text {
  font-size: 17px;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.why-us__points {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.why-us__points li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-us__check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(61, 107, 61, 0.18);
  color: var(--color-primary-light);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.why-us__points strong {
  display: block;
  color: var(--color-white);
  font-size: 16px;
  margin-bottom: 4px;
}

.why-us__points p {
  font-size: 14px;
  color: var(--color-muted-dark);
  line-height: 1.5;
}

.why-us__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: all var(--transition);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(61, 107, 61, 0.35);
}

.stat-card__number {
  font-size: 42px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}

.stat-card__suffix {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-accent-light);
}

.stat-card__label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--color-muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---- About ---- */
.about__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.about__body p {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about__promise {
  margin-top: 40px;
  padding: 32px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(30, 60, 30, 0.08);
}

.about__promise h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 20px;
}

.about__promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.promise-item {
  font-size: 14px;
  color: var(--color-text);
  padding: 12px 16px;
  background: var(--color-white);
  border-radius: 10px;
  border-left: 3px solid var(--color-primary);
}

.about__more {
  margin-top: 32px;
  padding: 28px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(30, 60, 30, 0.08);
  border-left: 4px solid var(--color-primary);
}

.about__more h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 10px;
}

.about__more p {
  font-size: 15px;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.about__email {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
}

.about__email:hover {
  color: var(--color-primary-dark);
}

/* ---- Team ---- */
.team {
  background: var(--color-bg-alt);
}

.team__featured {
  max-width: 420px;
  margin: 0 auto 48px;
}

.team__subtitle {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 28px;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.team-card {
  background: var(--color-white);
  border: 1px solid rgba(30, 60, 30, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}

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

.team-card--lead {
  border-color: rgba(61, 107, 61, 0.25);
  background: linear-gradient(180deg, #fff 0%, #f4f8f4 100%);
  padding: 36px 28px;
}

.team-card__avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-accent-light);
  box-shadow: var(--shadow-sm);
}

.team-card--lead .team-card__avatar {
  width: 96px;
  height: 96px;
  border-color: var(--color-primary);
}

.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team__contact {
  text-align: center;
  margin-top: 36px;
  font-size: 15px;
  color: var(--color-text-light);
}

.team__contact a {
  color: var(--color-primary);
  font-weight: 600;
}

.team__contact a:hover {
  color: var(--color-primary-dark);
}

.team-card__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.team-card__bio {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.team-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
}

.team-card__link:hover { color: var(--color-accent); }

.team-card__avatar--logo {
  background: linear-gradient(135deg, #f472b6, #c084fc);
  padding: 4px;
}

.team-card__avatar--logo img {
  border-radius: 50%;
  object-fit: cover;
}

/* ---- Contact ---- */
.section.contact {
  background: #ffffff;
  padding: 80px 0;
}

.contact__title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 40px;
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact__sidebar-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.contact__sidebar-desc {
  font-size: 15px;
  color: #5c6b5c;
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact__map-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid #e5e7eb;
}

.contact__map {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

.contact__map-card {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-white);
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  max-width: 220px;
}

.contact__map-card strong {
  display: block;
  font-size: 14px;
  color: var(--color-heading);
  margin-bottom: 4px;
}

.contact__map-card span {
  display: block;
  font-size: 12px;
  color: var(--color-text-light);
  line-height: 1.4;
  margin-bottom: 8px;
}

.contact__map-card a {
  font-size: 12px;
  font-weight: 600;
  color: #1a73e8;
}

.contact__info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact__info-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d4e8d4;
  color: #3d6544;
  border-radius: 8px;
  flex-shrink: 0;
}

.contact__info-icon svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px;
  max-height: 18px;
  flex-shrink: 0;
}

.contact__info-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 2px;
}

.contact__info-item a {
  font-size: 15px;
  color: #2a2a2a;
  font-weight: 500;
}

.contact__info-item a:hover {
  color: var(--color-primary);
}

.contact__hours {
  display: block;
  font-size: 13px;
  color: var(--color-muted);
  margin-top: 2px;
}

.contact__form {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.contact__form .form__group label {
  color: #1a1a1a;
}

.contact__form .form__group input,
.contact__form .form__group textarea {
  background: #eef2ff;
  border: 1px solid #dbeafe;
  color: #2a2a2a;
}

.btn--send {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}

.btn--send:hover {
  color: var(--color-primary);
}

.form__group input,
.form__group textarea {
  background: #eef2ff;
  border: 1px solid #dbeafe;
  color: #2a2a2a;
}

.form__group input:focus,
.form__group textarea:focus {
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px rgba(143, 170, 143, 0.2);
}

.form__group label {
  color: #1a1a1a;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__group {
  margin-bottom: 16px;
}

.form__group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 6px;
}

.form__group input,
.form__group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--color-text);
  background: #eef2ff;
  border: 1px solid #dbeafe;
  border-radius: 10px;
  outline: none;
  transition: all var(--transition);
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: #94a3b8;
}

.form__group input:focus,
.form__group textarea:focus {
  border-color: var(--color-primary-light);
  background: #eef2ff;
  box-shadow: 0 0 0 3px rgba(61, 107, 61, 0.2);
}

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

.form__note {
  margin-top: 12px;
  font-size: 14px;
  text-align: center;
  min-height: 20px;
}

.form__note.success { color: #34d399; }
.form__note.error { color: #f87171; }

/* ---- Footer ---- */
.footer {
  background: var(--color-bg-darker);
  padding: 48px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.footer__brand-mark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__brand-name {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: 1px;
  line-height: 1;
}

.brand-bar--footer {
  margin-top: 10px;
}

.brand-bar--footer span:nth-child(4) {
  background: #ffffff;
}

.footer__brand-name sup {
  font-size: 11px;
}

.footer__contact-email {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary-light);
}

.footer__contact-email:hover {
  color: var(--color-accent-light);
}

.footer__brand p {
  font-size: 14px;
  color: var(--color-muted-dark);
  margin-top: 12px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__links a {
  font-size: 14px;
  color: var(--color-muted);
  font-weight: 500;
}

.footer__emails {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__emails a {
  font-size: 14px;
  color: #94a3b8;
  font-weight: 500;
}

.footer__emails a:hover {
  color: var(--color-primary-light);
}

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

.footer__linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  transition: color var(--transition);
}

.footer__linkedin:hover {
  color: #0a66c2;
}

.footer__linkedin svg {
  display: block;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__bottom p,
.footer__bottom a {
  font-size: 13px;
  color: var(--color-muted-dark);
}

.footer__bottom a:hover { color: var(--color-primary-light); }

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

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

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: 1fr; }
  .why-us__layout { grid-template-columns: 1fr; gap: 48px; }
  .about__layout { grid-template-columns: 1fr; gap: 32px; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__layout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    background: var(--color-white);
    padding: 32px;
    transition: left var(--transition);
  }

  .nav__menu.active { left: 0; }

  .nav__link {
    font-size: 18px;
    padding: 12px 16px;
    width: 100%;
    text-align: center;
  }

  .nav__link--cta { margin-left: 0; margin-top: 8px; }

  .nav__toggle { display: flex; }

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

  .hero__stats { gap: 24px; }
  .about__promise-grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .why-us__stats { grid-template-columns: 1fr; }
}
