
     /* HERO SECTION */

        .hero {
            background: linear-gradient(135deg, #6022EC 0%, #7c3aed 100%);
            padding: 140px 50px 80px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,165,0,0.2) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            color: #FFFFFF;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 25px;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 900;
            color: #FFFFFF;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-title .highlight {
            color: #FFA500;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.95);
            margin-bottom: 40px;
        }

        .hero-ctas {
            display: flex;
            gap: 18px;
            justify-content: center;
            margin-top: 20px;
        }

        .btn {
            padding: 18px 40px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1.05rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn.btn-white {
            background-color: #FFFFFF;
            color: #6022EC !important;
            box-shadow: 0 8px 25px rgba(255,255,255,0.3);
        }

        .btn.btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255,255,255,0.4);
        }

        .btn.btn-orange {
            background-color: #FFA500;
            color: #FFFFFF;
            box-shadow: 0 8px 25px rgba(255,165,0,0.4);
        }

        .btn.btn-orange:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255,165,0,0.5);
        }

        .social-proof {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        .avatars {
            display: flex;
        }

        .avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 3px solid #FFFFFF;
            margin-left: -12px;
        }

        .avatar:first-child { margin-left: 0; }

        .avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }
        
        .proof-text {
            color: #FFFFFF;
            font-size: 1rem;
            font-weight: 600;
        }

        .proof-text .num {
            color: #FFA500;
            font-weight: 800;
        }


/* ============================================
   STATS BAR - Conversion Expert
   ============================================ */

.stats-bar {
  background: #FFFFFF;
  padding: 64px 0;
  border-bottom: 1px solid #E5E5E5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
}

.stat-item {
  text-align: center;
  padding: 16px;
}

