/* ===== TG COACHING - GLOBAL STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Bebas+Neue&display=swap');

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark-card: #1a1a1a;
  --gold: #F5C518;
  --gold-hover: #e6b800;
  --teal: #0d7a5f;
  --teal-dark: #0a5e49;
  --white: #ffffff;
  --gray: #b0b0b0;
  --light-gray: #e0e0e0;
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.3s, backdrop-filter 0.3s;
}

.nav.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

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

.nav-logo {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  letter-spacing: 3px;
  color: var(--gold);
}

.nav-logo span {
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray);
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 10px 24px !important;
  border-radius: 6px;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  transition: background 0.3s, transform 0.3s !important;
}

.nav-cta:hover {
  background: var(--gold-hover) !important;
  transform: translateY(-2px);
}

.nav-cta::after { display: none !important; }

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}

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

.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(245,197,24,0.3);
}

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

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

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

.btn-teal:hover {
  background: var(--teal-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(13,122,95,0.3);
}

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

.btn-white:hover {
  background: var(--light-gray);
  transform: translateY(-3px);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 50%, var(--black) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(245,197,24,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13,122,95,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 100px;
}

.hero-content {
  animation: fadeInUp 1s ease;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.hero h1 .highlight {
  color: var(--gold);
  display: block;
}

.hero p {
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease 0.3s both;
}

.hero-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}

.hero-card .icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold), #d4a610);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
}

.hero-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.hero-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

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

.hero-stat .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 1px;
}

.hero-stat .label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== SECTION STYLES ===== */
section {
  padding: 100px 0;
}

.section-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 2px;
  margin-bottom: 20px;
  line-height: 1;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.7;
}

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

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about {
  background: var(--dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image .image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--dark-card), #252525);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  position: relative;
}

.about-image .image-placeholder::after {
  content: 'TG';
  font-family: var(--font-heading);
  font-size: 10rem;
  color: rgba(245,197,24,0.05);
  position: absolute;
}

.about-image .accent-box {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold);
  color: var(--black);
  padding: 20px 28px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 24px;
}

.about-content h2 span {
  color: var(--gold);
}

.about-content p {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-content .emphasis {
  color: var(--white);
  font-weight: 600;
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 28px 0;
}

/* ===== METHOD SECTION ===== */
.method {
  background: var(--teal);
  position: relative;
  overflow: hidden;
}

.method::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

.method .section-label {
  color: rgba(255,255,255,0.7);
}

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

.method .section-subtitle {
  color: rgba(255,255,255,0.8);
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.method-step {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.3s, background 0.3s;
}

.method-step:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.12);
}

.method-step .step-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}

.method-step h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.method-step p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== PRICING SECTION ===== */
.pricing {
  background: var(--black);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.price-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.price-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245,197,24,0.3);
}

.price-card.featured {
  border-color: var(--gold);
}

.price-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 32px;
  right: -60px;
  background: var(--gold);
  color: var(--black);
  padding: 10px 120px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  transform: rotate(45deg);
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.price-card .plan-name {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.price-card .plan-tagline {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.price-card .price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.price-card .price .currency {
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
}

.price-card .price .amount {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
}

.price-card .price .period {
  font-size: 0.9rem;
  color: var(--gray);
}

.price-card .plan-description {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  line-height: 1.7;
}

.price-card .features {
  margin-bottom: 40px;
}

.price-card .features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: var(--light-gray);
}

.price-card .features li .check {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.price-card .btn {
  width: 100%;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--dark);
}

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

.testimonial-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  transition: transform 0.3s;
}

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

.testimonial-card .quote-mark {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.8;
  margin-bottom: 8px;
}

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

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--black);
}

.testimonial-author .name {
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-author .role {
  color: var(--gray);
  font-size: 0.8rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(245,197,24,0.1) 0%, transparent 60%);
  border-radius: 50%;
}

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

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 20px;
  line-height: 1;
}

.cta-section h2 span {
  color: var(--gold);
}

.cta-section p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 550px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

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

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-col a {
  display: block;
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: color 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gray);
  font-size: 0.8rem;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: all 0.3s;
  font-size: 0.9rem;
}

.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* ===== GETTING STARTED (for pricing page) ===== */
.steps-section {
  background: var(--dark);
}

.steps-timeline {
  display: flex;
  gap: 0;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 60px;
  right: 60px;
  height: 3px;
  background: rgba(255,255,255,0.08);
}

.step-item {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 16px;
}

.step-item .step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.step-item h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.step-item p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== FAQ (for pricing page) ===== */
.faq {
  background: var(--black);
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question .icon {
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.3s;
  font-weight: 300;
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--black), var(--dark));
  padding-top: 100px;
}

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

.contact-form-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 48px 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

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

.form-group select option {
  background: var(--dark);
}

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

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1;
}

.contact-info h2 span {
  color: var(--gold);
}

.contact-info > p {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-detail .detail-icon {
  width: 48px;
  height: 48px;
  background: rgba(245,197,24,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail .detail-text .label {
  font-size: 0.8rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-detail .detail-text .value {
  font-weight: 600;
  font-size: 1rem;
}

/* ===== COMPARE TABLE (pricing page) ===== */
.compare-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--dark-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.compare-table thead th {
  background: var(--teal);
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 2px;
  text-align: center;
}

.compare-table thead th:first-child {
  text-align: left;
}

.compare-table tbody td {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.95rem;
  color: var(--gray);
  text-align: center;
}

.compare-table tbody td:first-child {
  text-align: left;
  color: var(--white);
  font-weight: 500;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table .check-yes {
  color: var(--gold);
  font-size: 1.2rem;
}

.compare-table .check-no {
  color: rgba(255,255,255,0.2);
}

/* ===== PRICING PAGE HERO ===== */
.pricing-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, var(--black), var(--dark));
  padding-top: 100px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero p { margin: 0 auto 40px; }
  .hero-buttons { justify-content: center; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image { max-width: 400px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 999;
  }
  .nav-links.active a { font-size: 1.3rem; }
  .method-steps { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .steps-timeline { flex-direction: column; gap: 32px; }
  .steps-timeline::before { display: none; }
  .hero h1 { font-size: 3rem; }
  .contact-form-card { padding: 32px 24px; }
}
