/* =====================================================
   ALIRUB WINDOWS & DOORS LLC - STYLESHEET
   Modern Premium Architectural Design
   ===================================================== */

/* =====================================================
   1. CSS RESET AND BASE STYLES
   ===================================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* =====================================================
   2. CSS VARIABLES
   ===================================================== */
:root {
  --primary: #0A1929;
  --primary-light: #132240;
  --primary-dark: #060d17;
  --accent: #C8853D;
  --accent-light: #daa05a;
  --accent-dark: #a66b2a;
  --dark: #0A1929;
  --light: #F5F2EE;
  --light-gray: #e8e4de;
  --text: #1A2332;
  --text-light: #4a5568;
  --text-muted: #718096;
  --white: #FFFFFF;
  --gray: #E2E8F0;
  --gray-dark: #A0AEC0;
  --border: #CBD5E0;
  --success: #38A169;
  --error: #E53E3E;
  
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --spacing-4xl: 6rem;
  
  --container-max: 1280px;
  --header-height: 80px;
  
  --transition: all 0.3s ease;
  --transition-fast: all 0.2s ease;
  --transition-slow: all 0.5s ease;
  --shadow: 0 4px 6px -1px rgba(10, 25, 41, 0.1), 0 2px 4px -1px rgba(10, 25, 41, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(10, 25, 41, 0.1), 0 4px 6px -2px rgba(10, 25, 41, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(10, 25, 41, 0.1), 0 10px 10px -5px rgba(10, 25, 41, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(10, 25, 41, 0.25);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
}

/* =====================================================
   3. TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
}

h5 {
  font-size: 1.125rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  margin-bottom: var(--spacing-md);
  color: var(--text-light);
}

.lead {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-light);
}

strong, b {
  font-weight: 600;
}

small {
  font-size: 0.875rem;
}

a:hover {
  color: var(--accent);
}

::selection {
  background-color: var(--accent);
  color: var(--white);
}

/* =====================================================
   4. CONTAINER
   ===================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.container-sm {
  max-width: 960px;
}

.container-lg {
  max-width: 1400px;
}

/* =====================================================
   5. HEADER / NAVIGATION
   ===================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background-color: transparent;
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  background-color: var(--white);
  box-shadow: var(--shadow);
}

.header.scrolled .nav-link {
  color: var(--text);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
  color: var(--accent);
}

.header.scrolled .hamburger span {
  background-color: var(--text);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  transition: var(--transition);
}

.header.scrolled .logo {
  color: var(--primary);
}

.logo-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent);
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 800;
  font-size: 1.25rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  padding: var(--spacing-sm) 0;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.header-cta {
  display: none;
}

.header-cta .btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.header.scrolled .hamburger span {
  background-color: var(--text);
}

.header.scrolled .hamburger.active span {
  background-color: var(--accent);
}

@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--primary);
    flex-direction: column;
    justify-content: center;
    gap: var(--spacing-xl);
    padding: var(--spacing-3xl);
    transition: var(--transition-slow);
    box-shadow: var(--shadow-xl);
  }
  
  .nav.active {
    right: 0;
  }
  
  .nav-link {
    font-size: 1.25rem;
    color: var(--white);
  }
  
  .header-cta {
    display: block;
    margin-top: var(--spacing-lg);
  }
}

/* =====================================================
   6. BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.btn-sm {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

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

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

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

.btn-secondary:hover {
  background-color: var(--primary-light);
  border-color: var(--primary-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-outline.btn-accent {
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline.btn-accent:hover {
  background-color: var(--accent);
  color: var(--white);
}

/* =====================================================
   7. HERO SECTION - GRADIENT BACKGROUND ONLY
   ===================================================== */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0A1929 0%, #132240 50%, #1a3a5c 100%);
  position: relative;
  padding: 120px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(135deg, rgba(200, 133, 61, 0.03) 25%, transparent 25%),
    linear-gradient(225deg, rgba(200, 133, 61, 0.03) 25%, transparent 25%),
    linear-gradient(45deg, rgba(200, 133, 61, 0.03) 25%, transparent 25%),
    linear-gradient(315deg, rgba(200, 133, 61, 0.03) 25%, transparent 25%);
  background-size: 80px 80px;
  background-position: 0 0, 40px 0, 40px -40px, 0px 40px;
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: var(--spacing-4xl) 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-lg);
  background-color: rgba(200, 133, 61, 0.15);
  border: 1px solid rgba(200, 133, 61, 0.3);
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-xl);
}

