:root {
  --bg-dark: #070A11;
  --bg-card: #0B111E;
  --bg-red-card: rgba(217, 56, 58, 0.15); /* Tinted red for cards */
  --bg-red-solid: #8C2426; /* Darker red for service cards */
  --color-red: #D9383A;
  --color-red-hover: #E84A4C;
  --color-blue: #3B82F6;
  --text-white: #FFFFFF;
  --text-gray: #94A3B8;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 4vw, 4rem); font-weight: 900; line-height: 1.1; margin-bottom: 0.5rem; }
h2 { font-size: clamp(1.75rem, 3.5vw, 3rem); font-weight: 800; margin-bottom: 1rem; line-height: 1.2; }
h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }

.text-red { color: var(--color-red); }
.text-blue { color: var(--color-blue); }
.text-white { color: var(--text-white); }
.text-gray { color: var(--text-gray); }
.font-bold { font-weight: 700; }
.font-normal { font-weight: 400; }
.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-2xl { max-width: 42rem; }
.text-sm { font-size: 0.875rem; }

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.link-red {
  color: var(--color-red);
  font-weight: 700;
}
.link-red:hover {
  color: var(--text-white);
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background-color: var(--color-red);
  color: var(--text-white);
}
.btn-primary:hover {
  background-color: var(--color-red-hover);
}
.btn-full {
  width: 100%;
}

/* Sections */
section {
  padding: 80px 0;
}
.dark-bg {
  background-color: var(--bg-card);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background-color: var(--bg-dark);
}
.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 100%;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}
.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--bg-dark) 0%, rgba(7, 10, 17, 0.95) 20%, transparent 45%),
              linear-gradient(to top, var(--bg-dark) 0%, transparent 15%);
}
.hero-content {
  position: relative;
  z-index: 1;
  display: block;
}
.hero-text {
  max-width: 650px;
  padding-top: 40px;
}
.hero .subtitle {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--color-red);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.hero-text p {
  color: var(--text-gray);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

/* Media Section */
.media-section {
  padding: 60px 0;
  background-color: #05070D;
}
.media-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.media-logos img {
  height: 30px;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}
.media-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}
.media-videos {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.media-videos img {
  width: 250px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}
.media-videos img:hover {
  transform: translateY(-5px);
}

/* Split Section (Contained) */
.split-section {
  padding: 100px 0;
}
.split-container {
  display: flex;
  align-items: stretch;
  gap: 80px;
  min-height: 600px;
}
.split-reverse .split-container {
  flex-direction: row-reverse;
}
.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-image {
  flex: 1;
  display: flex;
  align-items: stretch;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.flip-horizontal {
  transform: scaleX(-1);
}

/* Break Statement Section */
.break-section {
  padding: 100px 0;
}
.break-content {
  max-width: 1000px;
  margin: 0 auto;
}
.break-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.4;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}
.break-subtitle {
  color: var(--text-gray);
  font-weight: 400;
  display: block;
  margin-top: 0.5rem;
}
.break-text {
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-red);
  line-height: 1.6;
}

/* Comparison Cards */
.comparison-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
.card-dark {
  background-color: var(--bg-card);
  padding: 24px;
  border-radius: 16px;
  border-left: 4px solid var(--color-red);
}

/* Process List */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.process-item {
  display: flex;
  gap: 20px;
}
.process-num {
  width: 40px;
  height: 40px;
  background-color: var(--bg-red-card);
  color: var(--color-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Highlight Box */
.highlight-box {
  padding: 24px;
  border-left: 4px solid var(--color-red);
  background: linear-gradient(90deg, rgba(217, 56, 58, 0.1) 0%, transparent 100%);
}

/* Services Grid (2x2 Balanced) */
.services-section {
  background-color: #0A0A0A; /* Deep Neutral Dark */
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
}
.service-card {
  background-color: var(--bg-red-solid);
  padding: 48px;
  border-radius: 24px;
  transition: transform 0.3s ease;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-card h3 {
  color: var(--text-white);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.service-card .service-tag {
  color: #FFA5A6;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* FAQ List */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background-color: var(--bg-card);
  padding: 32px;
  border-radius: 16px;
}
.faq-item h3 {
  color: var(--text-white);
  font-size: 1.25rem;
}
.faq-item p {
  color: var(--text-gray);
  margin-top: 1rem;
}

/* Contact Form */
.contact-section {
  background-color: var(--bg-dark);
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-gray);
  font-size: 0.875rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px;
  background-color: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-red);
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-bg {
    width: 100%;
  }
  .hero-gradient {
    background: linear-gradient(to top, var(--bg-dark) 0%, rgba(7, 10, 17, 0.85) 60%, rgba(7, 10, 17, 0.6) 100%);
  }
  .hero-text {
    margin: 0 auto;
    text-align: center;
    padding-top: 80px;
  }
  .hero-text p {
    margin: 0 auto 2.5rem;
  }
  .split-section {
    padding: 60px 0;
  }
  .split-container {
    flex-direction: column;
    gap: 40px;
  }
  .split-reverse .split-container {
    flex-direction: column;
  }
  .split-content {
    width: 100%;
    padding: 0;
    text-align: center;
  }
  .split-image {
    width: 100%;
  }
  .hero-text {
    margin-top: 60px;
  }
  .hero-text p {
    margin: 0 auto 2.5rem;
  }
  .process-item {
    text-align: left;
  }
  .highlight-box {
    text-align: left;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
