/* ============================================================
   AVENUE VISA — DESIGN SYSTEM
   style.css — Premium Overhaul
   ============================================================ */


/* ============================================================
   1. RESET
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-secondary);
  background-color: var(--bg-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style: none;
}

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


/* ============================================================
   2. CUSTOM PROPERTIES
   ============================================================ */

:root {
  /* Colors */
  --bg-primary: #FAFAF8;
  --bg-secondary: #F5F3EF;
  --bg-dark: #111111;
  --bg-dark-card: #1A1A1A;
  --bg-dark-elevated: #222222;
  --text-primary: #1A1A1A;
  --text-secondary: #5C5C5C;
  --text-light: #8A8A8A;
  --text-on-dark: #F0EDE8;
  --accent: #d5a847;
  --accent-hover: #c4972e;
  --accent-dark: #b8862a;
  --accent-light: rgba(213, 168, 71, 0.10);
  --accent-glow: rgba(213, 168, 71, 0.30);
  --accent-gradient: linear-gradient(135deg, #e8c36a, #d5a847, #b8862a);
  --border-light: #E0DDD6;
  --border-dark: #2A2A2A;
  --white: #FFFFFF;
  --whatsapp-green: #25D366;

  /* Typography */
  --font-heading: 'DM Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout */
  --container-max: 1200px;
  --section-padding: 120px;
  --section-padding-mobile: 72px;
  --card-gap: 24px;
  --card-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.06);
  --card-shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.06), 0 12px 40px rgba(0, 0, 0, 0.1);

  /* Header */
  --header-height: 80px;
  --header-height-mobile: 64px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 200ms var(--ease-out);
  --transition-medium: 350ms var(--ease-out);
}


/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: 56px; }
h2 { font-size: 40px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }

p {
  font-size: 16px;
  margin-bottom: 16px;
}

p:last-child {
  margin-bottom: 0;
}


/* ============================================================
   4. LAYOUT
   ============================================================ */

.container {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

.section {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.section--cream {
  background-color: var(--bg-secondary);
}

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

.section--dark {
  background-color: var(--bg-dark);
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__header h2 {
  margin-bottom: 16px;
}

.section__title-accent {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent-gradient);
  margin-left: auto;
  margin-right: auto;
  margin-top: 16px;
  border: none;
}

.section__header--left {
  text-align: left;
}

.section__header--left .section__title-accent {
  margin-left: 0;
  margin-right: 0;
}

.section__subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Grid */
.grid {
  display: grid;
  gap: var(--card-gap);
}

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

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid--5 {
  grid-template-columns: repeat(5, 1fr);
}


/* ============================================================
   5. BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 16px 36px;
  border-radius: 0;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background: var(--accent-gradient);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 16px var(--accent-glow);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #d5a847, #c4972e, #b8862a);
  border-color: transparent;
  box-shadow: 0 6px 28px rgba(213, 168, 71, 0.45);
  transform: translateY(-2px);
}

.btn--primary:active {
  transform: translateY(0) scale(0.97);
}

.btn--outline {
  background-color: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn--outline:hover {
  background-color: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 16px var(--accent-glow);
}

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

.btn--outline-white:hover {
  background-color: var(--white);
  color: var(--text-primary);
  border-color: var(--white);
}

.btn--whatsapp {
  background-color: var(--whatsapp-green);
  color: var(--white);
  border-color: var(--whatsapp-green);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn--whatsapp:hover {
  background-color: #1ebe5b;
  border-color: #1ebe5b;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transform: translateY(-1px);
}

.btn--whatsapp svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}


/* ============================================================
   6. CARDS
   ============================================================ */

.card {
  background-color: var(--white);
  box-shadow: var(--card-shadow);
  padding: 36px;
  border-radius: 0;
  border-top: 3px solid transparent;
  border-image: var(--accent-gradient) 1;
  border-image-slice: 1 0 0 0;
  transition: box-shadow var(--transition-medium), transform var(--transition-medium);
  position: relative;
}

.card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: width 0.5s var(--ease-out);
}

.card:hover::after {
  width: 100%;
}

.card:hover {
  box-shadow: 0 8px 32px rgba(213, 168, 71, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}

.card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(213, 168, 71, 0.12), rgba(213, 168, 71, 0.06));
  transition: background var(--transition-fast);
}

.card:hover .card__icon {
  background: linear-gradient(135deg, rgba(213, 168, 71, 0.20), rgba(213, 168, 71, 0.10));
}

.card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  fill: none;
  transition: transform var(--transition-fast);
}