.hero-badge-icon {
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: var(--radius-full);
}

.hero-badge-text {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--spacing-lg);
}

.hero-title span {
  color: var(--accent);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: var(--spacing-2xl);
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-3xl);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-2xl);
  padding-top: var(--spacing-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* =====================================================
   8. SECTION HEADERS
   ===================================================== */
.section {
  padding: var(--spacing-4xl) 0;
}

.section-light {
  background-color: var(--light);
}

.section-dark {
  background-color: var(--primary);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--spacing-3xl);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-xs) var(--spacing-lg);
  background-color: rgba(200, 133, 61, 0.1);
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-md);
}

.section-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--accent);
  border-radius: var(--radius-full);
}

.section-tag-text {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  margin-bottom: var(--spacing-md);
}

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

.section-desc {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.section-desc.text-white {
  color: rgba(255, 255, 255, 0.8);
}

.section-header-left {
  text-align: left;
  margin-left: 0;
}

/* =====================================================
   9. SERVICE CARDS - FIXED 200px HEIGHT
   ===================================================== */
.services {
  padding: var(--spacing-4xl) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-xl);
}

.service-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-content {
  padding: 24px;
}

.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: var(--radius);
  margin-bottom: var(--spacing-lg);
  box-shadow: 0 4px 15px rgba(200, 133, 61, 0.3);
}

.service-icon svg {
  width: 30px;
  height: 30px;
  color: var(--white);
}

.service-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--text);
}

.service-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  transition: var(--transition);
}

.service-link svg {
  width: 18px;
  height: 18px;
  transition: var(--transition);
}

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

.service-link:hover svg {
  transform: translateX(4px);
}

/* =====================================================
   10. ABOUT SECTION - 400px HEIGHT
   ===================================================== */
.about {
  padding: var(--spacing-4xl) 0;
  background-color: var(--light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.about-content {
  padding-left: var(--spacing-xl);
}

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-xs) var(--spacing-md);
  background-color: rgba(200, 133, 61, 0.1);
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-lg);
}

.about-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--accent);
  border-radius: var(--radius-full);
}

.about-tag span {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-title {
  margin-bottom: var(--spacing-lg);
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: var(--spacing-xl);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
}

.about-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(200, 133, 61, 0.1);
  border-radius: var(--radius);
}

.about-feature-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.about-feature-text h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

.about-feature-text p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* =====================================================
   11. WHY CHOOSE US - 400px HEIGHT
   ===================================================== */
.why-choose {
  padding: var(--spacing-4xl) 0;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

.why-choose-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.why-choose-title {
  margin-bottom: var(--spacing-lg);
}

.why-choose-text {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-2xl);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  color: var(--text-light);
}

.feature-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* =====================================================
   12. FEATURES SECTION
   ===================================================== */
.features {
  padding: var(--spacing-4xl) 0;
  background-color: var(--primary);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(200, 133, 61, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(200, 133, 61, 0.08) 0%, transparent 50%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
  position: relative;
  z-index: 1;
}

.feature-card {
  padding: var(--spacing-2xl);
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.feature-card:hover {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(200, 133, 61, 0.3);
  transform: translateY(-4px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: var(--radius);
  margin-bottom: var(--spacing-lg);
  box-shadow: 0 8px 20px rgba(200, 133, 61, 0.25);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--spacing-sm);
}

.feature-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* =====================================================
   13. CONTACT SECTION
   ===================================================== */
.contact {
  padding: var(--spacing-4xl) 0;
  background-color: var(--light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--spacing-3xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-lg);
  padding: var(--spacing-xl);
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.contact-info-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.contact-info-icon {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: var(--radius);
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.contact-info-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
}

.contact-info-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.contact-info-content a {
  color: var(--text-light);
}

.contact-info-content a:hover {
  color: var(--accent);
}

.contact-form-wrapper {
  background-color: var(--white);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
}

.form-subtitle {
  color: var(--text-light);
  margin-bottom: var(--spacing-xl);
}

.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--spacing-sm);
}

.form-label span {
  color: var(--error);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem var(--spacing-lg);
  font-size: 1rem;
  color: var(--text);
  background-color: var(--light);
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(200, 133, 61, 0.1);
}

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

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.form-checkbox-label {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

.form-checkbox-label a {
  color: var(--accent);
  text-decoration: underline;
}

/* =====================================================
   14. FOOTER
   ===================================================== */
.footer {
  background-color: var(--primary);
  color: var(--white);
  padding-top: var(--spacing-4xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: var(--spacing-3xl);
  padding-bottom: var(--spacing-3xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.footer-logo-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
}

.footer-social {
  display: flex;
  gap: var(--spacing-md);
}

.footer-social-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  transition: var(--transition);
}

.footer-social-link:hover {
  background-color: var(--accent);
  transform: translateY(-3px);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--spacing-lg);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition);
  padding: var(--spacing-xs) 0;
}

.footer-link:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-bottom {
  padding: var(--spacing-xl) 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-md);
}

