@media (max-width: 640px) {
    .why-velra-title {
        font-size: 1.35rem !important;
        line-height: 1.4;
    }
}

/* ═══════════════════════════════════
 CSS RESET & BASE
═══════════════════════════════════ */
:root {
 --primary: #A3C644;
 --primary-dark: #8AAF2E;
 --primary-light: #C4DC7A;
 --velra-blue: #0A192F;
 --background-light: #ffffff;
 --background-dark: #0A192F;
 --content-primary: #A3C644;
 --content-secondary: #EAB308;

 /* Base Colors */
 --white: #ffffff;
 --black: #000000;
 --slate-50: #f8fafc;
 --slate-100: #f1f5f9;
 --slate-200: #e2e8f0;
 --slate-300: #cbd5e1;
 --slate-400: #94a3b8;
 --slate-500: #64748b;
 --slate-600: #475569;
 --slate-700: #334155;
 --slate-800: #0A192F;
 --slate-900: #0A192F;

 /* Theme Defaults (Light Mode) */
 --bg-main: var(--background-light);
 --text-main: var(--black);
 --text-muted: var(--slate-600);
 --heading-color: #0A192F;
}

.dark, .dark-mode {
 --bg-main: var(--background-dark);
 --text-main: var(--white);
 --text-muted: var(--slate-300);
 --heading-color: var(--slate-100);
}

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

html {
 scroll-behavior: smooth;
}

body {
 font-family: 'Inter', sans-serif;
 font-size: 16px;
 line-height: 2;
 letter-spacing: 0.02em;
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
 background-color: var(--bg-main);
 color: var(--text-main);
 transition: background-color 0.3s, color 0.3s;
 font-display: swap;
}

.dark, .dark-mode {
 background-color: var(--background-dark) !important;
 color: var(--white) !important;
}

h1, h2, h3, h4, h5, h6 {
 font-family: 'Montserrat', sans-serif;
 font-weight: 700;
 letter-spacing: 0.01em;
 margin-bottom: 1.5rem;
 line-height: 1.3;
 color: var(--heading-color);
 font-display: swap;
 text-wrap: balance;
}

.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark h5,
.dark h6 {
 color: #f1f5f9;
}

h1 {
 font-size: 2.5rem;
 line-height: 1.2;
}

h2 {
 font-size: 2rem;
 line-height: 1.3;
}

h3 {
 font-size: 1.5rem;
 line-height: 1.4;
}

p {
 line-height: 2;
 letter-spacing: 0.02em;
 word-spacing: 0.05em;
 margin-bottom: 1rem;
}

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

a {
 text-decoration: none;
 color: inherit;
}

.material-symbols-outlined {
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
}

/* ═══════════════════════════════════
 UTILITY CLASSES
═══════════════════════════════════ */
.container {
 max-width: 1280px;
 margin: 0 auto;
 padding: 0 24px;
}

.hidden {
 display: none !important;
}

.mobile-break {
    display: none;
}

@media (max-width: 768px) {
    .mobile-break {
        display: block;
    }
}

