/* ===== BASE STYLES ===== */
:root {
  /* Colors */
  --primary: #FF0000;      /* YouTube Red */
  --primary-dark: #CC0000;  /* Darker Red */
  --secondary: #282828;    /* Dark Gray */
  --text: #333333;         /* Main Text */
  --text-light: #606060;   /* Light Text */
  --light: #F9F9F9;        /* Light Background */
  --white: #FFFFFF;        /* White */
  --border: #E5E5E5;       /* Border Color */
  --success: #28A745;      /* Success Color */
  
  /* Typography */
  --font-main: 'Poppins', sans-serif;
  
  /* Spacing */
  --container: 1200px;
  --section-padding: 80px 0;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
  
  /* Transitions */
  --transition: all 0.3s ease;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader {
  text-align: center;
}

.loader .yt-icon {
  font-size: 6rem;
  color: var(--primary);
  margin-bottom: 2rem;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.loading-text {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--secondary);
  letter-spacing: 1px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%; /* 1rem = 10px */
}

body {
  font-family: var(--font-main);
  font-size: 1.9rem;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

h1 { font-size: 5.2rem; font-weight: 900; }
h2 { font-size: 4.2rem; font-weight: 900; }
h3 { font-size: 2.8rem; font-weight: 800; }
h4 { font-size: 2.2rem; font-weight: 700; }
h5 { font-size: 1.8rem; font-weight: 700; }
h6 { font-size: 1.6rem; font-weight: 700; }

p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  font-size: 1.7rem;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

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

ul, ol {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.2rem 2.8rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  font-size: 1.6rem;
  text-transform: capitalize;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Section Styling */
section {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.section-title {
  text-align: center;
  margin-bottom: 5rem;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--secondary);
  margin-bottom: 1.6rem;
  letter-spacing: -1.2px;
}

.section-subtitle {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header.scrolled {
  padding: 1rem 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 8rem;
  transition: var(--transition);
}

.logo {
  display: flex;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--secondary);
}

.logo i {
  color: var(--primary);
  margin-right: 1rem;
  font-size: 2.8rem;
}

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

.nav-links a {
  color: var(--text);
  font-weight: 500;
  margin-left: 3rem;
  position: relative;
}

.nav-links a:not(.btn):after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

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

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

.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: var(--transition);
  background-color: var(--secondary);
}

/* Hero Section */
.hero {
  padding: 18rem 0 10rem;
  background: linear-gradient(135deg, #fff8f8 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  margin-top: 8rem;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  max-width: 60rem;
  padding-right: 4rem;
}

.hero-title {
  font-size: 5.2rem;
  line-height: 1.2;
  margin-bottom: 2.5rem;
  color: var(--secondary);
}

.hero-title span {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.hero-title span:after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 15px;
  background-color: rgba(255, 0, 0, 0.2);
  z-index: -1;
  border-radius: 3px;
}

.hero-subtitle {
  font-size: 1.8rem;
  color: var(--text-light);
  margin-bottom: 4rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  margin-bottom: 5rem;
}

.hero-image {
  flex: 1;
  position: relative;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

.hero-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255,0,0,0.03) 0%, rgba(255,0,0,0) 100%);
  z-index: 0;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child):after {
  content: '';
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.7rem;
  color: var(--text-light);
  font-weight: 600;
}

/* Trusted By Section */
.trusted-by {
  padding: 5rem 0;
  background-color: var(--light);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trusted-by .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trusted-by .section-subtitle {
  margin-bottom: 3rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-light);
}

.brand-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4rem;
  opacity: 0.7;
  transition: var(--transition);
}

.brand-logos:hover {
  opacity: 1;
}

.brand-logos img {
  height: 40px;
  width: auto;
  filter: grayscale(100%);
  transition: var(--transition);
}

.brand-logos img:hover {
  filter: grayscale(0%);
  transform: translateY(-3px);
}

/* Services Section */
.services {
  padding: 10rem 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.services .section-header {
  text-align: center;
  max-width: 70rem;
  margin: 0 auto 6rem;
}

.services .section-title {
  margin-bottom: 1.5rem;
}

.services .section-title span {
  background: linear-gradient(120deg, var(--primary), var(--primary-dark));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.services .section-description {
  font-size: 2rem;
  color: var(--text-light);
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
  margin-top: 6rem;
}

.service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 4rem 3rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transition: var(--transition);
  opacity: 0;
  transform: translateY(-100%);
  z-index: -1;
}

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

.service-card:hover:before {
  opacity: 1;
  transform: translateY(0);
}

.service-icon {
  width: 8rem;
  height: 8rem;
  background: rgba(255, 0, 0, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.5rem;
  font-size: 3rem;
  color: var(--primary);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  transform: rotateY(180deg);
}

.service-card-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--secondary);
  margin-bottom: 1.4rem;
}