.footer-disclaimer {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 600px;
}

.footer-copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-copyright a {
  color: var(--accent);
}

.footer-legal {
  display: flex;
  gap: var(--spacing-lg);
}

.footer-legal a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--accent);
}

/* =====================================================
   15. COOKIE BANNER
   ===================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary);
  padding: var(--spacing-lg);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-lg);
  max-width: var(--container-max);
  margin: 0 auto;
}

.cookie-banner-text {
  flex: 1;
  min-width: 280px;
}

.cookie-banner-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
}

.cookie-banner-text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.cookie-btn-accept {
  background-color: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
}

.cookie-btn-accept:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.cookie-btn-decline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
  border-color: var(--white);
}

.cookie-btn-settings {
  background-color: transparent;
  color: var(--accent);
  border: none;
  padding: 0.75rem 1rem;
}

.cookie-btn-settings:hover {
  color: var(--accent-light);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(10, 25, 41, 0.9);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg);
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background-color: var(--white);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-lg);
  padding: var(--spacing-2xl);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.cookie-modal-close:hover {
  background-color: var(--gray);
}

.cookie-modal-close svg {
  width: 18px;
  height: 18px;
  color: var(--text);
}

.cookie-modal h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-lg);
}

.cookie-modal p {
  color: var(--text-light);
  margin-bottom: var(--spacing-xl);
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid var(--gray);
}

.cookie-option:last-of-type {
  border-bottom: none;
}

.cookie-option-info h4 {
  font-size: 1rem;
  margin-bottom: var(--spacing-xs);
}

.cookie-option-info p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.cookie-option-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-option-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-option-toggle .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--gray);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.cookie-option-toggle .slider::before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: var(--white);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.cookie-option-toggle input:checked + .slider {
  background-color: var(--accent);
}

.cookie-option-toggle input:checked + .slider::before {
  transform: translateX(24px);
}

.cookie-modal-buttons {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.cookie-modal-buttons .btn {
  flex: 1;
}

/* =====================================================
   16. LEAD FORM SECTION
   ===================================================== */
.lead-form-section {
  padding: var(--spacing-4xl) 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.lead-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(135deg, rgba(200, 133, 61, 0.05) 25%, transparent 25%),
    linear-gradient(225deg, rgba(200, 133, 61, 0.05) 25%, transparent 25%);
  background-size: 60px 60px;
}

.lead-form-wrapper {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--white);
  padding: var(--spacing-3xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.lead-form-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.lead-form-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: var(--spacing-sm);
}

.lead-form-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* =====================================================
   17. ANIMATIONS
   ===================================================== */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

[data-animate="fade-left"] {
  transform: translateX(-30px);
}

[data-animate="fade-left"].animated {
  transform: translateX(0);
}

[data-animate="fade-right"] {
  transform: translateX(30px);
}

[data-animate="fade-right"].animated {
  transform: translateX(0);
}

[data-animate="scale"] {
  transform: scale(0.9);
}

[data-animate="scale"].animated {
  transform: scale(1);
}

[data-animate-delay="1"] { transition-delay: 0.1s; }
[data-animate-delay="2"] { transition-delay: 0.2s; }
[data-animate-delay="3"] { transition-delay: 0.3s; }
[data-animate-delay="4"] { transition-delay: 0.4s; }
[data-animate-delay="5"] { transition-delay: 0.5s; }
[data-animate-delay="6"] { transition-delay: 0.6s; }

