/* ═══════════════════════════════════════════════
   BORN DIGITAL STUDIO — Everly Proposal
   Aesthetic: Refined Luxury Editorial
   ═══════════════════════════════════════════════ */

:root {
  /* Born Brand */
  --navy: #1e1654;
  --navy-deep: #120e35;
  --navy-light: #2a2068;
  --gold: #d4a843;
  --gold-light: #e8c96e;
  --gold-dark: #b8922e;

  /* Neutrals */
  --white: #ffffff;
  --cream: #f9f6f0;
  --cream-dark: #efe9dd;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-300: #d1d1d1;
  --gray-500: #888888;
  --gray-700: #444444;
  --gray-900: #1a1a1a;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 160px);
  --container-width: 1280px;
  --container-pad: clamp(20px, 4vw, 60px);
}

/* ═══════════ RESET & BASE ═══════════ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
}

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

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

strong {
  font-weight: 600;
}

::selection {
  background: var(--gold);
  color: var(--navy-deep);
}

/* ═══════════ CONTAINER ═══════════ */

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ═══════════ REVEAL ANIMATIONS ═══════════ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal--delay-1 {
  transition-delay: 0.15s;
}

.reveal--delay-2 {
  transition-delay: 0.3s;
}

.reveal--delay-3 {
  transition-delay: 0.45s;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════ NAVIGATION ═══════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav--scrolled {
  background: rgba(18, 14, 53, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(212, 168, 67, 0.1);
}

.nav__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo-img {
  height: 28px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.nav__logo-img:hover {
  opacity: 1;
}

.nav__links {
  display: flex;
  gap: 36px;
}

.nav__links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav__links a:hover {
  color: var(--gold);
}

.nav__links a:hover::after {
  width: 100%;
}

/* ═══════════ HERO ═══════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-deep);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(212, 168, 67, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(42, 32, 104, 0.4) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy-deep) 0%, #0d0a26 100%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
  pointer-events: none;
}

.hero__content {
  position: relative;
  text-align: center;
  padding: 120px var(--container-pad) 80px;
  max-width: 900px;
}

.hero__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212, 168, 67, 0.3);
  padding: 10px 28px;
  margin-bottom: 48px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 32px;
}

.hero__title-line {
  display: block;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero__title-line--accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.hero__subtitle {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  max-width: 640px;
  margin: 0 auto 56px;
  line-height: 1.8;
}

.hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__meta-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.hero__meta-value {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.hero__meta-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero__scroll span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ═══════════ SECTION SHARED ═══════════ */

.section {
  padding: var(--section-pad) 0;
}

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

.section--dark {
  background: var(--gray-900);
}

.section--navy {
  background: var(--navy-deep);
  position: relative;
}

.section--navy::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 90% 10%, rgba(212, 168, 67, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

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

.section__number {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.section__number--gold {
  color: var(--gold);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  margin-bottom: 16px;
}

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

.section__subtitle {
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 300;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.7;
}

.section__subtitle--light {
  color: rgba(255, 255, 255, 0.45);
}

/* ═══════════ INTRO ═══════════ */

.intro {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 120px);
  align-items: start;
}

.intro__lead {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--gray-900);
  margin-bottom: 28px;
}

.intro__body {
  font-size: 17px;
  color: var(--gray-700);
  margin-bottom: 16px;
}

/* ═══════════ PARTNERS ═══════════ */

.partners__header {
  margin-bottom: 48px;
}

.partners__group-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  width: fit-content;
}

.partners__group-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.partners__group-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
}

.partners__group-url {
  font-size: 13px;
  color: var(--gold);
  opacity: 0.7;
}

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

.partner-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: clamp(28px, 3vw, 44px);
  transition: border-color 0.4s;
}

.partner-card:hover {
  border-color: rgba(212, 168, 67, 0.2);
}

.partner-card__logo-img {
  height: 32px;
  width: auto;
  margin-bottom: 16px;
  object-fit: contain;
  object-position: left;
}

.partner-card__logo-img--ws {
  height: 28px;
}

.partner-card__logo-img--vc {
  height: 26px;
  filter: brightness(0) invert(1);
}

.partner-card__role {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.8;
}

.partner-card__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 24px;
}

.partner-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.partner-card__list li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  padding-left: 16px;
  position: relative;
}

.partner-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.4;
}

/* ═══════════ SCOPE CARDS ═══════════ */

.scope__header {
  margin-bottom: 64px;
}

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

.scope-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: clamp(32px, 4vw, 56px);
  transition: background 0.4s, border-color 0.4s;
  position: relative;
}

.scope-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(212, 168, 67, 0.15);
}

.scope-card__number {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.scope-card__icon {
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0.7;
}

.scope-card__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}

.scope-card__text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
  line-height: 1.7;
}

.scope-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.scope-card__list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  padding-left: 16px;
  position: relative;
}

.scope-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.5;
}

/* ═══════════ DESIGN SECTION ═══════════ */

.design__header {
  margin-bottom: 64px;
}

.design__showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-bottom: 80px;
}

.design__principle {
  display: flex;
  gap: 24px;
  padding: clamp(28px, 3vw, 48px);
  border: 1px solid var(--gray-200);
  margin: -1px 0 0 -1px;
  transition: border-color 0.3s;
}

.design__principle:hover {
  border-color: var(--gold);
  z-index: 1;
  position: relative;
}

.design__principle-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}

.design__principle-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}

.design__principle p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
}

/* Pages Grid */
.design__pages {
  background: var(--cream);
  padding: clamp(32px, 4vw, 56px);
}