.card:hover .card__icon svg {
  transform: scale(1.1);
}

.card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.card__text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}


/* ============================================================
   7. LINKS
   ============================================================ */

.link--accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.link--accent:hover {
  gap: 12px;
  color: var(--accent-hover);
}


/* ============================================================
   8. GOLD DIVIDER
   ============================================================ */

.divider--gold {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
  margin: 0;
}


/* ============================================================
   9. HEADER
   ============================================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.header--scrolled {
  box-shadow: 0 1px 0 var(--border-light), 0 4px 20px rgba(0, 0, 0, 0.06);
  background-color: rgba(255, 255, 255, 0.97);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

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

.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header__nav a {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  transition: color var(--transition-fast);
  position: relative;
  letter-spacing: 0.01em;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width var(--transition-fast);
}

.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--accent);
}

/* Don't show underline on button nav links */
.header__nav .btn::after {
  display: none;
}

.header__nav .btn {
  padding: 10px 24px;
  font-size: 14px;
}

.header__nav .btn:hover,
.header__nav .btn.active {
  color: var(--white);
}

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.header__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.header__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Drawer */
.header__drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background-color: var(--white);
  z-index: 1100;
  padding: 100px 32px 32px;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s var(--ease-out);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
}

.header__drawer.open {
  transform: translateX(0);
}

.header__drawer a {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  transition: color var(--transition-fast);
}

.header__drawer a:hover,
.header__drawer a.active {
  color: var(--accent);
}

.header__drawer a:last-child {
  border-bottom: none;
}

/* Overlay */
.header__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.header__overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Page content offset */
.page-content {
  margin-top: var(--header-height);
}


/* ============================================================
   10. FOOTER
   ============================================================ */

.footer {
  background-color: var(--bg-dark);
  padding-top: 80px;
  padding-bottom: 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent-gradient);
  opacity: 0.3;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
}

.footer__brand img {
  height: 36px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer__brand p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 0;
}

.footer__links h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__links a {
  font-size: 14px;
  color: var(--text-light);
  transition: color var(--transition-fast);
}

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

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

.footer__contact h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.footer__contact p {
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--text-light);
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-dark);
  color: var(--text-light);
  transition: border-color var(--transition-fast), color var(--transition-fast), background-color var(--transition-fast);
}

.footer__socials a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background-color: rgba(213, 168, 71, 0.08);
}

.footer__socials svg {
  width: 18px;
  height: 18px;
}

.footer__bottom {
  border-top: 1px solid var(--border-dark);
  padding: 28px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer__bottom p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 0;
  letter-spacing: 0.02em;
}


/* ============================================================
   11. HOME PAGE — HERO
   ============================================================ */

.hero {
  padding-top: 80px;
  padding-bottom: 100px;
  background-color: var(--white);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 50%, rgba(213, 168, 71, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--accent) 50%, transparent 90%);
  opacity: 0.2;
}

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

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

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero__label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent-gradient);
}

.hero__content h1 {
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero__subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero__image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #F5F3EF 0%, #EDE9E0 100%);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.hero__image-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-gradient);
}

.hero__image-placeholder::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), transparent 80%);
}

.hero__image-placeholder svg {
  width: 56px;
  height: 56px;
  stroke: var(--border-light);
  fill: none;
  stroke-width: 1;
}

.hero__image-placeholder span {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Gold corner decoration */
.hero__image-decor {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  border-right: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  pointer-events: none;
  opacity: 0.6;
}


/* ============================================================
   12. HOME PAGE — STATS BAR
   ============================================================ */

.stats-bar {
  background-color: var(--bg-dark);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent-gradient);
  opacity: 0.5;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stats-bar__item {
  padding: 0 24px;
  position: relative;
}

.stats-bar__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}

.stats-bar__number {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.stats-bar__label {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}


/* ============================================================
   13. HOME PAGE — SERVICE CARDS
   ============================================================ */

.services-preview__link {
  text-align: center;
  margin-top: 48px;
}


/* ============================================================
   14. HOME PAGE — WHY US
   ============================================================ */

.why-us__item {
  padding: 32px 0;
  position: relative;
}

.why-us__accent {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent-gradient);
  margin-bottom: 20px;
  border: none;
}

.why-us__item h3 {
  margin-bottom: 12px;
}

.why-us__item p {
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ============================================================
   15. HOME PAGE — TIMELINE
   ============================================================ */

.timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding-top: 8px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(213, 168, 71, 0.3));
  z-index: 0;
}