/* =====================================================
   18. RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 992px) {
  :root {
    --header-height: 70px;
  }
  
  .container {
    padding: 0 var(--spacing-md);
  }
  
  .about-grid,
  .why-choose-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }
  
  .about-content {
    padding-left: 0;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 65px;
    --spacing-4xl: 4rem;
  }
  
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.875rem; }
  h3 { font-size: 1.5rem; }
  
  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + var(--spacing-2xl)) 0 var(--spacing-3xl);
  }
  
  .hero-title { font-size: 2.25rem; }
  .hero-subtitle { font-size: 1rem; }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn { width: 100%; }
  
  .hero-stats {
    flex-direction: column;
    gap: var(--spacing-lg);
  }
  
  .section { padding: var(--spacing-3xl) 0; }
  
  .section-header { margin-bottom: var(--spacing-2xl); }
  
  .services-grid { grid-template-columns: 1fr; }
  
  .service-card img { height: 200px; }
  
  .about-image img,
  .why-choose-image img { height: 350px; }
  
  .features-grid { grid-template-columns: 1fr; }
  
  .form-row { grid-template-columns: 1fr; }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }
  
  .footer-brand { max-width: 100%; }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal { justify-content: center; }
  
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons { width: 100%; justify-content: center; }
  
  .lead-form-wrapper { padding: var(--spacing-xl); }
}

@media (max-width: 480px) {
  :root {
    --spacing-lg: 1rem;
    --spacing-xl: 1.5rem;
    --spacing-2xl: 2rem;
    --spacing-3xl: 2.5rem;
    --spacing-4xl: 3rem;
  }
  
  h1 { font-size: 1.875rem; }
  h2 { font-size: 1.5rem; }
  
  .hero-title { font-size: 1.875rem; }
  
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .btn-lg {
    padding: 1rem 1.75rem;
    font-size: 1rem;
  }
  
  .service-card-content { padding: var(--spacing-lg); }
  
  .service-card img { height: 180px; }
  
  .about-image img,
  .why-choose-image img { height: 280px; }
  
  .contact-form-wrapper { padding: var(--spacing-lg); }
  
  .contact-info-item { padding: var(--spacing-lg); }
  
  .cookie-modal-content { padding: var(--spacing-lg); }
  
  .cookie-modal-buttons { flex-direction: column; }
}

/* =====================================================
   19. UTILITY CLASSES
   ===================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-white { color: var(--white); }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.text-light { color: var(--text-light); }

.bg-white { background-color: var(--white); }
.bg-light { background-color: var(--light); }
.bg-primary { background-color: var(--primary); }
.bg-dark { background-color: var(--dark); }
.bg-accent { background-color: var(--accent); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }
.mt-5 { margin-top: var(--spacing-2xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }
.mb-5 { margin-bottom: var(--spacing-2xl); }

.py-0 { padding-top: 0; padding-bottom: 0; }
.py-1 { padding-top: var(--spacing-sm); padding-bottom: var(--spacing-sm); }
.py-2 { padding-top: var(--spacing-md); padding-bottom: var(--spacing-md); }
.py-3 { padding-top: var(--spacing-lg); padding-bottom: var(--spacing-lg); }
.py-4 { padding-top: var(--spacing-xl); padding-bottom: var(--spacing-xl); }
.py-5 { padding-top: var(--spacing-2xl); padding-bottom: var(--spacing-2xl); }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.flex-column { flex-direction: column; }

.gap-1 { gap: var(--spacing-sm); }
.gap-2 { gap: var(--spacing-md); }
.gap-3 { gap: var(--spacing-lg); }
.gap-4 { gap: var(--spacing-xl); }

.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

.shadow { box-shadow: var(--shadow); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-none { box-shadow: none; }

.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

.w-full { width: 100%; }
.w-auto { width: auto; }

.h-full { height: 100%; }
.h-auto { height: auto; }
.h-screen { height: 100vh; }

.visible { visibility: visible; }
.invisible { visibility: hidden; }

.cursor-pointer { cursor: pointer; }

.transition { transition: var(--transition); }
.transition-fast { transition: var(--transition-fast); }
.transition-slow { transition: var(--transition-slow); }

.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

.accent { color: var(--accent); }

/* Page Hero for internal pages */
.page-hero {
  padding: calc(var(--header-height) + var(--spacing-4xl)) 0 var(--spacing-4xl);
  background-color: var(--primary);
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(135deg, rgba(200, 133, 61, 0.03) 25%, transparent 25%),
    linear-gradient(225deg, rgba(200, 133, 61, 0.03) 25%, transparent 25%),
    linear-gradient(45deg, rgba(200, 133, 61, 0.03) 25%, transparent 25%),
    linear-gradient(315deg, rgba(200, 133, 61, 0.03) 25%, transparent 25%);
  background-size: 80px 80px;
  background-position: 0 0, 40px 0, 40px -40px, 0px 40px;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero .hero-title,
.page-hero .page-title {
  color: var(--white);
}

.page-hero .hero-subtitle,
.page-hero .page-subtitle {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

/* Service Features List */
.service-features {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
  padding-left: 0;
  list-style: none;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--text-light);
  font-size: 0.9rem;
}

.service-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--accent);
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

