/*
Theme Name: Élégance Wedding
Theme URI: https://elegance-wedding.com
Author: Élégance Studio
Author URI: https://elegance-wedding.com
Description: Премиальная тема для свадебного агентства. Чистый белый дизайн с настройкой через Customizer — все тексты, фотографии и цвета можно менять без кода.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: elegance-wedding
Tags: one-page, custom-logo, custom-header, theme-options, featured-images
*/

/* ===== RESET & BASE ===== */
:root {
  --white: #FFFFFF;
  --snow: #FAFAFA;
  --pearl: #F5F5F5;
  --silver: #E0E0E0;
  --platinum: #C8C8C8;
  --graphite: #4A4A4A;
  --charcoal: #2C2C2C;
  --soft-black: #1A1A1A;
  --muted: #999999;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Josefin Sans', sans-serif;
  background: var(--white);
  color: var(--charcoal);
  overflow-x: hidden;
}

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

/* ===== PRELOADER ===== */
.preloader {
  position: fixed; inset: 0;
  background: var(--white);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: 0.3em;
  animation: breathe 2s ease-in-out infinite;
}
.preloader-line {
  width: 60px; height: 1px;
  background: var(--soft-black);
  margin-top: 1.5rem;
  animation: expandLine 1.5s ease-in-out infinite;
}
@keyframes breathe { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }
@keyframes expandLine { 0%,100% { width: 60px; } 50% { width: 120px; } }

/* ===== NAVIGATION ===== */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.8rem 4rem;
  display: flex; justify-content: center; align-items: center;
  transition: all 0.5s ease;
  background: transparent;
}
.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  padding: 1rem 4rem;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--charcoal);
  text-transform: uppercase;
}
.nav-logo img {
  max-height: 40px;
  width: auto;
}
.nav-cta {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  transition: all 0.4s ease;
  display: inline-block;
  line-height: 1.4;
}
.nav-cta:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.hero-bg-image {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}
.hero-decoration {
  position: absolute;
  border: 1px solid rgba(0,0,0,0.03);
  border-radius: 50%;
  animation: floatSlow 25s ease-in-out infinite;
  pointer-events: none;
}
.hero-decoration:nth-child(2) { width: 600px; height: 600px; top: -150px; right: -150px; }
.hero-decoration:nth-child(3) { width: 350px; height: 350px; bottom: -80px; left: -100px; animation-delay: -8s; }
.hero-decoration:nth-child(4) { width: 220px; height: 220px; top: 25%; left: 8%; animation-delay: -15s; }
@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(15px, -25px) rotate(3deg); }
  66% { transform: translate(-10px, 15px) rotate(-2deg); }
}
.hero-content {
  text-align: center;
  position: relative; z-index: 2;
  padding: 0 2rem;
}
.hero-overline {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--soft-black);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.7s forwards;
}
.hero-title em { font-style: italic; font-weight: 400; }
.hero-subtitle {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 200;
  letter-spacing: 0.3em;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 3rem;
  line-height: 2;
  opacity: 0;
  animation: fadeUp 1s ease 1s forwards;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 0.9rem 2.5rem;
  border: 1px solid var(--charcoal);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  line-height: 1.4;
  cursor: pointer;
  background: transparent;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--soft-black);
  transform: translateX(-101%);
  transition: transform 0.5s ease;
}
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover { color: var(--white); }
.btn-primary:hover::before { transform: translateX(0); }

.hero .btn-primary {
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}

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

/* ===== MARQUEE ===== */
.marquee-section {
  padding: 2.5rem 0;
  background: var(--soft-black);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  padding: 0 3rem;
  flex-shrink: 0;
}
.marquee-dot {
  display: inline-block;
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  margin-left: 3rem;
  vertical-align: middle;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== SECTION COMMON ===== */
.section-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.section-label::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--platinum);
}
.section-label--center { justify-content: center; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--soft-black);
  margin-bottom: 2rem;
}
.section-title em { font-style: italic; }
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

/* ===== ABOUT ===== */
.about {
  padding: 10rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--pearl);
  position: relative;
  overflow: hidden;
}
.about-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: -3rem; right: -3rem;
  width: 200px; height: 260px;
  background: var(--snow);
  z-index: 2;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}
