/* 1st section */


:root {
  --bg-deep: #0a0d14;
  --accent-orange: #f05a1d;
  --text-white: #ffffff;
  --text-muted: #9ba3af;
  --frame-border: #e2e8f0;
}

.precision-performance {
  background-color: var(--bg-deep);
  color: var(--text-white);
  padding: 100px 0;
  font-family: 'Inter', sans-serif;
}

.split-layout {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Left Side Styling */
.content-side {
  flex: 1;
}

.pill-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent-orange);
  border: 1px solid rgba(240, 90, 29, 0.3);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.content-side h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 24px;
}

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

.content-side p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 40px;
}

/* Button Logic */
.button-group {
  display: flex;
  gap: 15px;
}

.btn-primary {
  background-color: var(--accent-orange);
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
}

.btn-secondary {
  border: 1px solid #333;
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
}

/* Right Side Graphic Frame */
.graphic-side {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.image-frame {
  position: relative;
  background: var(--frame-border); /* The thick white border seen in image */
  padding: 15px;
  border-radius: 30px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.image-frame img {
  display: block;
  width: 100%;
  max-width: 500px;
  border-radius: 20px; /* Inner rounding */
}

.stat-overlay {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.stat-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 992px) {
  .split-layout { flex-direction: column; text-align: center; }
  .content-side p { margin: 0 auto 40px auto; }
  .button-group { justify-content: center; }
  .graphic-side { justify-content: center; width: 100%; }
}

/* 2nd section */

:root {
  --bg-white: #ffffff;
  --accent-orange: #f05a1d;
  --text-dark: #000000;
  --text-muted: #555555;
}

.problems-section {
  background-color: var(--bg-white);
  padding: 80px 20px;
  font-family: 'Inter', sans-serif; /* High-fidelity clean sans-serif */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px; /* Generous horizontal spacing */
}

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

.accent-line {
  width: 40px;
  height: 3px;
  background-color: var(--accent-orange);
  margin-bottom: 25px;
}

.problem-item h3 {
  font-size: 1.25rem;
  font-weight: 800; /* Extra bold for enterprise feel */
  color: var(--text-dark);
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.problem-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Responsive Logic */
@media (max-width: 992px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .problem-item {
    align-items: flex-start; /* Ensure items stay left-aligned on mobile */
  }
}

/* 3rd section */
:root {
  --bg-navy: #050a14;
  --card-dark: #0c1a2b;
  --card-light: #f8fafc;
  --accent-orange: #f05a1d;
  --text-dark: #0f172a;
  --text-muted: #64748b;
}

.strategic-capabilities {
  background-color: var(--bg-navy);
  padding: 100px 20px;
  font-family: 'Inter', sans-serif;
}

.section-title {
  color: white;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.accent-line {
  width: 50px;
  height: 3px;
  background: var(--accent-orange);
  margin-bottom: 50px;
}

/* Bento Grid Layout */
.capabilities-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
}

/* Card Basics */
.cap-card {
  padding: 40px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
}

.light-card {
  background-color: var(--card-light);
  color: var(--text-dark);
}

.dark-card {
  background-color: var(--card-dark);
  color: white;
}

/* Specific Card Rules */
.google-card {
  grid-column: span 2;
}

.cap-icon {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.cap-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.cap-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.dark-card p {
  color: #94a3b8;
}

/* Search UI Mockup */
.search-bar-mock {
  margin-top: auto;
  padding-top: 30px;
}

.search-bar-mock img {
  width: 100%;
  border-radius: 4px;
}

/* LinkedIn List */
.divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 30px 0;
}

.cap-list {
  list-style: none;
  padding: 0;
}

.cap-list li {
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.cap-list li::before {
  content: "▪";
  color: var(--accent-orange);
  margin-right: 10px;
}

.orange-top {
  border-top: 4px solid var(--accent-orange);
}

/* Responsive */
@media (max-width: 1024px) {
  .capabilities-bento {
    grid-template-columns: 1fr;
  }
  .google-card {
    grid-column: span 1;
  }
}

/* 4th section  */

.stats-banner {
  background: #ffffff;
  padding: 100px 0;
  text-align: center;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

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

.stat-number {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 15px;
}

.orange-text { color: #f05a1d; }
.dark-text { color: #0a111e; }

.stat-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #64748b;
  text-transform: uppercase;
}

/* 5th section */

:root {
  --pipeline-bg: #050a14;
  --step-light: #f8faff;
  --step-orange: #d96c34;
  --step-slate: #63728a;
  --text-dark: #1a1a1a;
}

.pipeline-section {
  background-color: var(--pipeline-bg);
  padding: 100px 20px;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.pipeline-header h2 {
  color: white;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.pipeline-header p {
  color: #94a3b8;
  margin-bottom: 60px;
}

.pipeline-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0; /* Cards and connectors handle their own spacing */
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  flex: 1;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 20px;
  transition: transform 0.3s ease;
}

/* Color Variations */
.light-step { background-color: var(--step-light); color: var(--text-dark); }
.orange-step { background-color: var(--step-orange); color: white; }
.slate-step { background-color: var(--step-slate); color: white; }

.step-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.step-label {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
}

/* The Arrow Connector */
.connector {
  color: var(--step-orange);
  font-size: 1.5rem;
  padding: 0 15px;
  font-weight: bold;
}

/* Responsive: Stack vertically on mobile */
@media (max-width: 768px) {
  .pipeline-flow {
    flex-direction: column;
    gap: 20px;
  }
  .connector {
    transform: rotate(90deg);
    padding: 10px 0;
  }
  .step-card {
    width: 100%;
    height: 150px;
  }
}

/* 4th section */

:root {
    --accent-color: #e67e22; /* The orange from the image */
    --text-main: #1a1a1a;
    --text-sub: #7f8c8d;
    --border-color: #f0f0f0;
}

.framework-container {
    max-width: 800px;
    margin: 50px auto;
    font-family: 'Inter', sans-serif; /* A clean sans-serif font */
    padding: 20px;
}

.framework-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.step-row {
    display: flex;
    align-items: flex-start;
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}

.step-row:last-child {
    border-bottom: none;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-color);
    min-width: 80px;
}

.step-content h3 {
    margin: 0 0 8px 0;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.step-content p {
    margin: 0;
    color: var(--text-sub);
    font-size: 1rem;
    line-height: 1.5;
}

/* Optional Hover Effect */
.step-row:hover {
    background-color: #fafafa;
    transition: background 0.3s ease;
}

/* 5th section */

:root {
    --bg-dark: #0a0e17; /* Deep dark background */
    --card-bg: #141a26; /* Slightly lighter card background */
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
}

.expertise-section {
    background-color: var(--bg-dark);
    padding: 80px 40px;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.expertise-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allows wrapping on mobile */
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: left;
    transition: transform 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-10px);
}

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

.card-content {
    padding: 24px;
}

.card-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.card-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .expertise-grid {
        gap: 30px;
    }
}

/* 6th section */

:root {
    --brand-orange: #e67e22;
    --navy-dark: #101c2e;
    --text-muted: #7f8c8d;
}

.final-section {
    padding: 100px 20px;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

/* FAQ Styling */
.faq-column {
    flex: 1;
}

.faq-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-question {
    display: block;
    color: var(--brand-orange);
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Card Styling */
.cta-column {
    flex: 1;
}

.cta-card {
    background-color: var(--navy-dark);
    padding: 50px;
    border-radius: 30px; /* Highly rounded corners per image */
    color: white;
}

.cta-card h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-card h2 .highlight {
    color: var(--brand-orange);
}

.cta-card p {
    color: #cbd5e0;
    margin-bottom: 35px;
    font-size: 1rem;
    line-height: 1.5;
}

/* Form Elements */
.cta-form label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-form input {
    width: 100%;
    padding: 18px;
    border-radius: 8px;
    border: none;
    background-color: #edf2f7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.cta-form button {
    width: 100%;
    padding: 18px;
    border-radius: 8px;
    border: none;
    background-color: var(--brand-orange);
    color: white;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-form button:hover {
    background-color: #d35400;
}

/* Responsive */
@media (max-width: 900px) {
    .content-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .cta-card {
        padding: 30px;
    }
}