.timeline__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.timeline__number {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent);
  background-color: var(--bg-secondary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
  z-index: 1;
  margin-bottom: 20px;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.timeline__step:hover .timeline__number {
  background: var(--accent-gradient);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.timeline__step h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.timeline__step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}


/* ============================================================
   16. HOME PAGE — CTA BANNER
   ============================================================ */

.cta-section {
  background-color: var(--bg-dark);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent-gradient);
  opacity: 0.4;
}

.cta-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(213, 168, 71, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  color: var(--white);
  font-size: 40px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: var(--text-light);
  font-size: 17px;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-section .btn--primary {
  padding: 20px 48px;
  font-size: 16px;
  position: relative;
  z-index: 1;
}

/* Legacy CTA banner (used on inner pages) */
.cta-banner {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.cta-banner h2 {
  font-size: 28px;
  margin-bottom: 24px;
}


/* ============================================================
   17. PAGE HERO (inner pages)
   ============================================================ */

.page-hero {
  background-color: var(--bg-dark);
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(213, 168, 71, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent-gradient);
  opacity: 0.3;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
  color: var(--white);
  position: relative;
}

.page-hero .section__title-accent {
  margin-left: 0;
  margin-right: 0;
  background: var(--accent-gradient);
  width: 56px;
}

.page-hero__subtitle {
  font-size: 17px;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 0;
  margin-top: 16px;
}


/* ============================================================
   18. ABOUT PAGE
   ============================================================ */

.about__content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: start;
}

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

.about__text p:last-child {
  margin-bottom: 0;
}

.about__image-placeholder {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 400px;
  color: var(--text-light);
  font-size: 14px;
  position: relative;
}

.about__image-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
}


/* ============================================================
   19. SERVICES PAGE
   ============================================================ */

.services__intro {
  max-width: 700px;
  margin-bottom: 48px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.service-card {
  padding: 40px;
}

.service-card__sub-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card__sub-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.service-card__sub-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background-color: var(--accent);
  flex-shrink: 0;
  margin-top: 7px;
}

.service-card__link {
  margin-top: 24px;
}

.vip h2 {
  margin-bottom: 16px;
}

.vip p {
  line-height: 1.8;
}

.vip .btn {
  margin-top: 24px;
}


/* ============================================================
   20. CONTACT PAGE
   ============================================================ */

.contact__layout {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 64px;
  align-items: start;
}

.form__group {
  margin-bottom: 24px;
}

.form__label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form__label--required::after {
  content: ' *';
  color: var(--accent);
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 0;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  -webkit-appearance: none;
  appearance: none;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--text-light);
  opacity: 1;
}

.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236B6B6B' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

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

.form__radio-group {
  display: flex;
  align-items: center;
  gap: 24px;
}

.form__radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-primary);
  cursor: pointer;
}

.form__radio-label input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-light);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: border-color var(--transition-fast);
}

.form__radio-label input[type="radio"]:checked {
  border-color: var(--accent);
}

.form__radio-label input[type="radio"]:checked::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background-color: var(--accent);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.form__note {
  font-size: 13px;
  font-style: italic;
  color: var(--text-light);
  margin-top: 16px;
  margin-bottom: 0;
}

.form__feedback {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

.form__feedback--success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form__feedback--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.contact-info {
  padding-top: 8px;
}

.contact-info__block {
  margin-bottom: 32px;
}

.contact-info__block:last-child {
  margin-bottom: 0;
}

.contact-info__block h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.contact-info__block p,
.contact-info__block address {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: normal;
  margin-bottom: 0;
}

.contact-info__block a:not(.btn) {
  color: var(--accent);
  transition: color var(--transition-fast);
}

.contact-info__block a:not(.btn):hover {
  color: var(--accent-hover);
}


/* ============================================================
   21. REFERENCES PAGE
   ============================================================ */

.references__intro {
  max-width: 700px;
  margin-bottom: 48px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--card-gap);
}

.logo-grid__item {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  padding: 16px;
}

.logo-grid__item:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px var(--accent-light);
}


/* ============================================================
   22. SCROLL ANIMATIONS
   ============================================================ */

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 320ms; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   23. FLOATING WHATSAPP BUTTON
   ============================================================ */

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25D366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}


/* ============================================================
   24. MARQUEE TRUST STRIP
   ============================================================ */

.marquee-strip {
  background-color: var(--bg-secondary);
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.marquee-strip__track {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}

.marquee-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

.marquee-strip__item .dot {
  width: 5px;
  height: 5px;
  background: var(--accent-gradient);
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ============================================================
   25. SECTION DECORATORS
   ============================================================ */

.section--cream {
  position: relative;
}

.section--cream::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--border-light) 50%, transparent 95%);
}