.design__pages-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 32px;
}

.design__pages-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.design__page {
  display: grid;
  grid-template-columns: 50px 200px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  align-items: baseline;
}

.design__page:last-child {
  border-bottom: none;
}

.design__page-num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gold);
}

.design__page-name {
  font-weight: 500;
  font-size: 15px;
}

.design__page-detail {
  font-size: 14px;
  color: var(--gray-500);
}

/* ═══════════ SEO SECTION ═══════════ */

.seo__header {
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.seo__block {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: clamp(32px, 4vw, 48px);
}

.seo__block-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.seo__block-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 400;
  color: var(--white);
}

.seo__block-tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212, 168, 67, 0.3);
  padding: 4px 14px;
}

.seo__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.seo__column h4 {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.seo__column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.seo__column li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}

.seo__column li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.5;
}

/* Automation Grid */
.seo__automation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.seo__auto-item {
  background: rgba(255, 255, 255, 0.02);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: border-color 0.3s;
}

.seo__auto-item:hover {
  border-color: rgba(212, 168, 67, 0.2);
}

.seo__auto-freq {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.seo__auto-item h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}

.seo__auto-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

/* ═══════════ GUARANTEES ═══════════ */

.guarantees__header {
  margin-bottom: 64px;
}

.guarantees__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 48px;
}

.guarantee-card {
  background: var(--cream);
  padding: clamp(28px, 3vw, 48px);
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.guarantee-card:hover {
  transform: translateY(-4px);
}

.guarantee-card__score {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.guarantee-card__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 16px;
  line-height: 1.4;
}

.guarantee-card__detail {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.7;
}

.guarantees__note {
  background: var(--cream);
  padding: 28px 36px;
  border-left: 3px solid var(--gold);
}

.guarantees__note p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.7;
}

/* ═══════════ TIMELINE ═══════════ */

.timeline__header {
  margin-bottom: 64px;
}

.timeline__track {
  position: relative;
  padding-left: 140px;
}

.timeline__track::before {
  content: '';
  position: absolute;
  left: 120px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(212, 168, 67, 0.1));
}

.timeline__item {
  position: relative;
  padding: 0 0 48px 40px;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 8px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--gray-900);
}

.timeline__item--ongoing::before {
  background: var(--gold);
  box-shadow: 0 0 16px rgba(212, 168, 67, 0.4);
}

.timeline__week {
  position: absolute;
  left: -180px;
  top: 2px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-align: right;
  width: 100px;
}

.timeline__content h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}

.timeline__content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

/* ═══════════ INVESTMENT ═══════════ */

.investment__header {
  margin-bottom: 64px;
}

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

.investment-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: clamp(32px, 4vw, 48px);
  transition: border-color 0.3s;
}

.investment-card:hover {
  border-color: var(--gold);
}

.investment-card--featured {
  border-color: var(--navy);
  position: relative;
}

.investment-card--featured::before {
  content: 'Recommended';
  position: absolute;
  top: -12px;
  left: 32px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  padding: 4px 16px;
}

.investment-card__tag {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.investment-card__tag--gold {
  color: var(--gold);
}

.investment-card__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 400;
  margin-bottom: 32px;
}

.investment-card__items {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}

.investment-card__row {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
  color: var(--gray-700);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.investment-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 20px;
  border-top: 2px solid var(--gray-900);
}

.investment-card__label {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.investment-card__price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.investment-card__period {
  font-size: 16px;
  font-weight: 300;
  color: var(--gray-500);
  text-transform: none;
  letter-spacing: 0;
}

.investment-card__note {
  font-size: 13px;
  color: var(--gray-500);
  font-style: italic;
}

/* ═══════════ DELIVERABLES TABLE ═══════════ */

.deliverables__header {
  margin-bottom: 48px;
}

.deliverables__table-wrap {
  overflow-x: auto;
}

.deliverables__table {
  width: 100%;
  border-collapse: collapse;
}

.deliverables__table th {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.deliverables__table td {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.deliverables__table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.deliverables__table .check {
  color: var(--gold);
  text-align: center;
  font-size: 16px;
}

/* ═══════════ CTA ═══════════ */

.section--cta {
  background: var(--navy-deep);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.section--cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
}

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

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta__text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 40px;
}

.cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 168, 67, 0.3);
}

.btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ═══════════ FOOTER ═══════════ */

.footer {
  background: var(--gray-900);
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__logo {
  height: 24px;
  width: auto;
  margin-bottom: 8px;
  opacity: 0.6;
}

.footer__tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.footer__meta {
  text-align: right;
}

.footer__meta p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.8;
}

/* ═══════════ RESPONSIVE ═══════════ */

@media (max-width: 1024px) {
  .partners__grid {
    grid-template-columns: 1fr;
  }

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

  .seo__columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

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

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

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

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero__meta {
    flex-direction: column;
    gap: 20px;
  }

  .hero__meta-divider {
    display: none;
  }

  .design__page {
    grid-template-columns: 40px 1fr;
  }

  .design__page-detail {
    grid-column: 2;
  }

  .timeline__track {
    padding-left: 30px;
  }

  .timeline__track::before {
    left: 10px;
  }

  .timeline__week {
    position: static;
    width: auto;
    text-align: left;
    margin-bottom: 8px;
  }

  .timeline__item {
    padding-left: 30px;
  }

  .timeline__item::before {
    left: 6px;
  }

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

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

  .seo__block-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__meta {
    text-align: center;
  }
}