/* CTA Section */
.cta-section {
  padding: var(--spacing-4xl) 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border: 2px solid rgba(200, 133, 61, 0.1);
  border-radius: var(--radius-full);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--spacing-md);
}

.cta-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-2xl);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-md);
}

/* Gallery */
.gallery {
  padding: var(--spacing-4xl) 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.gallery-item {
  position: relative;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(10, 25, 41, 0.8) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: var(--spacing-lg);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: var(--spacing-xl);
  right: var(--spacing-xl);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent);
  color: var(--white);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  cursor: pointer;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--accent-dark);
  transform: translateY(-5px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* Content Grid for Business Model */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

.content-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-xs) var(--spacing-lg);
  background-color: rgba(200, 133, 61, 0.1);
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-md);
}

.section-badge span {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  color: var(--text-light);
}

.feature-list li svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* Info Cards */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
}

.info-card {
  background: var(--white);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.info-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: var(--radius);
  margin-bottom: var(--spacing-lg);
}

.info-icon svg {
  color: var(--white);
}

.info-card h3 {
  margin-bottom: var(--spacing-sm);
}

.info-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Audience Cards */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
}

.audience-card {
  background: var(--light);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.audience-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.audience-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: var(--radius);
  margin-bottom: var(--spacing-lg);
}

.audience-icon svg {
  color: var(--white);
}

.audience-card h3 {
  margin-bottom: var(--spacing-sm);
}

.audience-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Revenue Section */
.revenue-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-2xl);
}

.revenue-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.revenue-item {
  display: flex;
  gap: var(--spacing-xl);
  padding: var(--spacing-xl);
  background: var(--light);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.revenue-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.revenue-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
}

.revenue-details h3 {
  margin-bottom: var(--spacing-sm);
}

.revenue-details p {
  color: var(--text-light);
  margin-bottom: 0;
}

.revenue-note {
  display: flex;
  gap: var(--spacing-lg);
  padding: var(--spacing-xl);
  background: rgba(200, 133, 61, 0.1);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--accent);
}

.note-icon {
  flex-shrink: 0;
}

.note-icon svg {
  color: var(--accent);
}

.note-content h4 {
  margin-bottom: var(--spacing-sm);
}

.note-content p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Data Collection Grid */
.data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
}

.data-card {
  background: var(--light);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-lg);
}

.data-card h3 {
  margin-bottom: var(--spacing-lg);
}

.data-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.data-list li {
  color: var(--text-light);
  font-size: 0.95rem;
}

.data-notice {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  padding: var(--spacing-xl);
  background: rgba(56, 161, 105, 0.1);
  border-radius: var(--radius-lg);
  margin-top: var(--spacing-2xl);
}

.data-notice svg {
  color: var(--success);
  flex-shrink: 0;
}

.data-notice p {
  color: var(--text-light);
  margin-bottom: 0;
}

.data-notice a {
  color: var(--accent);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
}

.stats-grid .stat-item {
  text-align: center;
  padding: var(--spacing-2xl);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid .stat-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: var(--radius);
  margin: 0 auto var(--spacing-lg);
}

.stats-grid .stat-icon svg {
  color: var(--white);
}

.stats-grid .stat-title {
  color: var(--white);
  margin-bottom: var(--spacing-sm);
}

.stats-grid .stat-desc {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

/* Lead Form */
.lead-form {
  padding: var(--spacing-4xl) 0;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-title {
  text-align: center;
  margin-bottom: var(--spacing-sm);
}

.form-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: var(--spacing-2xl);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
}

.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
}

.checkbox-group label {
  font-size: 0.9rem;
  color: var(--text-light);
}

.checkbox-group label a {
  color: var(--accent);
}

.btn-submit {
  width: 100%;
}

.form-disclaimer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: var(--spacing-lg);
}

.form-disclaimer a {
  color: var(--accent);
}

/* Hero stat variants */
.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat .stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--spacing-xs);
}

.hero-stat .stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

@media (max-width: 992px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }
  
  .content-image img {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .content-image img {
    height: 280px;
  }
}