.service-card-desc {
  font-size: 1.7rem;
  color: var(--text-light);
  margin-bottom: 0;
  font-weight: 500;
}

.audits-analysis-modern {
  padding: 80px 0 40px 0;
  background: #fff;
}

.modern-split-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 8px 32px 0 rgba(34,34,34,0.07);
  position: relative;
  overflow: visible;
  min-height: 320px;
  transition: box-shadow 0.22s;
}

.modern-split-block:hover {
  box-shadow: 0 16px 48px 0 rgba(255,0,0,0.13);
}

.modern-split-left {
  flex-direction: row;
}

.modern-split-right {
  flex-direction: row-reverse;
  background: #181818;
}

.modern-split-img-wrap {
  flex: 0 0 430px;
  max-width: 430px;
  min-width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 0;
  position: relative;
  z-index: 2;
}

.modern-split-img {
  width: 100%;
  max-width: 430px;
  min-width: 220px;
  height: 320px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 8px 32px 0 rgba(255,0,0,0.08);
  background: #fff;
  transition: transform 0.22s cubic-bezier(.4,2,.4,1), box-shadow 0.22s;
}

.modern-split-block:hover .modern-split-img {
  transform: scale(1.045) rotate(-1.5deg);
  box-shadow: 0 16px 48px 0 rgba(255,0,0,0.16);
}

