/* ============================================
   SCHOLARSQUILL — PREMIUM ACADEMIC WRITING
   Design: Indigo Ink + Gold | Cormorant + Manrope
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --indigo-deep:   #1B0A3C;
  --indigo-mid:    #3D1E7C;
  --indigo-light:  #7B68EE;
  --indigo-pale:   #E8E0F0;
  --gold:          #C9A84C;
  --gold-light:    #E8C96A;
  --cream:         #FAF8F4;
  --white:         #FFFFFF;
  --text-dark:     #1A1228;
  --text-mid:      #4A3F6B;
  --text-light:    #8B7FA8;
  --border:        rgba(123,104,238,0.15);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Manrope', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 12px rgba(27,10,60,0.08);
  --shadow-md: 0 8px 32px rgba(27,10,60,0.14);
  --shadow-lg: 0 20px 60px rgba(27,10,60,0.20);
  --shadow-glow: 0 0 40px rgba(123,104,238,0.25);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--indigo-pale); }
::-webkit-scrollbar-thumb { background: var(--indigo-mid); border-radius: 3px; }

/* --- SELECTION --- */
::selection { background: var(--indigo-light); color: var(--white); }

/* --- CONTAINER --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--indigo-mid), var(--indigo-light));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(61,30,124,0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(61,30,124,0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.btn--outline {
  background: transparent;
  color: var(--indigo-mid);
  border: 1.5px solid var(--indigo-mid);
}
.btn--outline:hover {
  background: var(--indigo-mid);
  color: var(--white);
}

.btn--nav {
  background: var(--gold);
  color: var(--indigo-deep);
  font-weight: 700;
  padding: 10px 22px;
  font-size: 0.85rem;
}
.btn--nav:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn--full { width: 100%; justify-content: center; }

/* --- SECTION HEADERS --- */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--indigo-deep);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 56px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(27,10,60,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(27,10,60,0.3);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-icon { font-size: 1.4rem; }

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin-left: auto;
}

.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}

.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

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

.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__mobile {
  display: none;
  background: var(--indigo-deep);
  padding: 20px 24px 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.nav__mobile.open { display: block; }

.nav__mobile ul { list-style: none; }
.nav__mobile ul li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav__mobile ul li a {
  display: block;
  padding: 14px 0;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
}
.nav__mobile ul li a:hover { color: var(--gold); padding-left: 8px; }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--indigo-deep) 0%, #2A0F5C 50%, #1B0A3C 100%);
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100vh;
  background: linear-gradient(135deg, var(--indigo-deep) 0%, #2A0F5C 50%, #1B0A3C 100%);
  z-index: -1;
}

/* Full-width hero background */
section.hero {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.hero {
  padding: 120px 0 80px;
}

.hero__content {
  flex: 1;
  max-width: 600px;
  padding: 0 24px 0 max(24px, calc((100vw - 1200px)/2 + 24px));
}

.hero__bg-text {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 220px);
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px; height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
  position: relative;
}

.hero__title em::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  animation: underlineGrow 1.5s ease forwards 0.8s;
  transform-origin: left;
  transform: scaleX(0);
}

@keyframes underlineGrow {
  to { transform: scaleX(1); }
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}

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

.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 8px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 24px;
}

.stat:first-child { padding-left: 0; }

.stat__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat span:not(.stat__num):not(.stat__label) {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat__label {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 4px;
}

.stat__divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* Hero Visual */
.hero__visual {
  flex: 0 0 auto;
  position: relative;
  width: 340px;
  height: 400px;
  padding-right: max(24px, calc((100vw - 1200px)/2 + 24px));
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__card-stack {
  position: relative;
  width: 260px;
  height: 320px;
}

.paper-card {
  position: absolute;
  width: 240px;
  border-radius: var(--radius-md);
  background: var(--white);
}

.paper-card--back {
  height: 280px;
  top: 30px; left: 20px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  transform: rotate(6deg);
}

.paper-card--mid {
  height: 290px;
  top: 15px; left: 10px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.25);
  transform: rotate(3deg);
}

.paper-card--front {
  height: 300px;
  top: 0; left: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: cardFloat 4s ease-in-out infinite;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(-1deg); }
}

.paper-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.paper-card__type {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--indigo-mid);
  background: var(--indigo-pale);
  padding: 4px 10px;
  border-radius: 100px;
}