.stat-number {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 800;
  background: linear-gradient(135deg, #6022EC 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   SECTION HEADERS - Copywriter
   ============================================ */

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 96px;
}

.section-tag {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(96, 34, 236, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
  color: #6022EC;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0D0D0D;
  margin-bottom: 16px;
}

.gradient-text {
  background: linear-gradient(135deg, #6022EC 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 18px;
  line-height: 1.7;
  color: #666666;
}

/* ============================================
   VIDEO SECTION - UX Designer
   ============================================ */

.video-section {
  background: #F5F5F5;
}

.video-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  position: relative;
  background: #0D0D0D;
}

.video-wrapper::before {
  content: '';
  display: block;
  padding-top: 56.25%;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   RESULTS SECTION - Conversion Expert
   ============================================ */

.results-section {
  background: #FFFFFF;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.result-card {
  background: linear-gradient(135deg, #6022EC 0%, #7c3aed 100%);
  padding: 48px;
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
}

.result-card:hover {
  transform: translateY(-8px);
}

.result-icon {
  font-size: 60px;
  margin-bottom: 24px;
  line-height: 1;
}

.result-number {
  font-family: 'Manrope', sans-serif;
  font-size: 60px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
  line-height: 1;
}

.result-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

/* ============================================
   SERVICES SECTION - UI Designer
   ============================================ */

.services-section {
  background: #F5F5F5;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.service-card {
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  border: 1px solid #E5E5E5;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  border-color: rgba(96, 34, 236, 0.2);
}

.service-image {
  height: 240px;
  overflow: hidden;
  position: relative;
  background: #E5E5E5;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image img {
  transform: scale(1.08);
}

.service-body {
  padding: 32px;
}

.service-title {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0D0D0D;
  margin-bottom: 12px;
}

.service-description {
  font-size: 16px;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 24px;
}

.service-features {
  list-style: none;
  margin-bottom: 32px;
}

.service-features li {
  padding: 12px 0;
  font-size: 14px;
  color: #404040;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.service-features li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #6022EC 0%, #7c3aed 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

/* ============================================
   CASE STUDIES - Conversion Expert
   ============================================ */

.case-studies-section {
  background: #FFFFFF;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.case-study-card {
  background: #F5F5F5;
  border-radius: 24px;
  padding: 32px;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.case-study-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.case-study-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #CCCCCC;
}

.case-study-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.case-study-title {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0D0D0D;
  margin-bottom: 8px;
}

.case-study-desc {
  font-size: 14px;
  color: #666666;
  margin-bottom: 24px;
}

.case-study-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.case-stat {
  background: #FFFFFF;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
}

.case-stat-number {
  font-family: 'Manrope', sans-serif;
  font-size: 30px;
  font-weight: 800;
  background: linear-gradient(135deg, #6022EC 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.case-stat-label {
  font-size: 12px;
  color: #666666;
  font-weight: 600;
}

/* ============================================
   PROCESS SECTION - Brand Strategist
   ============================================ */

.process-section {
  background: #0D0D0D;
  background: linear-gradient(135deg, #6022EC 0%, #7c3aed 100%);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.process-section .section-header {
  position: relative;
  z-index: 1;
}

.process-section .section-tag {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

.process-section .section-title {
  color: #FFFFFF;
}

.process-section .section-description {
  color: rgba(255, 255, 255, 0.9);
}

.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(195px, 1fr));
  gap: 32px;
}

.process-step {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
}

.process-number {
  width: 64px;
  height: 64px;
  background: #FFFFFF;
  color: #6022EC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 30px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.process-step-title {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.process-step-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

/* ============================================
   CALENDLY SECTION - Conversion Expert
   ============================================ */

.calendly-section {
  background: #F5F5F5;
}

.calendly-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
}

.calendly-content h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #0D0D0D;
}

.calendly-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 32px;
}

.benefits-list {
  list-style: none;
  margin-bottom: 32px;
}

.benefit-item {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #2D2D2D;
}

.benefit-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #6022EC 0%, #7c3aed 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 14px;
}

.calendly-urgency {
  background: linear-gradient(135deg, rgba(96, 34, 236, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
  padding: 16px 24px;
  border-radius: 12px;
  border: 1px solid rgba(96, 34, 236, 0.2);
}

.calendly-urgency-text {
  color: #6022EC;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.calendly-embed-wrapper {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.calendly-placeholder h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  margin-bottom: 16px;
  color: #0D0D0D;
}

.calendly-placeholder p {
  color: #666666;
}

/* ============================================
   PORTFOLIO SECTION - UI Designer
   ============================================ */

.portfolio-section {
  background: #FFFFFF;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.portfolio-item {
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  border: 1px solid #E5E5E5;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.portfolio-image {
  height: 260px;
  overflow: hidden;
  position: relative;
  background: #E5E5E5;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.08);
}

.portfolio-content {
  padding: 32px;
}

.portfolio-tag {
  display: inline-block;
  background: linear-gradient(135deg, #6022EC 0%, #7c3aed 100%);
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.portfolio-title {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0D0D0D;
  margin-bottom: 8px;
}

.portfolio-desc {
  font-size: 14px;
  color: #666666;
}

/* ============================================
   TESTIMONIALS SECTION - Conversion Expert
   ============================================ */

.testimonials-section {
  background: #F5F5F5;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  border: 1px solid #E5E5E5;
  border-left: 4px solid #6022EC;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
  color: #FFB800;
  font-size: 20px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: #404040;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  color: #0D0D0D;
  margin-bottom: 4px;
}

.author-title {
  font-size: 14px;
  color: #666666;
}

/* ============================================
   TRUST SECTION - Brand Strategist
   ============================================ */

.trust-section {
  background: linear-gradient(135deg, #6022EC 0%, #7c3aed 100%);
  padding: 96px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 48px;
}

.trust-stat {
  text-align: center;
}

.trust-number {
  font-family: 'Manrope', sans-serif;
  font-size: 60px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
  line-height: 1;
}

.trust-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* ============================================
   FAQ SECTION - UX Designer
   ============================================ */

.faq-section {
  background: #FFFFFF;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #F5F5F5;
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.faq-item:hover {
  border-color: rgba(96, 34, 236, 0.2);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.faq-question-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.faq-question {
  font-weight: 700;
  font-size: 18px;
  color: #0D0D0D;
}

.faq-toggle {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #6022EC 0%, #7c3aed 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-top: 16px;
}

.faq-answer-text {
  font-size: 16px;
  line-height: 1.8;
  color: #666666;
}

/* ============================================
   CONTACT SECTION - Conversion Expert
   ============================================ */

.contact-section {
  background: #F5F5F5;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
}

.contact-info h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 24px;
  color: #0D0D0D;
}

.contact-info p {
  font-size: 16px;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 48px;
}

.contact-details {
  display: grid;
  gap: 24px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-detail-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #6022EC 0%, #7c3aed 100%);
  color: #FFFFFF;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-weight: 700;
  color: #0D0D0D;
  margin-bottom: 4px;
}

.contact-detail-text p {
  color: #666666;
  margin: 0;
}

.contact-form {
  background: #FFFFFF;
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
  color: #0D0D0D;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid #CCCCCC;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  background: #FFFFFF;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #6022EC;
  box-shadow: 0 0 0 4px rgba(96, 34, 236, 0.1);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-button {
  width: 100%;
  padding: 16px;
  background: #F59E0B;
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 16px rgba(255, 107, 53, 0.3);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 107, 53, 0.4);
}

/* ============================================
   FOOTER - UI Designer
   ============================================ */

.footer {
  background: #0D0D0D;
  color: #FFFFFF;
  padding: 96px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}

.footer-brand h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

/* ============================================
   RESPONSIVE - Mobile Specialist
   ============================================ */

@media (max-width: 1024px) {

  .calendly-wrapper,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .header-content {
    height: 70px;
  }

  .hero {
    padding: calc(70px + 64px) 0 64px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .stats-grid,
  .results-grid,
  .services-grid,
  .case-studies-grid,
  .process-grid,
  .portfolio-grid,
  .testimonials-grid,
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section {
    padding: 80px 0;
  }

  .section-sm {
    padding: 48px 0;
  }
  .hero-content {
    padding: 10px;
}

}


.hero {
  padding: 180px 0 120px;
  background: linear-gradient(135deg, #6022EC, #7C3AED, #A78BFA);
  color: #FFFFFF;
  text-align: center;
}

.hero h1 {
  font-size: clamp(22px, 5vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  max-width: 800px;
  margin: auto;
  opacity: 0.95;
}

.social-proof .avatars .avatar {
  overflow: auto;
}

.social-proof .avatars {
  display: flex;
  justify-content: center;
  align-items: center;
}
.social-proof {
  padding : 40px 0;
}



/* padding  */


/* ========================================
   SECTION PADDING - RESPONSIVE
   ======================================== */

/* Hero Section */
.hero {
    padding: 100px 0;
}

/* Service Stats Section */
.service.mbl-pd {
    padding: 60px 0;
}

/* Video Section */
.video-section {
    padding: 80px 0;
}

/* Results Section */
.results-section {
    padding: 80px 0;
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

/* Portfolio Section */
.Portfolio.mbl-pd {
    padding: 80px 0;
}

/* Case Studies Section */
.case-studies-section {
    padding: 80px 0;
}

/* Process Section */
.process-section {
    padding: 80px 0;
}

/* Calendly Section */
.calendly-section {
    padding: 80px 0;
}

/* Portfolio (Latest Success Stories) Section */
.portfolio-section {
    padding: 80px 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

/* User Form Section */
.user-form.mbl-pd {
    padding: 80px 0;
}

/* Generic Section Padding */
.section {
    padding: 80px 0;
}

/* ========================================
   TABLET RESPONSIVE (768px - 1024px)
   ======================================== */

@media (max-width: 1024px) {
    .hero {
        padding: 80px 0;
    }

    .service.mbl-pd {
        padding: 50px 0;
    }

    .video-section,
    .results-section,
    .services-section,
    .Portfolio.mbl-pd,
    .case-studies-section,
    .process-section,
    .calendly-section,
    .portfolio-section,
    .testimonials-section,
    .faq-section,
    .user-form.mbl-pd {
        padding: 60px 0;
    }

    .trust-section {
        padding: 50px 0;
    }

    .section {
        padding: 60px 0;
    }
}

/* ========================================
   MOBILE RESPONSIVE (Max 767px)
   ======================================== */

@media (max-width: 767px) {
    .hero {
        padding: 60px 0 40px;
    }

    .service.mbl-pd {
        padding: 40px 0;
    }

    .video-section,
    .results-section,
    .services-section,
    .Portfolio.mbl-pd,
    .case-studies-section,
    .process-section,
    .calendly-section,
    .portfolio-section,
    .testimonials-section,
    .faq-section,
    .user-form.mbl-pd {
        padding: 50px 0;
    }

    .trust-section {
        padding: 40px 0;
    }

    .section {
        padding: 50px 0;
    }
}

/* ========================================
   EXTRA SMALL MOBILE (Max 480px)
   ======================================== */

@media (max-width: 480px) {
    .hero {
        padding: 50px 0 30px;
    }

    .service.mbl-pd {
        padding: 30px 0;
    }

    .video-section,
    .results-section,
    .services-section,
    .Portfolio.mbl-pd,
    .case-studies-section,
    .process-section,
    .calendly-section,
    .portfolio-section,
    .testimonials-section,
    .faq-section,
    .user-form.mbl-pd {
        padding: 40px 0;
    }

    .trust-section {
        padding: 30px 0;
    }

    .section {
        padding: 40px 0;
    }
}

/* ========================================
   CONTAINER PADDING (for content inside sections)
   ======================================== */

.container {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* ========================================
   SECTION HEADER SPACING
   ======================================== */

.section-header {
    margin-bottom: 50px;
}

@media (max-width: 767px) {
    .section-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 30px;
    }
}

/* ========================================
   CUSTOM SECTION-SPECIFIC ADJUSTMENTS
   ======================================== */

/* Hero section - extra top padding for header clearance */
.hero {
    padding-top: 120px;
}

@media (max-width: 767px) {
    .hero {
        padding-top: 80px;
    }
}

/* Form section - extra bottom padding */
.user-form.mbl-pd {
    padding-bottom: 100px;
}

@media (max-width: 767px) {
    .user-form.mbl-pd {
        padding-bottom: 60px;
    }
}

/* Trust section - less padding for compact display */
.trust-section {
    padding: 50px 0;
}

@media (max-width: 767px) {
    .trust-section {
        padding: 35px 0;
    }
}