.modern-split-content {
  flex: 1 1 0%;
  padding: 44px 52px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.modern-split-title {
  font-size: 2.7rem;
  font-weight: 900;
  color: #FF0000;
  margin-bottom: 14px;
  letter-spacing: -0.7px;
}

.modern-split-right .modern-split-title {
  color: #fff;
}

.modern-split-bar {
  width: 56px;
  height: 5px;
  border-radius: 3px;
  background: linear-gradient(90deg, #FF0000 60%, #222 100%);
  margin-bottom: 18px;
}

.modern-split-right .modern-split-bar {
  background: linear-gradient(90deg, #fff 40%, #FF0000 100%);
}

.modern-split-summary {
  font-size: 1.5rem;
  color: #222;
  margin-bottom: 20px;
  font-weight: 500;
}

.modern-split-right .modern-split-summary {
  color: #eee;
}

.modern-split-features {
  list-style: none;
  padding: 0;
  margin: 0 0 13px 0;
  color: #444;
  font-size: 1.04rem;
}

.modern-split-features li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 28px;
}

.modern-split-features li:before {
  content: '\f058';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #FF0000;
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.1em;
}

.modern-split-right .modern-split-features {
  color: #ddd;
}

.modern-split-right .modern-split-features li:before {
  color: #fff;
}

.modern-split-highlight {
  background: #fff3f3;
  color: #c00;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 600;
  margin-top: 10px;
  font-size: 1.04rem;
  box-shadow: 0 2px 12px 0 rgba(255,0,0,0.06);
}

.modern-split-right .modern-split-highlight {
  background: #222;
  color: #fff;
  box-shadow: 0 2px 12px 0 rgba(255,255,255,0.10);
}

/* ======================
   How We Work Section (Stepper/Timeline)
====================== */
.how-we-work-section {
  padding: 80px 0 48px 0;
  background: #fafbfc;
}
.how-we-work-header {
  text-align: center;
  margin-bottom: 48px;
}
.how-we-work-header .section-title {
  font-size: 3.2rem;
  font-weight: 900;
  color: #FF0000;
  margin-bottom: 10px;
  letter-spacing: -1.1px;
}
.how-we-work-header .section-subtitle {
  color: #181818;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  opacity: 0.92;
  text-transform: uppercase;
}
.how-we-work-intro {
  color: #232323;
  font-size: 1.45rem;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 16px;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.7;
}
.how-we-work-timeline {
  position: relative;
  margin: 0 auto;
  max-width: 1020px;
}
.how-we-work-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 54px;
  position: relative;
}
.how-we-work-step.left {
  flex-direction: row;
}
.how-we-work-step.right {
  flex-direction: row-reverse;
}
.how-we-work-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(34,34,34,0.09);
  padding: 38px 30px 32px 30px;
  min-width: 340px;
  max-width: 440px;
  flex: 1 1 0%;
  margin: 0 28px;
  position: relative;
  z-index: 2;
  font-size: 1.13rem;
  font-weight: 500;
  color: #232323;
}
.how-we-work-card h3 {
  font-size: 1.29rem;
  font-weight: 800;
  color: #FF0000;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.how-we-work-stepper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 3;
  min-width: 48px;
  margin-top: 0;
}
.step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FF0000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 4px 18px 0 rgba(255,0,0,0.09);
  border: 3px solid #fff;
  margin-bottom: 0;
  z-index: 2;
}
.step-line {
  width: 4px;
  height: 100px;
  background: linear-gradient(to bottom, #FF0000 50%, #e0e0e0 100%);
  margin: 0 auto;
  margin-top: 0;
  border-radius: 2px;
  z-index: 1;
}
.how-we-work-step.right .how-we-work-card {
  margin-left: 28px;
  margin-right: 0;
}
.how-we-work-step.left .how-we-work-card {
  margin-right: 28px;
  margin-left: 0;
}
@media (max-width: 1000px) {
  .how-we-work-timeline {
    max-width: 98vw;
  }
  .how-we-work-card {
    min-width: 0;
    max-width: 98vw;
    padding: 22px 8px 18px 8px;
    font-size: 1.03rem;
  }
}
@media (max-width: 700px) {
  .how-we-work-section {
    padding: 36px 0 14px 0;
  }
  .how-we-work-header .section-title {
    font-size: 1.6rem;
  }
  .how-we-work-header .section-subtitle {
    font-size: 1.1rem;
  }
  .how-we-work-intro {
    font-size: 1.01rem;
  }
  .how-we-work-step,
  .how-we-work-step.left,
  .how-we-work-step.right {
    flex-direction: column !important;
    align-items: stretch;
    margin-bottom: 32px;
  }
  .how-we-work-card {
    margin: 0 0 16px 0 !important;
    min-width: 0;
    max-width: 100%;
    padding: 12px 2px 8px 2px;
    font-size: 0.98rem;
  }
  .how-we-work-stepper {
    min-width: 0;
    margin: 0 0 10px 0;
  }
  .step-circle {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
    border-width: 2px;
  }
  .step-line {
    width: 3px;
    height: 60px;
  }
}

/* ======================
   Why Choose Us Section
====================== */
.why-choose-section {
  padding: 80px 0 48px 0;
  background: #fff;
}
.why-choose-header {
  text-align: center;
  margin-bottom: 48px;
}
.why-choose-header .section-title {
  font-size: 3.4rem;
  font-weight: 900;
  color: #FF0000;
  margin-bottom: 10px;
  letter-spacing: -1.1px;
}
.why-choose-header .section-subtitle {
  color: #181818;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  opacity: 0.92;
  text-transform: uppercase;
}
.why-choose-intro {
  color: #232323;
  font-size: 2rem;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 16px;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.7;
}
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 38px;
}
.why-choose-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 24px 0 rgba(34,34,34,0.09);
  padding: 38px 30px 32px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
  min-height: 320px;
  overflow: visible;
}
.why-choose-card:hover {
  box-shadow: 0 8px 36px 0 rgba(255,0,0,0.13);
  transform: translateY(-4px) scale(1.025);
  z-index: 2;
}
.why-choose-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 22px;
  box-shadow: 0 2px 18px 0 rgba(34,34,34,0.08);
  transition: background 0.18s, color 0.18s;
}
.why-choose-red {
  background: linear-gradient(120deg, #FF0000 70%, #fff 100%);
}
.why-choose-red .why-choose-icon {
  background: #fff;
  color: #FF0000;
  border: 2.5px solid #FF0000;
}
.why-choose-black {
  background: linear-gradient(120deg, #181818 70%, #fff 100%);
}
.why-choose-black .why-choose-icon {
  background: #fff;
  color: #181818;
  border: 2.5px solid #181818;
}
.why-choose-white {
  background: linear-gradient(120deg, #fff 80%, #FF0000 100%);
}
.why-choose-white .why-choose-icon {
  background: #FF0000;
  color: #fff;
  border: 2.5px solid #fff;
}
.why-choose-gray {
  background: linear-gradient(120deg, #e0e0e0 80%, #FF0000 100%);
}
.why-choose-gray .why-choose-icon {
  background: #181818;
  color: #fff;
  border: 2.5px solid #e0e0e0;
}
.why-choose-card h3 {
  font-size: 1.7rem;
  font-weight: 800;
  color: #181818;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.why-choose-red h3,
.why-choose-black h3 {
  color: #fff;
}
.why-choose-gray h3 {
  color: #c00;
}
.why-choose-card p {
  color: #222;
  font-size: 1.19rem;
  margin-bottom: 0;
  font-weight: 500;
}
.why-choose-red p,
.why-choose-black p {
  color: #fff;
}
.why-choose-gray p {
  color: #181818;
}
@media (max-width: 1100px) {
  .why-choose-grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
  .why-choose-card {
    min-height: 0;
    padding: 28px 12px 22px 12px;
  }
}
@media (max-width: 700px) {
  .why-choose-section {
    padding: 36px 0 14px 0;
  }
  .why-choose-header .section-title {
    font-size: 2.1rem;
  }
  .why-choose-header .section-subtitle {
    font-size: 1.2rem;
  }
  .why-choose-intro {
    font-size: 1.15rem;
  }
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .why-choose-card {
    padding: 14px 4px 8px 4px;
  }
  .why-choose-card h3 {
    font-size: 1.15rem;
    text-align: center;
  }
  .why-choose-card p {
    font-size: 0.98rem;
    text-align: center;
  }
  .why-choose-icon {
    margin: 0 auto 10px auto;
  }
}

/* ======================
   Dedicated Manager Section
====================== */
.dedicated-manager-section {
  padding: 80px 0 48px 0;
  background: #fff;
}
.dedicated-manager-container {
  display: flex;
  align-items: stretch;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.dedicated-manager-left {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 500px;
}
.dedicated-manager-subtitle {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  color: #FF0000;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2.2rem;
  opacity: 0.92;
}
.dedicated-manager-title {
  font-size: 3.8rem;
  font-weight: 900;
  color: #181818;
  margin-bottom: 2.3rem;
  line-height: 1.13;
  letter-spacing: -1.2px;
}
.dedicated-manager-desc.refined {
  font-size: 2.1rem;
  color: #232323;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 540px;
  opacity: 0.96;
}
.dedicated-manager-features {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  gap: 36px;
  min-width: 0;
  max-width: 600px;
  justify-content: center;
}
.dedicated-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(34,34,34,0.09);
  padding: 36px 32px 28px 32px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
}
.dedicated-feature-card:hover {
  box-shadow: 0 8px 32px 0 rgba(255,0,0,0.13);
  transform: translateY(-2px) scale(1.015);
}
.dedicated-feature-icon {
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  box-shadow: 0 2px 18px 0 rgba(34,34,34,0.09);
  margin-top: 4px;
  margin-right: 8px;
  transition: background 0.18s, color 0.18s;
}
.dedicated-feature-red {
  background: #FF0000;
  color: #fff;
}
.dedicated-feature-black {
  background: #181818;
  color: #fff;
}
.dedicated-feature-gray {
  background: #e0e0e0;
  color: #FF0000;
}
.dedicated-feature-content h3 {
  font-size: 2.1rem;
  font-weight: 800;
  color: #FF0000;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.dedicated-feature-content p {
  color: #222;
  font-size: 1.35rem;
  margin-bottom: 0;
}
@media (max-width: 1100px) {
  .dedicated-manager-container {
    flex-direction: column;
    gap: 36px;
    max-width: 100%;
  }
  .dedicated-manager-left, .dedicated-manager-features {
    max-width: 100%;
  }
}
@media (max-width: 700px) {
  .dedicated-manager-section {
    padding: 36px 0 14px 0;
  }
  .dedicated-manager-left .section-title {
    font-size: 2.1rem;
    text-align: center;
  }
  .dedicated-manager-desc {
    font-size: 1.3rem;
    text-align: center;
  }
  .dedicated-manager-features {
    gap: 20px;
  }
  .dedicated-feature-card {
    flex-direction: column;
    align-items: center;
    padding: 16px 2px 12px 2px;
  }
  .dedicated-feature-content h3 {
    font-size: 1.3rem;
    text-align: center;
  }
  .dedicated-feature-content p {
    font-size: 1.08rem;
    text-align: center;
  }
  .dedicated-feature-icon {
    margin: 0 0 10px 0;
  }
}

/* ======================
   Monetization Section (Card Grid Redesign)
====================== */
.monetization-section {
  padding: 80px 0 48px 0;
  background: #fff;
}

.monetization-header {
  text-align: center;
  margin-bottom: 46px;
}

.monetization-header .section-title {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--secondary);
  margin-bottom: 1.6rem;
  letter-spacing: -1.2px;
}

.monetization-header .section-title span {
  color: #181818;
  font-weight: 600;
}

.monetization-header .section-description {
  color: #333;
  font-size: 1.08rem;
  max-width: 700px;
  margin: 0 auto;
}

.monetization-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  max-width: 980px;
  margin: 0 auto;
  margin-top: 28px;
}

.monetization-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 24px 0 rgba(34,34,34,0.09);
  padding: 40px 34px 34px 34px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
  min-height: 320px;
  overflow: visible;
}

.monetization-card:hover {
  box-shadow: 0 8px 36px 0 rgba(255,0,0,0.13);
  transform: translateY(-4px) scale(1.025);
  z-index: 2;
}

.monetization-card-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  margin-bottom: 28px;
  box-shadow: 0 2px 18px 0 rgba(34,34,34,0.08);
  transition: background 0.18s, color 0.18s;
}

.monetization-card-red {
  background: linear-gradient(120deg, #FF0000 70%, #fff 100%);
}

.monetization-card-red .monetization-card-icon {
  background: #fff;
  color: #FF0000;
  border: 2.5px solid #FF0000;
}

.monetization-card-black {
  background: linear-gradient(120deg, #181818 70%, #fff 100%);
}

.monetization-card-black .monetization-card-icon {
  background: #fff;
  color: #181818;
  border: 2.5px solid #181818;
}

.monetization-card-white {
  background: linear-gradient(120deg, #fff 80%, #FF0000 100%);
}

.monetization-card-white .monetization-card-icon {
  background: #FF0000;
  color: #fff;
  border: 2.5px solid #fff;
}

.monetization-card-gray {
  background: linear-gradient(120deg, #e0e0e0 80%, #FF0000 100%);
}

.monetization-card-gray .monetization-card-icon {
  background: #181818;
  color: #fff;
  border: 2.5px solid #e0e0e0;
}

.monetization-card-title {
  font-size: 1.7rem;
  font-weight: 900;
  color: #181818;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.monetization-card-red .monetization-card-title {
  color: #fff;
}

.monetization-card-black .monetization-card-title {
  color: #fff;
}

.monetization-card-gray .monetization-card-title {
  color: #c00;
}

.monetization-card-desc {
  color: #222;
  font-size: 1.19rem;
  margin-bottom: 0;
  font-weight: 500;
}

.monetization-card-red .monetization-card-desc,
.monetization-card-black .monetization-card-desc {
  color: #fff;
}

.monetization-card-gray .monetization-card-desc {
  color: #181818;
}

@media (max-width: 900px) {
  .monetization-card-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .monetization-card {
    min-height: 0;
    padding: 28px 12px 22px 12px;
  }
}

@media (max-width: 600px) {
  .monetization-section {
    padding: 36px 0 14px 0;
  }
  .monetization-header .section-title {
    font-size: 1.2rem;
  }
  .monetization-card {
    padding: 14px 4px 8px 4px;
  }
  .monetization-card-title {
    font-size: 1.05rem;
    text-align: center;
  }
  .monetization-card-desc {
    font-size: 0.98rem;
    text-align: center;
  }
  .monetization-card-icon {
    margin: 0 auto 10px auto;
  }
}

@media (max-width: 1100px) {
  .modern-split-content {
    padding: 30px 18px;
  }
  .modern-split-img-wrap {
    max-width: 320px;
  }
  .modern-split-img {
    max-width: 320px;
    height: 220px;
  }
}

@media (max-width: 800px) {
  .modern-split-block {
    flex-direction: column !important;
    margin-bottom: 40px;
    min-height: unset;
  }
  .modern-split-img-wrap {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    justify-content: flex-start;
  }
  .modern-split-img {
    width: 100%;
    max-width: 100%;
    min-width: 120px;
    height: 180px;
  }
  .monetization-step-icon {
    width: 54px;
    height: 54px;
    font-size: 1.5rem;
  }
}

@media (max-width: 600px) {
  .monetization-section {
    padding: 36px 0 14px 0;
  }
  .monetization-header .section-title {
    font-size: 1.2rem;
  }
  .monetization-step {
    height: 110px;
  }
  .modern-split-content {
    padding: 10px 0;
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .container {
    padding: 0 4rem;
  }
  
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    margin-bottom: 5rem;
    padding-right: 0;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 56.25%; /* 9px */
  }
  
  .hamburger {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 8rem;
    left: -100%;
    width: 100%;
    height: calc(100vh - 8rem);
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    padding: 5rem 0;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-links a {
    margin: 1.5rem 0;
    font-size: 2rem;
  }
  
  .hero {
    padding: 15rem 0 8rem;
    margin-top: 7rem;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }
  
  .stat-item:not(:last-child):after {
    display: none;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 50%; /* 8px */
  }
  
  .container {
    padding: 0 2rem;
  }
  
  .hero-title {
    font-size: 3.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.6rem;
  }
  
  .brand-logos {
    gap: 2rem;
  }
  
  .brand-logos img {
    height: 30px;
  }
}

.service-card h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 2.5rem;
  font-size: 1.6rem;
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.5rem;
  transition: var(--transition);
}

.service-link i {
  margin-left: 0.8rem;
  font-size: 1.2rem;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--primary-dark);
}

.service-link:hover i {
  transform: translateX(5px);
}

/* About Section */
.about {
  padding: 10rem 0;
  background-color: var(--light);
  position: relative;
  overflow: hidden;
}

.about .section-header {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto 6rem;
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr));
  gap: 6rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}

.about-text {
  padding: 2rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.highlight {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  color: var(--text);
  font-weight: 500;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.feature {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.feature i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.about-stats .stat {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 0, 0, 0.05);
  border-radius: 15px;
  transition: var(--transition);
}

.about-stats .stat:hover {
  background: rgba(255, 0, 0, 0.1);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

/* Process Section */
.process {
  padding: 10rem 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.step {
  text-align: center;
  padding: 3rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  border: 3px solid var(--white);
  position: relative;
  z-index: 1;
}

.step-number::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.1);
  transform: translate(-50%, -50%);
  z-index: -1;
}

/* Our Work Section (Carousel) */

/* Pricing Section */

/* FAQ Section: Modern Card-Based */
.faq-section {
  background: #fff;
  padding: 80px 0 60px 0;
}
.faq-header {
  text-align: center;
  margin-bottom: 42px;
}
.faq-header .section-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 10px;
  letter-spacing: -1.1px;
}
.faq-header .section-subtitle {
  color: #282828;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  margin-bottom: 8px;
  opacity: 0.95;
  text-transform: uppercase;
}
.faq-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto;
}
.faq-card {
  background: linear-gradient(120deg, #fff 75%, #ffeaea 100%);
  border-radius: 22px;
  box-shadow: 0 6px 32px 0 rgba(34,34,34,0.10);
  padding: 38px 30px 32px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
  min-height: 270px;
  position: relative;
  border: 2px solid #fff;
}
.faq-card:hover {
  box-shadow: 0 12px 36px 0 rgba(255,0,0,0.13);
  transform: translateY(-4px) scale(1.025);
  z-index: 2;
  border: 2px solid #FF0000;
}
.faq-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, #FF0000 60%, #fff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  color: #fff;
  margin-bottom: 22px;
  box-shadow: 0 2px 18px 0 rgba(255,0,0,0.10);
}
.faq-q {
  font-size: 1.25rem;
  font-weight: 800;
  color: #181818;
  margin-bottom: 13px;
  letter-spacing: -0.4px;
}
.faq-a {
  color: #232323;
  font-size: 1.13rem;
  font-weight: 500;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .faq-card-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .faq-section {
    padding: 36px 0 24px 0;
  }
  .faq-header .section-title {
    font-size: 1.45rem;
  }
  .faq-header .section-subtitle {
    font-size: 1.01rem;
  }
  .faq-card {
    padding: 22px 12px 18px 12px;
    min-height: 0;
  }
  .faq-icon {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  .faq-q {
    font-size: 1.05rem;
  }
  .faq-a {
    font-size: 0.97rem;
  }
}


.faq-header {
  text-align: center;
  margin-bottom: 36px;
}
.faq-header .section-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 10px;
}
.faq-header .section-subtitle {
  color: #222;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  opacity: 0.92;
  text-transform: uppercase;
}
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  border-radius: 16px;
  background: #f8f8f8;
  box-shadow: 0 2px 10px 0 rgba(34,34,34,0.04);
  margin-bottom: 22px;
  transition: box-shadow 0.18s;
}
.faq-item.open {
  box-shadow: 0 8px 30px 0 rgba(255,0,0,0.08);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  text-align: left;
  padding: 22px 32px 18px 32px;
  border-radius: 16px 16px 0 0;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
  position: relative;
}
.faq-question:after {
  content: '\f078';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: 28px;
  top: 26px;
  font-size: 1.1rem;
  transition: transform 0.23s;
}
.faq-item.open .faq-question:after {
  transform: rotate(-180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  color: #232323;
  font-size: 1.09rem;
  font-weight: 500;
  padding: 0 32px;
  border-radius: 0 0 16px 16px;
  box-sizing: border-box;
  transition: max-height 0.36s cubic-bezier(.77,0,.18,1), padding 0.18s;
}
.faq-item.open .faq-answer {
  padding: 0 32px 22px 32px;
  max-height: 400px;
}
@media (max-width: 700px) {
  .faq-section {
    padding: 36px 0 12px 0;
  }
  .faq-header .section-title {
    font-size: 1.35rem;
  }
  .faq-header .section-subtitle {
    font-size: 1rem;
  }
  .faq-list {
    max-width: 98vw;
  }
  .faq-question {
    font-size: 1.01rem;
    padding: 16px 14px 12px 14px;
  }
  .faq-answer, .faq-item.open .faq-answer {
    padding: 0 14px 12px 14px;
  }
}

.pricing-section {
  padding: 80px 0 56px 0;
  background: #f8f8f8;
}
.pricing-header {
  text-align: center;
  margin-bottom: 36px;
}
.pricing-header .section-title {
  font-size: 2.9rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 10px;
}
.pricing-header .section-subtitle {
  color: #222;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  opacity: 0.92;
  text-transform: uppercase;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(34,34,34,0.08);
  padding: 46px 32px 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.18s, transform 0.18s;
  min-height: 480px;
  position: relative;
}
.pricing-card:hover {
  box-shadow: 0 8px 36px 0 rgba(255,0,0,0.13);
  transform: translateY(-4px) scale(1.025);
  z-index: 2;
}
.pricing-plan {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.pricing-price {
  font-size: 2.9rem;
  font-weight: 900;
  color: #181818;
  margin-bottom: 24px;
}
.pricing-price span {
  font-size: 1.3rem;
  color: #666;
  font-weight: 600;
  margin-left: 2px;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  margin-top: 8px;
}
.pricing-features li {
  font-size: 1.13rem;
  color: #232323;
  font-weight: 500;
  margin-bottom: 13px;
  padding-left: 0.5em;
  position: relative;
}
.pricing-features li:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary);
  position: absolute;
  left: -1.3em;
  top: 0.1em;
  font-size: 1rem;
  opacity: 0.75;
}
.pricing-free {
  border: 2.5px solid #e5e5e5;
}
.pricing-basic {
  border: 2.5px solid #FF0000;
}
.pricing-premium {
  border: 2.5px solid #181818;
  background: linear-gradient(120deg, #fff 80%, #ffeaea 100%);
  box-shadow: 0 8px 36px 0 rgba(255,0,0,0.13);
}
.pricing-premium .pricing-plan {
  color: #181818;
}
@media (max-width: 1000px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .pricing-card {
    min-height: 0;
    padding: 36px 18px 26px 18px;
  }
}

.our-work-section {
  padding: 80px 0 48px 0;
  background: #fff;
}
.our-work-header {
  text-align: center;
  margin-bottom: 36px;
}
.our-work-header .section-title {
  font-size: 3.2rem;
  font-weight: 900;
  color: #FF0000;
  margin-bottom: 10px;
  letter-spacing: -1.1px;
}
.our-work-header .section-subtitle {
  color: #181818;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  opacity: 0.92;
  text-transform: uppercase;
}
.our-work-intro {
  color: #232323;
  font-size: 1.25rem;
  max-width: 820px;
  margin: 0 auto;
  margin-top: 16px;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.7;
}
.our-work-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
  margin-top: 32px;
  margin-bottom: 16px;
}
.work-gallery-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 340px;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(34,34,34,0.10);
    background: #fff;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.2s, box-shadow 0.2s;
    padding: 12px 0;
}
.work-gallery-img:hover {
  transform: scale(1.035) translateY(-6px);
  box-shadow: 0 8px 32px 0 rgba(255,0,0,0.16);
}
@media (max-width: 900px) {
  .our-work-gallery {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
  }
  .work-gallery-img {
    height: 140px;
  }
}
@media (max-width: 600px) {
  .our-work-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .work-gallery-img {
    height: 110px;
  }
}
.our-work-header .section-subtitle {
  font-size: 1.1rem;
}
.our-work-intro {
  font-size: 1.01rem;
}
@media (max-width: 700px) {
  .our-work-section {
    padding: 36px 0 14px 0;
  }
  .our-work-header .section-title {
    font-size: 1.6rem;
  }
  .our-work-header .section-subtitle {
    font-size: 1.1rem;
  }
  .our-work-intro {
    font-size: 1.01rem;
  }
  .our-work-carousel {
    max-width: 98vw;
  }
  .carousel-track {
    width: 98vw;
    height: 180px;
    border-radius: 10px;
  }
  .carousel-slide {
    min-width: 98vw;
    height: 180px;
  }
  .carousel-slide img {
    border-radius: 10px;
  }
  .carousel-btn {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
    margin: 0 6px;
  }
}