/* ═══════════════════════════════════
 GRADIENT TEXT
═══════════════════════════════════ */
.gradient-text,
.content-gradient-text {
 background: linear-gradient(135deg, #A3C644 0%, #EAB308 100%);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}

/* ═══════════════════════════════════
 BADGE / EYEBROW LABEL
═══════════════════════════════════ */
.section-eyebrow {
 display: inline-flex;
 align-items: center;
 gap: 0.5rem;
 font-size: 0.75rem;
 font-weight: 700;
 letter-spacing: 0.15em;
 text-transform: uppercase;
 color: var(--primary);
 padding: 0.375rem 1rem;
 background: rgba(163, 198, 68, 0.1);
 border: 1px solid rgba(163, 198, 68, 0.25);
 border-radius: 2rem;
 margin-bottom: 1.25rem;
}

/* ═══════════════════════════════════
 HERO SECTION
═══════════════════════════════════ */
.hero-section {
 position: relative;
 min-height: 100vh;
 display: flex;
 align-items: center;
 padding-top: 80px;
 overflow: hidden;
}

.hero-bg {
 position: absolute;
 inset: 0;
 z-index: 0;
}

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

.hero-overlay {
 position: absolute;
 inset: 0;
 background: linear-gradient(to right, rgba(10, 25, 47, 0.85), rgba(10, 25, 47, 0.6), rgba(10, 25, 47, 0.4));
}

.hero-content {
 position: relative;
 z-index: 10;
 padding: 64px 0;
 max-width: 56rem;
}

.hero-badge {
 display: inline-flex;
 align-items: center;
 gap: 0.5rem;
 background: rgba(163, 198, 68, 0.15);
 border: 1px solid rgba(163, 198, 68, 0.4);
 color: var(--primary-light);
 font-size: 0.8rem;
 font-weight: 700;
 letter-spacing: 0.08em;
 padding: 0.4rem 1rem;
 border-radius: 2rem;
 margin-bottom: 1.75rem;
}

.hero-badge .dot {
 width: 6px;
 height: 6px;
 background: var(--primary);
 border-radius: 50%;
 animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
 0%, 100% {
 opacity: 1;
 transform: scale(1);
 }
 50% {
 opacity: 0.5;
 transform: scale(0.8);
 }
}

.hero-title {
 color: var(--white);
 margin-bottom: 1.5rem;
 font-size: clamp(1.75rem, 3vw, 2.5rem);
 font-weight: 700;
 line-height: 1.2;
}

.hero-description {
 font-size: 1.125rem;
 color: var(--slate-200);
 margin-bottom: 2rem;
 max-width: 42rem;
 line-height: 1.7;
 font-weight: 400;
}

@media (min-width: 768px) {
 .hero-description {
 font-size: 1.25rem;
 }
}

.hero-trust-signals {
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 gap: 1rem;
 margin-bottom: 2.5rem;
 color: var(--slate-100);
 font-size: 0.875rem;
 font-weight: 700;
}

.trust-signal-item {
 display: flex;
 align-items: center;
 gap: 0.5rem;
}

.trust-signal-item .material-symbols-outlined {
 color: var(--primary);
 font-size: 1.125rem;
}

.trust-signal-divider {
 width: 1px;
 height: 1rem;
 background: var(--slate-600);
}

@media (max-width: 640px) {
 .trust-signal-divider {
 display: none;
 }
}

.hero-stats {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 1rem;
 max-width: 40rem;
}

/* ═══════════════════════════════════
 STAT CARD
═══════════════════════════════════ */
.stat-card {
 background: rgba(163, 198, 68, 0.06);
 border: 1px solid rgba(163, 198, 68, 0.18);
 border-radius: 1rem;
 padding: 1.5rem;
 text-align: center;
 transition: background 0.3s ease;
}

.stat-card:hover {
 background: rgba(163, 198, 68, 0.1);
}

.stat-value {
 font-size: 1.5rem;
 font-weight: 800;
 font-family: 'Montserrat', sans-serif;
}

.stat-label {
 font-size: 0.75rem;
 color: var(--slate-100);
 font-weight: 700;
 margin-top: 0.25rem;
}

/* ═══════════════════════════════════
 REVENUE GROWTH SECTION - NEW
═══════════════════════════════════ */
.revenue-section {
 padding: 6rem 1.5rem;
 background: var(--white);
}

.dark .revenue-section {
  background: #0A192F;
}

.revenue-grid {
 display: grid;
 gap: 2rem;
}

@media (min-width: 768px) {
 .revenue-grid {
 grid-template-columns: repeat(2, 1fr);
 }
}

@media (min-width: 1024px) {
 .revenue-grid {
 grid-template-columns: repeat(3, 1fr);
 }
}

.revenue-card {
 background: var(--slate-50);
 border-radius: 1.5rem;
 padding: 2rem;
 border: 1px solid var(--slate-200);
 display: flex;
 flex-direction: column;
 height: 100%;
 cursor: pointer;
 text-decoration: none;
 color: inherit;
 transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
 box-shadow 0.3s ease,
 border-color 0.3s ease;
}

.dark .revenue-card {
 background: rgba(255, 255, 255, 0.03);
 border-color: var(--slate-700);
}

.revenue-card:hover {
 transform: translateY(-6px);
 box-shadow: 0 24px 48px rgba(163, 198, 68, 0.15);
 border-color: rgba(163, 198, 68, 0.4);
}

.revenue-icon {
 width: 56px;
 height: 56px;
 background: linear-gradient(135deg, #A3C644 0%, #EAB308 100%);
 border-radius: 1rem;
 display: flex;
 align-items: center;
 justify-content: center;
 margin-bottom: 1.5rem;
 transition: transform 0.3s;
}

.revenue-card:hover .revenue-icon {
 transform: scale(1.1) rotate(5deg);
}

.revenue-icon .material-symbols-outlined {
 color: var(--white);
 font-size: 1.75rem;
}

.revenue-card h3 {
 font-size: 1.125rem;
 font-weight: 700;
 margin-bottom: 1rem;
 font-family: 'Montserrat', sans-serif;
 line-height: 1.3;
}

.revenue-card p {
 font-size: 0.875rem;
 color: var(--slate-700);
 line-height: 1.7;
 margin-bottom: 1.5rem;
 font-weight: 400;
}

.revenue-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.revenue-link:hover {
    gap: 0.75rem;
    border-bottom-color: var(--primary);
}

.revenue-link .material-symbols-outlined {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.revenue-link:hover .material-symbols-outlined {
    transform: translateX(4px);
}

.dark .revenue-card p {
 color: var(--slate-200);
}

/* ═══════════════════════════════════
 TESTIMONIAL SECTION - NEW
═══════════════════════════════════ */
.testimonial-section {
 padding: 6rem 1.5rem;
 background: var(--slate-50);
}

.dark .testimonial-section {
  background: #0A192F;
}

.testimonial-card {
 background: var(--white);
 border-radius: 1.5rem;
 padding: 3rem;
 box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
 border: 1px solid var(--slate-200);
 position: relative;
 max-width: 56rem;
 margin: 0 auto;
}

.dark .testimonial-card {
 background: var(--slate-800);
 border-color: var(--slate-700);
}

.testimonial-quote {
 position: absolute;
 top: -1.5rem;
 left: 3rem;
 width: 64px;
 height: 64px;
 background: linear-gradient(135deg, #A3C644 0%, #EAB308 100%);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 box-shadow: 0 4px 12px rgba(163, 198, 68, 0.3);
}

.testimonial-quote .material-symbols-outlined {
 color: var(--white);
 font-size: 2rem;
}

.testimonial-content {
 margin-bottom: 2rem;
}

.testimonial-text {
 font-size: 1rem;
 color: var(--slate-700);
 line-height: 1.8;
 margin-bottom: 1.25rem;
}

.dark .testimonial-text {
 color: var(--slate-300);
}

.testimonial-text:last-child {
 margin-bottom: 0;
}

.testimonial-author {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding-top: 2rem;
 border-top: 1px solid var(--slate-200);
}

.dark .testimonial-author {
 border-top-color: var(--slate-700);
}

.author-info {
 flex: 1;
}

.author-name {
 font-size: 1rem;
 font-weight: 700;
 color: var(--slate-900);
 margin-bottom: 0.25rem;
 font-family: 'Montserrat', sans-serif;
}

.dark .author-name {
 color: var(--white);
}

.author-title {
 font-size: 0.875rem;
 color: var(--slate-500);
}

.dark .author-title {
 color: var(--slate-400);
}

.testimonial-rating {
 display: flex;
 gap: 0.25rem;
}

.testimonial-rating .material-symbols-outlined {
 color: var(--primary);
 font-size: 1.25rem;
}

.testimonial-rating .material-symbols-outlined.filled {
 font-variation-settings: 'FILL' 1;
}

/* ═══════════════════════════════════
 SERVICES SECTION
═══════════════════════════════════ */
.services-section {
 padding: 6rem 1.5rem;
}

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

.section-title {
 margin-bottom: 1.25rem;
}

.section-description {
 font-size: 1.125rem;
 color: var(--slate-600);
 max-width: 48rem;
 margin: 0 auto;
 line-height: 1.7;
}

.dark .section-description {
 color: var(--white);
}

/* ==========================================================================
 NARRATIVE MASTERPIECE LAYOUT (ZERO-NAVIGATION)
 ========================================================================== */

.narrative-canvas {
 display: flex;
 flex-direction: column;
 gap: 4rem;
 margin-top: 4rem;
}

.narrative-panel {
 background: var(--white);
 border-radius: 3rem;
 padding: 3rem;
 border: 1px solid var(--slate-100);
 display: grid;
 grid-template-columns: 1fr;
 gap: 3rem;
 align-items: center;
 position: relative;
 overflow: hidden;
 transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dark .narrative-panel {
  background: rgba(15, 23, 42, 0.4);
  border-color: var(--slate-700);
}

@media (min-width: 1024px) {
 .narrative-panel {
 grid-template-columns: 0.8fr 1.2fr;
 padding: 5rem;
 }

 .narrative-panel.reversed {
 grid-template-columns: 1.2fr 0.8fr;
 }
}

.narrative-visual {
 background: var(--slate-50);
 border-radius: 2.5rem;
 aspect-ratio: 4/3;
 display: flex;
 align-items: center;
 justify-content: center;
 position: relative;
 box-shadow: inset 0 2px 10px rgba(0,0,0,0.02);
}

.dark .narrative-visual {
  background: rgba(10, 25, 47, 1);
}

.narrative-visual .material-symbols-outlined {
 font-size: 8rem;
 background: linear-gradient(135deg, var(--content-secondary) 0%, var(--primary) 100%);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 opacity: 1;
}

.narrative-content {
 display: flex;
 flex-direction: column;
 gap: 2rem;
}

.narrative-eyebrow {
 display: flex;
 align-items: center;
 gap: 0.75rem;
 text-transform: uppercase;
 letter-spacing: 0.25em;
 font-weight: 800;
 font-size: 0.75rem;
 color: var(--primary);
}

.narrative-eyebrow::after {
 content: '';
 height: 1px;
 width: 60px;
 background: var(--primary);
 opacity: 0.3;
}

.narrative-title {
 font-size: 2.75rem;
 line-height: 1.1;
 color: var(--slate-900);
 font-weight: 800;
 letter-spacing: -0.02em;
}

.dark .narrative-title {
 color: var(--white);
}

.narrative-text {
 font-size: 1.25rem;
 line-height: 1.7;
 color: var(--slate-700);
 font-weight: 400;
}

.dark .narrative-text {
 color: var(--white);
 opacity: 0.9;
}

.narrative-points {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
 gap: 2rem;
 padding-top: 1rem;
 border-top: 1px solid var(--slate-100);
}

.dark .narrative-points {
 border-color: var(--slate-700);
}

.narrative-point {
 display: flex;
 flex-direction: column;
 gap: 1rem;
}

.narrative-point .material-symbols-outlined {
 background: linear-gradient(to bottom right, var(--content-secondary), var(--primary));
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 font-size: 2rem;
 font-variation-settings: 'FILL' 1;
 display: inline-block;
}

.narrative-point-title {
 font-weight: 700;
 color: var(--slate-900);
 font-size: 1.1rem;
}

.dark .narrative-point-title {
 color: var(--white);
}

.narrative-point-desc {
 font-size: 0.95rem;
 color: var(--slate-500);
 line-height: 1.6;
}

.dark .narrative-point-desc {
  color: var(--slate-300);
}

/* Hover Mastery */
.narrative-panel:hover {
 box-shadow: 0 50px 100px rgba(0, 0, 0, 0.08);
 transform: translateY(-5px);
}

/* ═══════════════════════════════════
 SERVICE CARD
═══════════════════════════════════ */
.service-card {
 background: var(--white);
 border-radius: 2rem;
 padding: 2.5rem;
 box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
 border: 1px solid var(--slate-100);
 transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
 position: relative;
 overflow: hidden;
 display: flex;
 flex-direction: column;
 height: 100%;
}

.dark .service-card {
  background: rgba(15, 23, 42, 0.4);
  border-color: var(--slate-700);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
 transform: translateY(-8px);
 box-shadow: 0 30px 60px rgba(163, 198, 68, 0.12);
 border-color: rgba(163, 198, 68, 0.3);
}

.service-card::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 width: 4px;
 height: 0;
 background: var(--primary);
 transition: height 0.4s ease;
}

.service-card:hover::before {
 height: 100%;
}

.service-icon {
 width: 56px;
 height: 56px;
 background: linear-gradient(135deg, #A3C644 0%, #EAB308 100%);
 border-radius: 1rem;
 display: flex;
 align-items: center;
 justify-content: center;
 margin-bottom: 1.75rem;
 transition: transform 0.3s;
}

.service-card:hover .service-icon {
 transform: scale(1.1);
}

.service-icon .material-symbols-outlined {
 color: var(--white);
 font-size: 1.5rem;
}

.service-title {
 font-size: 1.25rem;
 font-weight: 700;
 margin-bottom: 1rem;
 font-family: 'Montserrat', sans-serif;
 line-height: 1.3;
 transition: color 0.3s;
}

.service-card:hover .service-title {
 color: var(--primary);
}

.service-description {
 font-size: 0.875rem;
 color: var(--slate-700);
 margin-bottom: 1.5rem;
 line-height: 1.7;
 font-weight: 400;
}

.dark .service-description {
 color: var(--slate-200);
}

.service-features {
 list-style: none;
 margin-bottom: 1.75rem;
}

.service-feature {
 display: flex;
 align-items: flex-start;
 gap: 0.625rem;
 margin-bottom: 0.75rem;
 font-size: 0.875rem;
 color: var(--slate-600);
}

.dark .service-feature {
 color: var(--slate-400);
}

.service-feature .material-symbols-outlined {
 color: var(--primary);
 font-size: 1rem;
 margin-top: 0.125rem;
 flex-shrink: 0;
}

.service-link {
 display: inline-flex;
 align-items: center;
 gap: 0.375rem;
 color: var(--primary);
 font-weight: 600;
 font-size: 0.875rem;
 transition: gap 0.3s;
}

.service-link:hover {
 gap: 0.625rem;
}

.service-link .material-symbols-outlined {
 font-size: 1.125rem;
}

/* ═══════════════════════════════════
 WHY VELRA SECTION
═══════════════════════════════════ */
.why-velra-section {
 padding: 6rem 1.5rem;
 background: var(--slate-50);
}

.dark .why-velra-section {
  background: #0A192F;
}

.why-velra-container {
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 64px;
}

@media (min-width: 1024px) {
 .why-velra-container {
 flex-direction: row;
 }
}

.why-velra-image {
 flex: 1;
 position: relative;
}

@media (min-width: 1024px) {
 .why-velra-image {
 width: 50%;
 }
}

.image-rotation-wrapper {
 position: absolute;
 inset: -12px;
 background: rgba(163, 198, 68, 0.08);
 border-radius: 1.5rem;
 transform: rotate(2deg);
 transition: transform 0.3s;
}

.why-velra-image:hover .image-rotation-wrapper {
 transform: rotate(1deg);
}

.image-container {
 position: relative;
 background: var(--white);
 padding: 10px;
 border-radius: 1rem;
 box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
 border: 1px solid var(--slate-200);
 overflow: hidden;
}

.dark .image-container {
 background: var(--slate-900);
 border-color: var(--slate-700);
}

.image-container img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 border-radius: 0.75rem;
 transition: transform 0.7s;
}

.why-velra-image:hover .image-container img {
 transform: scale(1.05);
}

.why-velra-content {
 flex: 1;
}

@media (min-width: 1024px) {
 .why-velra-content {
 width: 50%;
 }
}

.why-velra-title {
 margin-bottom: 1.25rem;
 line-height: 1.2;
}

.why-velra-description {
 font-size: 1rem;
 color: var(--slate-600);
 margin-bottom: 2.5rem;
 line-height: 1.7;
}

.dark .why-velra-description {
 color: var(--white);
 opacity: 0.9;
}

.features-list {
 display: flex;
 flex-direction: column;
 gap: 1.75rem;
}

.feature-item {
 display: flex;
 align-items: flex-start;
 gap: 1rem;
}

.feature-icon-wrapper {
 flex-shrink: 0;
 width: 44px;
 height: 44px;
 background: rgba(163, 198, 68, 0.1);
 border-radius: 0.75rem;
 display: flex;
 align-items: center;
 justify-content: center;
}

.dark .feature-icon-wrapper {
 background: rgba(163, 198, 68, 0.15);
}

.feature-icon-wrapper .material-symbols-outlined {
 color: var(--primary);
 font-size: 1.25rem;
}

.feature-content h3 {
 font-size: 1rem;
 font-weight: 700;
 margin-bottom: 0.375rem;
 font-family: 'Montserrat', sans-serif;
}

.feature-content p {
 font-size: 0.875rem;
 color: var(--slate-600);
 line-height: 1.7;
}

.dark .feature-content p {
 color: var(--slate-200);
}

.cta-button {
 display: inline-flex;
 align-items: center;
 gap: 0.5rem;
 background: linear-gradient(135deg, #A3C644 0%, #EAB308 100%);
 color: var(--white);
 padding: 1rem 2rem;
 border-radius: 9999px;
 font-weight: 700;
 box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
 transition: transform 0.3s;
 margin-top: 2.5rem;
}

.cta-button:hover {
 transform: scale(1.05);
}

.cta-button .material-symbols-outlined {
 font-size: 1.25rem;
}

/* ═══════════════════════════════════
 PROCESS SECTION
═══════════════════════════════════ */
.process-section {
 padding: 6rem 1.5rem;
 background: var(--white);
}

.dark .process-section {
  background: #0A192F;
}

.process-grid {
 display: grid;
 gap: 1.5rem;
}

@media (min-width: 768px) {
 .process-grid {
 grid-template-columns: repeat(4, 1fr);
 }
}

.process-step {
 text-align: center;
 position: relative;
}

.step-number {
 width: 56px;
 height: 56px;
 background: linear-gradient(135deg, #A3C644 0%, #EAB308 100%);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto 1.25rem;
 color: var(--white);
 font-weight: 700;
 font-size: 1.125rem;
 font-family: 'Montserrat', sans-serif;
 transition: transform 0.3s;
}

.process-step:hover .step-number {
 transform: scale(1.1);
}

.step-title {
 font-size: 1rem;
 font-weight: 700;
 margin-bottom: 0.5rem;
 font-family: 'Montserrat', sans-serif;
}

.step-description {
 font-size: 0.875rem;
 color: var(--slate-500);
 line-height: 1.7;
}

.dark .step-description {
 color: var(--white);
 opacity: 0.8;
}

/* ═══════════════════════════════════
 TRUST SIGNALS SECTION
═══════════════════════════════════ */
.trust-section {
 padding: 6rem 1.5rem;
 background: var(--slate-50);
}

.dark .trust-section {
  background: #0A192F;
}

.trust-grid {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 1.5rem;
 text-align: center;
}

@media (min-width: 768px) {
 .trust-grid {
 grid-template-columns: repeat(4, 1fr);
 }
}

.trust-card {
 padding: 1.5rem;
 border-radius: 1rem;
 background: var(--white);
 border: 1px solid var(--slate-100);
}

.dark .trust-card {
  background: rgba(15, 23, 42, 0.4);
  border-color: var(--slate-700);
}

.trust-card .material-symbols-outlined {
 color: var(--primary);
 font-size: 3rem;
 margin-bottom: 0.75rem;
 display: block;
}

.trust-card-title {
 font-size: 1rem;
 font-weight: 700;
 color: var(--slate-900);
 margin-bottom: 0.25rem;
 font-family: 'Montserrat', sans-serif;
}

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

.trust-card-subtitle {
 font-size: 0.75rem;
 color: var(--slate-500);
}

.dark .trust-card-subtitle {
 color: var(--slate-300);
}

/* ═══════════════════════════════════
 FAQ SECTION
═══════════════════════════════════ */
.faq-section {
 padding: 6rem 1.5rem;
 background: var(--white);
}

.dark .faq-section {
 background: #0A192F;
}

.faq-container {
 max-width: 56rem;
}

.faq-list {
 display: flex;
 flex-direction: column;
 gap: 1rem;
}

.faq-item {
 background: var(--slate-50);
 border-radius: 1rem;
 border: 1px solid var(--slate-200);
 overflow: hidden;
}

.dark .faq-item {
  background: rgba(15, 23, 42, 0.4);
  border-color: var(--slate-700);
}

.faq-item summary {
 display: flex;
 align-items: center;
 justify-content: space-between;
 padding: 1.5rem;
 cursor: pointer;
 list-style: none;
 user-select: none;
}

.faq-item summary::-webkit-details-marker {
 display: none;
}

.faq-question {
 font-size: 1rem;
 font-weight: 700;
 padding-right: 1rem;
 font-family: 'Montserrat', sans-serif;
}

.faq-icon {
 flex-shrink: 0;
 transition: transform 0.25s ease;
 color: var(--primary);
}

.faq-item[open] .faq-icon {
 transform: rotate(45deg);
}

.faq-answer {
 padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
 font-size: 0.875rem;
 color: var(--slate-700);
 line-height: 1.7;
 font-weight: 400;
}

.dark .faq-answer p {
 color: var(--slate-200);
}

/* ═══════════════════════════════════
 CTA SECTION
═══════════════════════════════════ */
.cta-section {
 padding: 6rem 1.5rem;
 background: linear-gradient(135deg, #A3C644 0%, #EAB308 100%);
}

.cta-container {
 max-width: 56rem;
 margin: 0 auto;
 text-align: center;
}

.cta-title {
 font-size: 1.875rem;
 font-weight: 800;
 color: var(--white);
 margin-bottom: 1.25rem;
 font-family: 'Montserrat', sans-serif;
 line-height: 1.2;
}

@media (min-width: 768px) {
 .cta-title {
 font-size: 3rem;
 }
}

.cta-subtitle {
 opacity: 0.9;
}

.cta-description {
 font-size: 1.125rem;
 color: rgba(255, 255, 255, 0.85);
 margin-bottom: 2.5rem;
 max-width: 42rem;
 margin-left: auto;
 margin-right: auto;
 line-height: 1.7;
}

.cta-buttons {
 display: flex;
 flex-direction: column;
 gap: 1.25rem;
 justify-content: center;
}

@media (min-width: 640px) {
 .cta-buttons {
 flex-direction: row;
 }
}

.cta-primary-button {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 0.5rem;
 background: var(--white);
 color: var(--velra-blue);
 padding: 1rem 2.5rem;
 border-radius: 9999px;
 font-weight: 700;
 font-size: 1rem;
 box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
 transition: transform 0.3s;
}

.cta-primary-button:hover {
 transform: scale(1.05);
}

.cta-secondary-button {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 0.5rem;
 border: 2px solid rgba(255, 255, 255, 0.6);
 color: var(--white);
 padding: 1rem 2.5rem;
 border-radius: 9999px;
 font-weight: 700;
 font-size: 1rem;
 transition: background 0.3s, border-color 0.3s;
}

.cta-secondary-button:hover {
 background: rgba(255, 255, 255, 0.1);
 border-color: var(--white);
}

.cta-button .material-symbols-outlined {
 font-size: 1.25rem;
}

.cta-footer-text {
 color: rgba(255, 255, 255, 0.6);
 font-size: 0.75rem;
 margin-top: 2rem;
 line-height: 1.7;
}

/* ═══════════════════════════════════
 SEO TEXT BLOCK
═══════════════════════════════════ */
.seo-text-block {
 margin-top: 3.5rem;
 text-align: center;
}

.seo-text-block p {
 font-size: 0.875rem;
 color: var(--slate-500);
 max-width: 56rem;
 margin: 0 auto;
 line-height: 1.7;
}

.dark .seo-text-block p {
 color: var(--white);
 opacity: 0.7;
}

/* ═══════════════════════════════════
   SOLUTIONS DIRECTORY ANIMATIONS
   ═══════════════════════════════════ */
.directory-group.card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(163, 198, 68, 0.1);
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    height: 100%;
}

.directory-group.card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 40px -15px rgba(163, 198, 68, 0.15);
}

.dark .directory-group.card {
    background: rgba(10, 25, 47, 0.3);
}

.directory-group .material-symbols-outlined {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.directory-group.card:hover .material-symbols-outlined {
    transform: scale(1.2) rotate(5deg);
    color: var(--primary) !important;
    text-shadow: 0 0 15px rgba(163, 198, 68, 0.4);
}

.directory-group h3 {
    transition: color 0.3s ease;
}

.directory-group.card:hover h3 {
    color: var(--primary);
}

.keyword-link {
    position: relative;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: inline;
}

.keyword-link:hover {
    background: linear-gradient(to right, var(--content-secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent !important;
}

.keyword-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(to right, var(--content-secondary), var(--primary));
    transition: width 0.3s ease;
}

.keyword-link:hover::after {
    width: 100%;
}

/* ═══════════════════════════════════
 RESPONSIVE ADJUSTMENTS
═══════════════════════════════════ */
@media (max-width: 768px) {
 .container {
 padding: 0 16px;
 }

 .services-section,
 .revenue-section,
 .testimonial-section,
 .why-velra-section,
 .process-section,
 .faq-section {
 padding: 64px 0;
 }

 .section-header {
 margin-bottom: 48px;
 }

 .hero-stats {
 gap: 0.75rem;
 }

 .stat-value {
 font-size: 1.25rem;
 }

 .testimonial-card {
 padding: 2rem 1.5rem;
 }

 .testimonial-quote {
 left: 1.5rem;
 width: 48px;
 height: 48px;
 }

 .testimonial-quote .material-symbols-outlined {
 font-size: 1.5rem;
 }
}