.section--cream::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--border-light) 50%, transparent 95%);
}


/* ============================================================
   26. GOLD TEXT UTILITY
   ============================================================ */

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


/* ============================================================
   27. ENHANCED LINK ACCENT
   ============================================================ */

.link--accent::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition-fast);
}

.link--accent {
  position: relative;
}

.link--accent:hover::after {
  width: calc(100% - 22px);
}


/* ============================================================
   28. CONTACT PAGE SIDEBAR ENHANCEMENTS
   ============================================================ */

.contact-info__block .btn--whatsapp {
  width: 100%;
  justify-content: center;
  padding: 16px 24px;
  font-size: 15px;
}

.contact-info__block .footer__socials {
  margin-top: 0;
}

.contact-info__block .footer__socials a {
  border-color: var(--border-light);
  color: var(--text-secondary);
}

.contact-info__block .footer__socials a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background-color: var(--accent-light);
}


/* ============================================================
   29. VIP SECTION ENHANCEMENT
   ============================================================ */

.vip {
  border-left: 4px solid transparent;
  border-image: var(--accent-gradient) 1;
  border-image-slice: 0 0 0 1;
  padding-left: 40px;
  max-width: 800px;
}


/* ============================================================
   30. RESPONSIVE
   ============================================================ */

/* --- Tablet: max 1199px --- */
@media (max-width: 1199px) {
  h1 { font-size: 44px; }
  h2 { font-size: 34px; }

  .hero .container {
    gap: 40px;
  }

  .hero__content h1 {
    font-size: 44px;
  }

  .grid--5 {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .stats-bar__item:not(:last-child)::after {
    display: none;
  }

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

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

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

  .footer__brand {
    grid-column: 1 / -1;
  }
}

/* --- Mobile: max 767px --- */
@media (max-width: 767px) {
  :root {
    --header-height: var(--header-height-mobile);
    --section-padding: var(--section-padding-mobile);
  }

  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Header */
  .header {
    height: var(--header-height-mobile);
  }

  .header__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header__nav {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .header__drawer {
    display: flex;
  }

  .header__overlay {
    display: block;
  }

  /* Hero */
  .hero {
    padding-top: 48px;
    padding-bottom: 60px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__content {
    text-align: center;
    max-width: 100%;
  }

  .hero__content h1 {
    font-size: 36px;
  }

  .hero__label {
    justify-content: center;
  }

  .hero__subtitle {
    max-width: 100%;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__image-decor {
    display: none;
  }

  /* Stats bar */
  .stats-bar {
    padding: 40px 0;
  }

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

  .stats-bar__number {
    font-size: 32px;
  }

  .stats-bar__item:not(:last-child)::after {
    display: none;
  }

  /* Floating WhatsApp */
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

  /* Marquee */
  .marquee-strip {
    padding: 16px 0;
  }

  /* All grids collapse to 1 column */
  .grid--2,
  .grid--3,
  .grid--4,
  .grid--5 {
    grid-template-columns: 1fr;
  }

  /* Timeline — vertical layout */
  .timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-top: 0;
  }

  .timeline::before {
    top: 20px;
    bottom: 20px;
    left: 28px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .timeline__step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    flex: none;
    width: 100%;
    padding: 0 0 32px 0;
    gap: 20px;
  }

  .timeline__step:last-child {
    padding-bottom: 0;
  }

  .timeline__number {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    margin-bottom: 0;
    font-size: 16px;
  }

  .timeline__step > div {
    flex: 1;
  }

  /* About image */
  .about__image-placeholder {
    order: -1;
    min-height: 240px;
  }

  /* Page hero */
  .page-hero {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  /* CTA */
  .cta-section {
    padding: 72px 0;
  }

  .cta-section h2 {
    font-size: 28px;
  }

  .cta-banner {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .cta-banner h2 {
    font-size: 24px;
  }

  /* Contact */
  .contact__layout {
    gap: 48px;
  }

  /* Footer */
  .footer {
    padding-top: 56px;
  }

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

  .footer__brand {
    grid-column: auto;
  }

  /* Logo grid — 2 columns on mobile */
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* VIP block */
  .vip {
    padding-left: 24px;
  }

  /* Form radio group */
  .form__radio-group {
    flex-wrap: wrap;
    gap: 16px;
  }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  .fade-up,
  .stagger-children > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
