:root {
    --hero-bg: #0a0e17;
    --accent-orange: #f26522;
    --text-white: #ffffff;
    --text-muted: #8a94a6;
    --frame-border: #1a222e;
}

.hero-section {
    background-color: var(--hero-bg);
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 60px 5%;
    font-family: 'Inter', sans-serif;
    color: var(--text-white);
}

.hero-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    align-items: center;
}

/* Left Content Column */
.hero-text {
    flex: 1.2;
}

.sub-headline {
    color: var(--accent-orange);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 25px;
    text-transform: uppercase;
}

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

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

.btn {
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    transition: 0.3s;
}

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

.btn-outline {
    border: 1px solid var(--text-muted);
    color: white;
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Image Frame */
.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-frame {
    padding: 15px;
    background-color: var(--frame-border);
    border-radius: 10px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.image-frame img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-text h1 { font-size: 2.5rem; }
    .hero-actions { justify-content: center; }
    .hero-text p { margin: 0 auto 40px; }
}

/* 2nd section */
:root {
    --accent-orange: #e67e22;
    --dark-navy: #101c2e;
    --card-bg: #f4f7ff;
    --text-body: #546272;
}

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

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

.sub-title {
    color: var(--accent-orange);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.card-grid {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.diagnostic-card {
    background-color: var(--card-bg);
    padding: 40px 30px;
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.icon {
    width: 32px; /* Control the size of the icon */
    height: 32px;
    margin-bottom: 25px;
    color: var(--accent-orange); /* Uses the orange variable from previous steps */
}

.icon svg {
    width: 100%;
    height: 100%;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Optional: Subtle animation for the "Visibility" strike-through */
.strike-line {
    opacity: 0.8;
}

.diagnostic-card h3 {
    color: var(--dark-navy);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.diagnostic-card p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* The subtle orange line at the bottom */
.bottom-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #f1dcc9; /* Light version of the orange */
}

/* Hover state for a premium feel */
.diagnostic-card:hover {
    background-color: #ebf0fe;
    transition: background 0.3s ease;
}

.diagnostic-card:hover .bottom-accent {
    background-color: var(--accent-orange);
    transition: background 0.3s ease;
}

/* Mobile view */
@media (max-width: 992px) {
    .card-grid {
        flex-direction: column;
    }
    .diagnostic-card {
        min-height: auto;
    }
}

/* 3rd section */

:root {
    --brand-orange: #f26522;
    --navy-dark: #0a0e17;
    --white: #ffffff;
    --text-gray: #546272;
}

.capabilities-section {
    background-color: var(--navy-dark);
    padding: 100px 5%;
    font-family: 'Inter', sans-serif;
}

.capabilities-header {
    text-align: left;
    margin-bottom: 60px;
    max-width: 600px;
}

.sub-title {
    color: var(--brand-orange);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.main-title {
    color: black;
    font-size: 3rem;
    font-weight: 900;
    margin: 15px 0;
}

.description {
    color: #a0aec0;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.cap-card {
    position: relative;
    height: 550px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Image Fading Logic */
.card-image-box {
    position: relative;
    height: 60%;
    width: 100%;
}

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

/* Light Card Specifics (Text on Bottom) */
.cap-card.light {
    background-color: var(--white);
}

.cap-card.light .card-image-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, var(--white), transparent);
}

/* Dark Card Specifics (Text Overlapping Top Image) */
.cap-card.dark {
    background-color: #111827; /* Slightly lighter than main navy */
    flex-direction: column-reverse;
}

.cap-card.dark .card-image-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, #111827, transparent);
}

/* Typography Inside Cards */
.card-text {
    padding: 40px;
    z-index: 2;
}

.cap-card.light .card-text h3 { color: var(--navy-dark); }
.cap-card.dark .card-text h3 { color: var(--white); }

h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 15px;
}

p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.cap-card.light p { color: var(--text-gray); }
.cap-card.dark p { color: #a0aec0; }

/* Responsive */
@media (max-width: 1024px) {
    .capabilities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .capabilities-grid { grid-template-columns: 1fr; }
    .cap-card { height: 450px; }
}

/* 
4th section */

:root {
    --brand-orange: #e67e22;
    --navy-text: #0a0e17;
    --muted-text: #8a94a6;
}

.stats-section {
    padding: 80px 5%;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* Left Column */
.stats-branding {
    flex: 1;
}

.stats-branding h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--navy-text);
    line-height: 1.1;
    margin-bottom: 20px;
}

.stats-branding p {
    color: var(--muted-text);
    font-size: 1.1rem;
    max-width: 350px;
}

/* Right Grid */
.stats-grid {
    flex: 2;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

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

.stat-number {
    font-size: 4.5rem; /* Large, bold numbers */
    font-weight: 900;
    color: var(--brand-orange);
    line-height: 1;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--muted-text);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Responsive Logic */
@media (max-width: 992px) {
    .stats-container {
        flex-direction: column;
        text-align: center;
    }
    .stats-branding p {
        margin: 0 auto;
    }
    .stats-grid {
        width: 100%;
        margin-top: 40px;
        gap: 20px;
    }
    .stat-number {
        font-size: 3rem;
    }
}

/* 5th section */

:root {
    --brand-orange: #e67e22;
    --dark-navy: #0a0e17;
    --text-muted: #546272;
}

.methodology-section {
    padding: 100px 5%;
    background-color: #fff;
    font-family: 'Inter', sans-serif;
}

.methodology-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

/* Intro Column */
.methodology-intro {
    flex: 0 0 350px; /* Fixed width for the left side */
}

.methodology-intro .label {
    color: var(--brand-orange);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.methodology-intro h1 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark-navy);
    line-height: 1.1;
    margin: 20px 0;
}

.methodology-intro p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.btn-specs {
    display: inline-block;
    padding: 18px 35px;
    background-color: var(--brand-orange);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: transform 0.2s;
}

/* Grid Column */
.methodology-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns */
    gap: 40px 60px;
}

.method-item {
    display: flex;
    gap: 20px;
}

.method-item .num {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--brand-orange);
    opacity: 0.5; /* Matches the subtle look in the image */
}

.method-text h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin: 0 0 10px 0;
}

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