/* Testimonials Section */
.testimonials {
  padding: 10rem 0;
  background-color: var(--light);
  position: relative;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 15px;
  padding: 3rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.testimonial-content p {
  font-size: 2rem;
  line-height: 1.9;
  margin-bottom: 2.2rem;
  color: var(--text-light);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.testimonial-image {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info h4 {
  font-size: 2.2rem;
  color: var(--secondary);
  margin-bottom: 0.7rem;
}

.author-info span {
  font-size: 1.7rem;
  color: var(--primary);
}

/* Contact Section */
.contact {
  padding: 10rem 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr));
  gap: 6rem;
  align-items: start;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form label {
  font-weight: 500;
  color: var(--text);
}

.form input,
.form textarea {
  width: 100%;
  padding: 1.2rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 1.6rem;
  transition: var(--transition);
}

.form input:focus,
.form textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}

.form textarea {
  height: 15rem;
  resize: vertical;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
}

.info-item {
  text-align: center;
  padding: 2rem;
  background: var(--light);
  border-radius: 15px;
  transition: var(--transition);
}

.info-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.info-item i {
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.info-item h4 {
  font-size: 2.2rem;
  color: var(--secondary);
  margin-bottom: 1.2rem;
}

.info-item p {
  color: var(--text-light);
  font-size: 1.7rem;
}

/* ===== Get Our Service Section ===== */
.get-service-section {
  background: linear-gradient(120deg, #fff 80%, #FF0000 100%);
  padding: 64px 0 54px 0;
  box-shadow: 0 8px 32px 0 rgba(255,0,0,0.08);
  position: relative;
  z-index: 2;
}
.get-service-container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 32px 0 rgba(34,34,34,0.10);
  padding: 48px 32px 38px 32px;
  position: relative;
}
.get-service-content {
  text-align: center;
}
.get-service-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #FF0000;
  margin-bottom: 1.2rem;
  letter-spacing: -1.1px;
  text-shadow: 0 2px 8px rgba(255,0,0,0.10);
}
.get-service-intro {
  font-size: 1.35rem;
  color: #232323;
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.get-service-body {
  font-size: 1.18rem;
  color: #181818;
  margin-bottom: 1.1rem;
  font-weight: 500;
}
.get-service-highlight {
  background: #FF0000;
  color: #fff;
  font-size: 1.16rem;
  border-radius: 16px;
  padding: 18px 18px 18px 18px;
  margin: 24px 0 18px 0;
  font-weight: 600;
  box-shadow: 0 2px 18px 0 rgba(255,0,0,0.11);
}
.get-service-highlight a.lenostube-link {
  color: #fff;
  text-decoration: underline;
  font-weight: 800;
  background: #232323;
  padding: 2px 10px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.get-service-highlight a.lenostube-link:hover {
  background: #fff;
  color: #FF0000;
}
.get-service-cta {
  font-size: 1.18rem;
  color: #232323;
  margin-top: 1.1rem;
  font-weight: 600;
}
.get-service-make-shine {
  color: #FF0000;
  font-weight: 900;
  font-size: 1.21rem;
  letter-spacing: -0.5px;
}
@media (max-width: 700px) {
  .get-service-container {
    padding: 22px 6px 18px 6px;
  }
  .get-service-title {
    font-size: 2rem;
  }
  .get-service-intro, .get-service-body, .get-service-highlight, .get-service-cta {
    font-size: 1.01rem;
  }
}

/* ===== Back to Top Button ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1000;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #FF0000;
  color: #fff;
  border: none;
  box-shadow: 0 4px 18px 0 rgba(255,0,0,0.15);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.back-to-top:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  background: #cc0000;
  box-shadow: 0 6px 24px 0 rgba(255,0,0,0.18);
}
@media (max-width: 700px) {
  .back-to-top {
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
  }
}

/* Footer */
.footer {
  background-color: var(--secondary);
  color: var(--white);
  padding: 6rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  text-align: left;
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 2.2rem;
}

.footer-brand .logo i {
  color: var(--primary);
  margin-right: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-links h4 {
  font-size: 2rem;
  margin-bottom: 1.7rem;
  color: var(--white);
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  font-size: 1.7rem;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-social h4 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--white);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1.6rem;
}

.social-icon:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-5px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.4rem;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.7rem;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--primary);
}

/* AOS Animations */
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Cursor Styles */
[data-cursor="pointer"] {
  cursor: pointer;
}

/* Form Validation States */
.form input:invalid,
.form textarea:invalid {
  border-color: var(--primary);
}

/* Loading States */
.loading {
  opacity: 0.5;
  pointer-events: none;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}