.about-img-accent img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-frame {
  position: absolute;
  top: -2rem; left: -2rem;
  width: 100%; height: 100%;
  border: 1px solid var(--silver);
  z-index: -1;
}
.about-desc {
  font-size: 0.85rem;
  font-weight: 200;
  line-height: 2;
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.about-stats {
  display: flex; gap: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--silver);
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--soft-black);
  line-height: 1;
}
.stat-label {
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* ===== SERVICES ===== */
.services {
  padding: 8rem 4rem 10rem;
  background: var(--snow);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}
.service-card {
  background: var(--white);
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--soft-black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.05);
  border-color: var(--silver);
}
.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--silver);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.4s ease;
}
.service-card:hover .service-number { color: var(--platinum); }
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--soft-black);
  margin-bottom: 1rem;
}
.service-desc {
  font-size: 0.78rem;
  font-weight: 200;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 2rem;
}
.service-link {
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--charcoal);
  display: inline-flex; align-items: center; gap: 0.8rem;
  transition: gap 0.3s ease;
}
.service-link:hover { gap: 1.2rem; }
.service-link svg { width: 20px; transition: transform 0.3s ease; }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ===== PORTFOLIO ===== */
.portfolio {
  padding: 10rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--pearl);
}
.portfolio-item:nth-child(1) { grid-row: span 2; }
.portfolio-item:nth-child(2),
.portfolio-item:nth-child(3) { aspect-ratio: 4/3; }
.portfolio-item:nth-child(4) { grid-column: span 2; aspect-ratio: 16/7; }
.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.65) 0%, transparent 50%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-couple {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.3rem;
}
.portfolio-venue {
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 8rem 4rem 10rem;
  background: var(--soft-black);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%; height: 100%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.02) 0%, transparent 70%);
}
.testimonials .section-label { color: rgba(255,255,255,0.35); }
.testimonials .section-label::before { background: rgba(255,255,255,0.2); }
.testimonials .section-title { color: var(--white); }
.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 4rem;
}
.testimonial-card {
  padding: 3rem;
  border: 1px solid rgba(255,255,255,0.06);
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.9;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
}
.testimonial-author {
  display: flex; align-items: center; gap: 1rem;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  overflow: hidden;
}
.testimonial-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.testimonial-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--white);
}
.testimonial-date {
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.3);
  margin-top: 0.2rem;
}

/* ===== PROCESS ===== */
.process {
  padding: 10rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 2.8rem; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--silver), var(--silver), transparent);
}
.process-step { text-align: center; position: relative; }
.step-circle {
  width: 56px; height: 56px;
  border: 1px solid var(--charcoal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem;
  background: var(--white);
  position: relative; z-index: 2;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--charcoal);
  transition: all 0.4s ease;
}
.process-step:hover .step-circle {
  background: var(--soft-black);
  color: var(--white);
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--soft-black);
  margin-bottom: 0.8rem;
}
.step-desc {
  font-size: 0.75rem;
  font-weight: 200;
  line-height: 1.8;
  color: var(--muted);
  max-width: 220px;
  margin: 0 auto;
}

/* ===== PRICING ===== */
.pricing {
  padding: 8rem 4rem 10rem;
  background: var(--snow);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--white);
  padding: 3.5rem 2.5rem;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid var(--pearl);
}
.pricing-card--featured {
  background: var(--soft-black);
  transform: translateY(-1rem);
  box-shadow: 0 30px 80px rgba(0,0,0,0.1);
  border: none;
}
.pricing-badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: var(--soft-black);
  color: var(--white);
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.4rem 1.5rem;
}
.pricing-card--featured .pricing-badge { background: var(--white); color: var(--soft-black); }
.pricing-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.pricing-card--featured .pricing-name { color: var(--white); }
.pricing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}
.pricing-card--featured .pricing-price { color: var(--white); }
.pricing-note {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 2.5rem;
}
.pricing-features li {
  font-size: 0.78rem;
  font-weight: 200;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--pearl);
  color: var(--graphite);
}
.pricing-card--featured .pricing-features li {
  color: rgba(255,255,255,0.55);
  border-color: rgba(255,255,255,0.06);
}
.pricing-btn {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.9rem 2.5rem;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  transition: all 0.4s ease;
  margin-top: 2.5rem;
}
.pricing-btn:hover {
  background: var(--soft-black);
  color: var(--white);
}
.pricing-card--featured .pricing-btn {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
}
.pricing-card--featured .pricing-btn:hover {
  background: var(--white);
  color: var(--soft-black);
  border-color: var(--white);
}

/* ===== CTA ===== */
.cta-section {
  padding: 10rem 4rem;
  text-align: center;
  background: var(--white);
}
.cta-section .section-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
}
.cta-desc {
  font-size: 0.85rem;
  font-weight: 200;
  line-height: 2;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 3rem;
}
.cta-phone {
  margin-top: 1.5rem;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.15em;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--soft-black);
  padding: 6rem 4rem 3rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .nav-logo { color: var(--white); display: block; margin-bottom: 1.5rem; }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.3);
  line-height: 1.8;
  max-width: 300px;
}
.footer-col-title {
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
}
.footer-col a {
  display: block;
  font-size: 0.78rem;
  font-weight: 200;
  color: rgba(255,255,255,0.35);
  padding: 0.4rem 0;
  transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 2rem auto 0;
}
.footer-copy {
  font-size: 0.65rem;
  font-weight: 200;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.1em;
}
.footer-social { display: flex; gap: 1.5rem; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card--featured { transform: none; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .process-timeline::before { display: none; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item:nth-child(1) { grid-row: span 1; aspect-ratio: 3/4; }
  .portfolio-item:nth-child(4) { grid-column: span 2; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .site-nav { padding: 1.2rem 2rem; }
  .about { padding: 6rem 2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 4rem; }
  .services { padding: 6rem 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio { padding: 6rem 2rem; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item:nth-child(4) { grid-column: span 1; }
  .testimonials { padding: 6rem 2rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process { padding: 6rem 2rem; }
  .process-timeline { grid-template-columns: 1fr; }
  .pricing { padding: 6rem 2rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .cta-section { padding: 6rem 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
  .portfolio-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
}