/* Mobile Responsive */
@media (max-width: 1024px) {
    .methodology-container { flex-direction: column; }
    .methodology-intro { flex: 1; text-align: center; }
    .methodology-grid { grid-template-columns: 1fr; }
}

/* 6th section */

:root {
    --bg-deep: #0a0e17;
    --accent-orange: #f26522;
    --text-white: #ffffff;
}

.sector-expertise-dark {
    background-color: var(--bg-deep);
    padding: 100px 5%;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

.section-title {
    color: var(--text-white);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.sector-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.sector-card {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 4px; /* Matches the slight rounding in the image */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.sector-card:hover {
    transform: scale(1.02);
}

.sector-info h3 {
    color: var(--text-white);
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
}

.sector-info .accent {
    color: var(--accent-orange);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 900px) {
    .sector-grid {
        flex-direction: column;
    }
    .sector-card {
        height: 350px;
    }
}

/* 7th section */

:root {
    --navy-bg: #0a0e17;
    --accent-orange: #f26522;
    --card-bg: #f4f7ff;
    --text-navy: #101c2e;
}

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

.systemic-label {
    color: var(--accent-orange);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.section-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 900;
    margin: 15px 0 60px 0;
    letter-spacing: 1px;
}

.architecture-grid {
    display: flex;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.arch-card {
    flex: 1;
    background-color: var(--card-bg);
    padding: 60px 20px;
    position: relative; /* Essential for the background number */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.card-content {
    position: relative;
    z-index: 2; /* Keeps text above the number */
}

.card-content h3 {
    color: var(--text-navy);
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.card-content p {
    color: #7f8c8d;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.bg-number {
    position: absolute;
    bottom: -10px;
    right: 10px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.04); /* Very faint watermark effect */
    line-height: 1;
    z-index: 1;
}

/* Tablet & Mobile */
@media (max-width: 992px) {
    .architecture-grid {
        flex-direction: column;
    }
    .section-title {
        font-size: 2rem;
    }
}

/* 8th section */

:root {
  --bg-color: #f4f7ff; /* The light blue-ish background from the image */
  --navy-text: #0a0e17;
  --accent-orange: #f26522; /* Primary brand orange */
  --accent-soft: #f9ebe0;   /* The pale orange accent for inactive cards */
  --white: #ffffff;
}

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

.insights-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--navy-text);
  margin-bottom: 50px;
  letter-spacing: 1px;
}

.accordion-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.accordion-item {
  background-color: var(--white);
  margin-bottom: 15px;
  border-radius: 8px;
  /* Soft shadow for the "floating" effect */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  /* The subtle left accent seen in the screenshot */
  border-left: 5px solid var(--accent-soft); 
  transition: all 0.3s ease;
}

/* Changes the left accent to brand orange when the item is opened */
.accordion-item[open] {
  border-left-color: var(--accent-orange);
}

summary {
  list-style: none; /* Removes default browser arrow */
  padding: 25px 35px;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--navy-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.5px;
}

/* Custom chevron arrow */
.chevron::after {
  content: '\2304'; /* Downward chevron symbol */
  font-size: 1.4rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.accordion-item[open] .chevron::after {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 35px 25px 35px;
  color: #546272;
  line-height: 1.6;
  font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .insights-title { font-size: 1.8rem; }
  summary { font-size: 0.85rem; padding: 20px; }
}

/* 8th section */

:root {
    --brand-orange: #f26522; /* Matches the vibrant orange */
    --navy-bg: #0a0e17;     /* The deep dark navy */
    --text-white: #ffffff;
    --text-muted: #8a94a6;
    --font-stack: 'Inter', sans-serif;
}

.cta-section {
    background-color: var(--navy-bg);
    padding: 120px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-stack);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Creating the central gradient glow */
.cta-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242,101,34,0.1) 0%, rgba(10,14,23,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px); /* Softens the light source */
    z-index: 1;
}

.cta-container {
    max-width: 800px;
    position: relative;
    z-index: 2; /* Keeps text above the glow */
}

/* Eyebrow text styling */
.eyebrow {
    color: var(--brand-orange);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 25px;
}

/* Main headline styling */
.cta-container h1 {
    color: var(--text-white);
    font-size: 4rem; /* Extremely large per image */
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 50px 0;
    text-transform: uppercase;
}

/* Button Group Grid */
.cta-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* General Button Classes */
.btn {
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    transition: 0.3s;
}

/* Fill Button (Primary) */
.btn-primary {
    background-color: var(--brand-orange);
    color: white;
}

/* Outline Button (Secondary) */
.btn-outline {
    border: 1px solid var(--text-muted);
    color: white;
}

/* Subtle Hover Effects */
.btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Tablet & Mobile Responsiveness */
@media (max-width: 992px) {
    .cta-container h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .cta-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    .btn {
        width: 100%;
        text-align: center;
    }
}