.paper-card__grade {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

.paper-card__lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.paper-card__lines span {
  display: block;
  height: 8px;
  background: #EEE;
  border-radius: 4px;
  animation: shimmer 2s ease-in-out infinite;
}

.paper-card__lines span.short { width: 60%; }

@keyframes shimmer {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.paper-card__footer {
  display: flex;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #4ADE80;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background: var(--white);
  color: var(--indigo-deep);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 100px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.fb1 { top: 20px; right: 0; animation: floatBadge1 3s ease-in-out infinite; }
.fb2 { bottom: 80px; right: -10px; animation: floatBadge2 3.5s ease-in-out infinite; }
.fb3 { bottom: 20px; left: 0; animation: floatBadge3 4s ease-in-out infinite; }

@keyframes floatBadge1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes floatBadge2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
@keyframes floatBadge3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ============================================
   PULL QUOTE
   ============================================ */
.pullquote {
  background: var(--indigo-deep);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.pullquote::before {
  content: '"';
  position: absolute;
  top: -40px; left: 5%;
  font-family: var(--font-display);
  font-size: 300px;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}

.pullquote__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.pullquote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
}

.pullquote blockquote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 20px;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 100px 0;
  background: var(--cream);
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--indigo-mid), var(--indigo-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.service-card--featured {
  background: linear-gradient(135deg, var(--indigo-deep), #2A0F5C);
  border-color: transparent;
  color: var(--white);
}

.service-card--featured h3,
.service-card--featured p,
.service-card--featured li { color: rgba(255,255,255,0.9); }

.service-card--featured::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.service-card__badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--indigo-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.service-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--indigo-deep);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card ul {
  list-style: none;
  margin-bottom: 24px;
}

.service-card ul li {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 5px 0;
  padding-left: 16px;
  position: relative;
}

.service-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.service-card--featured ul li { color: rgba(255,255,255,0.75); }
.service-card--featured ul li::before { color: var(--gold-light); }

.service-card__link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--indigo-mid);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: var(--transition);
}

.service-card__link:hover { color: var(--gold); letter-spacing: 0.06em; }
.service-card--featured .service-card__link { color: var(--gold-light); }

/* ============================================
   PROCESS
   ============================================ */
.process {
  padding: 100px 0;
  background: var(--indigo-pale);
}

.process .section-title { color: var(--indigo-deep); }

.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.process__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.process__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--indigo-mid);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
  transition: var(--transition);
}

.process__step:hover .process__num { opacity: 1; }

.process__content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--indigo-deep);
  margin-bottom: 10px;
}

.process__content p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.process__connector {
  flex: 0 0 auto;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--indigo-mid), var(--indigo-light));
  margin-top: 28px;
  opacity: 0.4;
}

/* ============================================
   SUBJECTS
   ============================================ */
.subjects {
  padding: 100px 0;
  background: var(--cream);
}

.subjects__cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.subject-tag {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--white);
  cursor: default;
  transition: var(--transition);
}

.subject-tag--lg {
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 24px;
  border-color: rgba(61,30,124,0.25);
  color: var(--indigo-mid);
}

.subject-tag:hover {
  background: var(--indigo-mid);
  color: var(--white);
  border-color: var(--indigo-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ============================================
   GUARANTEES
   ============================================ */
.guarantees {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--indigo-deep), #2A0F5C);
}

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

.guarantee {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  transition: var(--transition);
}

.guarantee:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.guarantee__icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.guarantee h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.guarantee p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 100px 0;
  background: var(--cream);
}

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--indigo-pale);
  line-height: 1;
  pointer-events: none;
}

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

.testimonial-card__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo-mid), var(--indigo-light));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--indigo-deep);
}

.testimonial-card__author span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: 100px 0;
  background: var(--indigo-pale);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
}

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

.pricing-card--featured {
  background: linear-gradient(135deg, var(--indigo-deep), #2A0F5C);
  border-color: transparent;
  transform: scale(1.04);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.pricing-card--featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.pricing-card__popular {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--indigo-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__level {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}

.pricing-card--featured .pricing-card__level { color: rgba(255,255,255,0.6); }

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
}

.price-from {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-right: 4px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--indigo-deep);
  line-height: 1;
}

.price-unit {
  font-size: 0.9rem;
  color: var(--text-light);
}

.pricing-card--featured .price-from,
.pricing-card--featured .price-unit { color: rgba(255,255,255,0.5); }
.pricing-card--featured .price-amount { color: var(--white); }

.pricing-card__features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-card__features li {
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.pricing-card--featured .pricing-card__features li {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.1);
}

.pricing__note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 40px;
}

.pricing__note a {
  color: var(--indigo-mid);
  text-decoration: none;
  font-weight: 600;
}

/* Pricing Banner */
.pricing__banner {
  margin-bottom: 48px;
}

