:root {
    --navy-dark: #0b1120;
    --orange: #f97316;
    --text-muted: #94a3b8;
    --text-dark: #0f172a;
}

/* Global Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    background-color: var(--navy-dark);
    padding: 100px 0;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1.2;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.hero-tag {
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.hero-title {
    font-size: 64px;
    line-height: 1.05;
    font-weight: 800;
    margin: 20px 0;
    letter-spacing: -2px;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

/* Buttons */
.btn-orange,
.btn-outline {
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-orange {
    background: var(--orange);
    color: #fff;
}

.btn-outline {
    border: 1px solid #334155;
    color: #fff;
}

.btn-outline:hover {
    background: #334155;
}

/* Inertia Section */
.inertia-section {
    padding: 100px 0;
    background: #fff;
    font-family: 'Inter', sans-serif;
}

.inertia-grid {
    display: flex;
    gap: 40px;
}

.inertia-header {
    flex: 1;
}

.inertia-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
}

.orange-divider {
    width: 60px;
    height: 4px;
    background: var(--orange);
    margin-top: 20px;
}

.inertia-items {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.inertia-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.inertia-item p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {

    .hero-container,
    .inertia-grid {
        flex-direction: column;
    }

    .hero-title {
        font-size: 48px;
    }

    .inertia-items {
        grid-template-columns: 1fr;
    }
}

/* 2nd section */
.dark-theme {
    background-color: #0b1120;
    color: white;
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.tag {
    color: #94a3b8;
    font-size: 12px;
    letter-spacing: 2px;
}

.title-large {
    font-size: 42px;
    font-weight: 900;
    margin-top: 10px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

/* Card Spanning */
.editorial {
    grid-column: span 3;
}

.seo {
    grid-column: span 3;
}

.white {
    grid-column: span 2;
    background: white;
    color: #0f172a;
}

.bento-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
}

.bento-card.light {
    background: #f8fafc;
    color: #0f172a;
}

.bento-card.dark {
    background: linear-gradient(rgba(11, 17, 32, 0.8), rgba(11, 17, 32, 0.8)), url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&q=80&w=600');
    background-size: cover;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 20px;
}

/* 3rd section */

.stats-white {
    padding: 100px 0;
    background: #fff;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-val {
    display: block;
    font-size: 72px;
    font-weight: 900;
    color: #f97316;
    /* Bold Orange */
    line-height: 1;
    margin-bottom: 20px;
}

.stat-desc {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 2px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .editorial,
    .seo,
    .white {
        grid-column: span 1;
    }

    .stats-row {
        flex-direction: column;
        gap: 60px;
    }
}

/* 4th section */

.matrix-section {
    background: #0b1120;
    padding: 100px 0;
    color: white;
}

.matrix-header {
    margin-bottom: 60px;
    padding: 0 20px;
}

.matrix-header h2 {
    font-size: 32px;
    font-weight: 800;
}

.matrix-header p {
    color: #94a3b8;
    margin-top: 10px;
}

.matrix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.matrix-card {
    background: white;
    color: #0f172a;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.card-text {
    padding: 40px 30px;
    position: relative;
    flex-grow: 1;
}

.bg-num {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 80px;
    font-weight: 900;
    color: #f1f5f9;
    z-index: 0;
}

.phase-tag {
    color: #f97316;
    font-size: 10px;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.card-text h3 {
    font-size: 20px;
    margin: 15px 0;
    position: relative;
    z-index: 1;
}

.card-text p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.card-img {
    height: 200px;
}

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

/* 5th section */

.expertise-section {
    padding: 100px 20px;
    background: #fff;
}

.expertise-header {
    margin-bottom: 50px;
}

.expertise-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
}

.expertise-header p {
    color: #64748b;
    margin-top: 10px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.domain-card {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.domain-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(15, 23, 42, 0.9));
}

.domain-overlay {
    position: relative;
    z-index: 2;
    color: white;
}

.domain-overlay h3 {
    font-size: 18px;
    font-weight: 800;
}

.domain-overlay p {
    font-size: 10px;
    color: #f97316;
    letter-spacing: 1px;
    margin-top: 5px;
}

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

/* 7th section */

:root {
  --deep-navy: #0b1120;
  --brand-orange: #d66a32;
  --text-muted: #94a3b8;
  --white: #ffffff;
}

.final-cta {
  background-color: var(--deep-navy);
  padding: 120px 20px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
}

.container.split-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 100px;
  align-items: flex-start;
}

/* Left Content */
.cta-primary { flex: 1; }

.title-bold {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.cta-subtitle {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 50px;
  max-width: 450px;
}

/* The Orange Action Card */
.action-card {
  background-color: var(--brand-orange);
  padding: 40px;
  border-radius: 12px;
}

.label-tiny {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.simple-form input {
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1); /* Glass effect */
  border: none;
  border-radius: 6px;
  color: white;
  margin-bottom: 15px;
  font-size: 14px;
}

.simple-form input::placeholder { color: rgba(255,255,255,0.6); }

.simple-form button {
  width: 100%;
  padding: 16px;
  background: var(--white);
  color: var(--deep-navy);
  border: none;
  border-radius: 6px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  transition: transform 0.2s;
}

.simple-form button:hover { transform: scale(1.02); }

/* Right FAQ Content */
.cta-faq { flex: 1; }

.faq-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.faq-row h4 {
  color: var(--brand-orange);
  font-size: 15px;
  margin-bottom: 15px;
  font-weight: 700;
}

.faq-row p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  .container.split-layout {
    flex-direction: column;
    gap: 60px;
  }
  
  .title-bold { font-size: 36px; }
}