.pricing__banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 40px;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
  gap: 24px;
}

.pricing__banner-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 200px;
}

.pricing__banner-item--highlight {
  background: linear-gradient(135deg, rgba(74,222,128,0.1), rgba(74,222,128,0.05));
  border-radius: var(--radius-md);
  padding: 12px 20px;
}

.pricing__banner-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

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

.pricing__banner-item strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--indigo-deep);
}

.pricing__banner-item span {
  font-size: 0.88rem;
  color: var(--text-mid);
}

.pricing__banner-item em {
  font-style: normal;
  font-weight: 700;
  color: var(--gold);
}

.pricing__banner-item--highlight em {
  color: #16a34a;
}

.pricing__banner-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* Offer Your Price Box */
.pricing__offer {
  margin-top: 48px;
  margin-bottom: 32px;
}

.pricing__offer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(135deg, var(--indigo-pale), #f0ebff);
  border: 1.5px solid rgba(61,30,124,0.15);
  border-radius: var(--radius-xl);
  padding: 36px 48px;
  flex-wrap: wrap;
}

.pricing__offer-text h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--indigo-deep);
  margin-bottom: 8px;
}

.pricing__offer-text p {
  font-size: 0.95rem;
  color: var(--text-mid);
  max-width: 500px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .pricing__banner-inner { flex-direction: column; padding: 24px; }
  .pricing__banner-divider { width: 100%; height: 1px; }
  .pricing__offer-inner { flex-direction: column; padding: 28px 24px; text-align: center; }
  .pricing__offer-inner .btn { width: 100%; justify-content: center; }
}

/* ============================================
   PROOF OF RESULTS
   ============================================ */
.proofs {
  padding: 100px 0;
  background: var(--bg-soft);
}

.proofs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.proof-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--white);
  aspect-ratio: 3/4;
}

.proof-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.proof-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.proof-item:hover img {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

.lightbox__close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10000;
}

.lightbox__close:hover { background: rgba(255,255,255,0.3); }

.lightbox__prev,
.lightbox__next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 2.5rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10000;
}

.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(255,255,255,0.3); }

@media (max-width: 1024px) {
  .proofs__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .proofs__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

@media (max-width: 480px) {
  .proofs__grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 100px 0;
  background: var(--cream);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact__left .section-title { color: var(--indigo-deep); }

.contact__left p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact__perks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.perk {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 500;
}

.perk span:first-child { font-size: 1.2rem; }

/* Form */
.contact__form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group--full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--indigo-light);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(123,104,238,0.12);
}

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

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show { display: block; }

.form-success__icon { font-size: 3rem; margin-bottom: 16px; }

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--indigo-deep);
  margin-bottom: 10px;
}

.form-success p { color: var(--text-mid); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--indigo-deep);
  padding: 80px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand .nav__logo-text { color: var(--white); }

.footer__brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

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

.footer__col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__col ul { list-style: none; }

.footer__col ul li { margin-bottom: 10px; }

.footer__col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: var(--transition);
}

.footer__col ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: var(--transition);
}

.footer__legal a:hover { color: rgba(255,255,255,0.7); }

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-float {
  opacity: 0;
  transition: opacity 0.6s ease 0.4s;
}

.reveal-float.visible { opacity: 1; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .guarantees__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__visual { display: none; }
  .hero__content { max-width: 100%; padding: 0 24px; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__top { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav__links, .btn--nav { display: none; }
  .nav__burger { display: flex; }

  .hero { padding: 100px 0 60px; }
  .hero__stats { gap: 4px; }
  .stat { padding: 0 12px; }
  .stat__num { font-size: 1.5rem; }
  .stat span:not(.stat__num):not(.stat__label) { font-size: 1.5rem; }

  .services__grid { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .guarantees__grid { grid-template-columns: 1fr 1fr; }

  .process__steps { flex-direction: column; align-items: flex-start; }
  .process__connector { width: 2px; height: 40px; margin: 0 0 0 28px; }
  .process__step { flex-direction: row; text-align: left; align-items: flex-start; gap: 20px; }
  .process__num { font-size: 2.5rem; margin-bottom: 0; flex-shrink: 0; }

  .form-row { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer__legal { flex-wrap: wrap; justify-content: center; }

  .section-title { font-size: 1.8rem; }
  .hero__title { font-size: 2.4rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .guarantees__grid { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; gap: 16px; }
  .stat__divider { display: none; }
  .stat { padding: 0; }
  .contact__form-wrap { padding: 24px; }
  .footer__links { grid-template-columns: 1fr; }
}