/* Vajra Drill - Professional Corporate Stylesheet */
/* =================================================== */

/* CSS Variables */
:root {
    /* Primary Brand Colors */
    --primary-color: #1e3a8a;
    --primary-dark: #0f172a;
    --primary-light: #3b82f6;
    --secondary-color: #0d9488;
    --accent-color: #ea580c;
    
    /* Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-light: #64748b;
    
    /* Background Colors */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-900: #0f172a;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.15);
    
    /* Border Radius */
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sticky Full-Page Slides Effect */
.sticky-slides-container {
    position: relative;
}

.sticky-slide {
    position: sticky;
    top: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    will-change: transform;
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.1);
}

.sticky-slide:first-child {
    box-shadow: none;
}

.sticky-slide:nth-child(1) { z-index: 1; }
.sticky-slide:nth-child(2) { z-index: 2; }
.sticky-slide:nth-child(3) { z-index: 3; }
.sticky-slide:nth-child(4) { z-index: 4; }
.sticky-slide:nth-child(5) { z-index: 5; }
.sticky-slide:nth-child(6) { z-index: 6; }
.sticky-slide:nth-child(7) { z-index: 7; }
.sticky-slide:nth-child(8) { z-index: 8; }
.sticky-slide:nth-child(9) { z-index: 9; }
.sticky-slide:nth-child(10) { z-index: 10; }

/* Slide backgrounds */
.sticky-slide-light {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.sticky-slide-blue {
    background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
}

.sticky-slide-dark {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.sticky-slide-gray {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

/* Override section padding for sticky slides */
.sticky-slide.hero {
    padding-top: 170px;
    padding-bottom: 80px;
}

.sticky-slide.services-overview,
.sticky-slide.why-choose-us,
.sticky-slide.achievements-section,
.sticky-slide.markets-section,
.sticky-slide.service-areas,
.sticky-slide.testimonials {
    padding: 80px 0;
}

.sticky-slide.cta-section {
    padding: 36px 0;
    min-height: auto;
}

/* Disable sticky on mobile for better performance */
@media (max-width: 768px) {
    .sticky-slide {
        position: relative;
        min-height: auto;
        box-shadow: none;
    }
    
    .sticky-slide.hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .sticky-slide.services-overview,
    .sticky-slide.why-choose-us,
    .sticky-slide.achievements-section,
    .sticky-slide.markets-section,
    .sticky-slide.service-areas,
    .sticky-slide.testimonials,
    .sticky-slide.cta-section {
        padding: 60px 0;
    }
}

/* Parallax Scrolling Styles */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: 0;
}

.parallax-content {
    position: relative;
    z-index: 1;
}

.parallax-shape {
    position: absolute;
    pointer-events: none;
    opacity: 0.6;
    will-change: transform;
}

.parallax-shape-1 {
    top: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.parallax-shape-2 {
    bottom: 15%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.parallax-shape-3 {
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Floating elements animation enhancement */
.parallax-float {
    animation: parallaxFloat 6s ease-in-out infinite;
}

@keyframes parallaxFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(1deg); }
    66% { transform: translateY(-8px) rotate(-1deg); }
}

/* Disable parallax on mobile for performance */
@media (max-width: 768px) {
    .parallax-bg {
        top: 0;
        height: 100%;
        background-attachment: scroll;
    }
    .parallax-shape {
        display: none;
    }
}

/* Corporate Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.4);
    }
}

/* 3D Animations */
@keyframes float3D {
    0%, 100% {
        transform: translateY(0) rotateX(0) rotateY(0);
    }
    25% {
        transform: translateY(-5px) rotateX(2deg) rotateY(-2deg);
    }
    50% {
        transform: translateY(-10px) rotateX(0) rotateY(0);
    }
    75% {
        transform: translateY(-5px) rotateX(-2deg) rotateY(2deg);
    }
}

@keyframes rotate3D {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}

@keyframes slideIn3D {
    from {
        opacity: 0;
        transform: translateZ(-100px) rotateX(10deg);
    }
    to {
        opacity: 1;
        transform: translateZ(0) rotateX(0);
    }
}

@keyframes bounceIn3D {
    0% {
        opacity: 0;
        transform: scale(0.3) translateZ(-200px);
    }
    50% {
        transform: scale(1.05) translateZ(30px);
    }
    70% {
        transform: scale(0.9) translateZ(10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateZ(0);
    }
}

@keyframes glowPulse3D {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(14, 165, 233, 0.2),
            0 20px 40px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 
            0 0 40px rgba(14, 165, 233, 0.4),
            0 25px 50px rgba(0, 0, 0, 0.15);
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* Top info bar */
.header-top {
    background: #0f172a;
    border-bottom: 2px solid #ea580c;
}

.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0;
}

.header-top-tag {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-top-right a {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: color 0.2s;
}

.header-top-right a:hover {
    color: #ea580c;
}

.header-top-right a svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.navbar {
    padding: 0.6rem 0;
    position: relative;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand .logo img {
    height: 68px;
    width: auto;
}

.nav-menu {
    display: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 0;
    display: block;
}

.nav-link:hover {
    color: #ea580c;
}

/* Dropdown Menus */
.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.dropdown-content a:hover {
    background: var(--gray-50);
    color: var(--primary-color);
}

/* Navigation CTA Buttons */
.nav-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-call {
    background: var(--accent-color);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-call:hover {
    background: #d97706;
    color: white;
}

/* Primary & Secondary Buttons */
.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary:hover {
    background: #1e40af;
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 0.25rem;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* Hamburger → X animation */
.nav-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section */
.hero {
    padding-top: 120px;
    padding-bottom: 80px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

/* ══════════════════════════════════════
   HERO CENTERED — full-screen gradient
   with floating widgets
   ══════════════════════════════════════ */
.hero.hero-centered {
    padding: 0 !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #070e1f !important;
    overflow: hidden;
    position: relative;
}

/* Animated gradient blobs */
.hc-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: blobDrift 12s ease-in-out infinite alternate;
}

.hc-blob--1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(30,58,138,0.45) 0%, transparent 70%);
    top: -15%; left: -10%;
    animation-duration: 14s;
}

.hc-blob--2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(234,88,12,0.22) 0%, transparent 70%);
    top: 10%; right: -8%;
    animation-duration: 10s;
    animation-delay: -4s;
}

.hc-blob--3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(13,148,136,0.2) 0%, transparent 70%);
    bottom: -10%; left: 35%;
    animation-duration: 16s;
    animation-delay: -8s;
}

@keyframes blobDrift {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(40px, 30px) scale(1.08); }
}

/* Dot-grid overlay */
.hc-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.055) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
    z-index: 0;
}

/* CSS-only waves */
.hc-waves-css {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 220px;
    background: #1a3a6e;
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: 1;
}

.hc-waves-css::before,
.hc-waves-css::after {
    content: '';
    position: absolute;
    width: 300vw;
    height: 300vw;
    top: -65vw;
    left: 50%;
    transform: translate(-50%, -75%);
}

.hc-waves-css::before {
    border-radius: 44%;
    background: rgba(7, 14, 31, 1);
    animation: cssWaves 12s linear infinite;
}

.hc-waves-css::after {
    border-radius: 44%;
    background: rgba(7, 14, 31, 0.5);
    animation: cssWaves 20s linear infinite;
}

@keyframes cssWaves {
    0%   { transform: translate(-50%, -75%) rotate(0deg); }
    100% { transform: translate(-50%, -75%) rotate(360deg); }
}

/* Container holds only the centre content */
.hc-container {
    position: relative;
    z-index: 5;
    width: 100%;
    padding-top: 140px;
    padding-bottom: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Centre content */
.hc-center {
    text-align: center;
    max-width: 700px;
    width: 100%;
}

.hero-centered .hero-headline {
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin: 20px 0 18px;
}

.hero-centered .hl-accent {
    color: var(--accent-color);
}

.hero-centered .hero-description {
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
    max-width: 560px;
    margin: 0 auto 32px;
}

.hero-actions--centered {
    justify-content: center;
    margin-bottom: 28px;
}

/* Service pills */
.hc-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 12px;
}

.hc-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    text-decoration: none;
    transition: all 0.25s ease;
    backdrop-filter: blur(4px);
}

.hc-pill:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.hc-pill svg { opacity: 0.7; }

/* ── Floating widgets ── */
.hc-widget {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    z-index: 4;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.hcw-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hcw-icon--blue   { background: rgba(30,58,138,0.35); color: #93c5fd; }
.hcw-icon--orange { background: rgba(234,88,12,0.3);  color: #fb923c; }
.hcw-icon--teal   { background: rgba(13,148,136,0.3); color: #5eead4; }
.hcw-icon--img    { background: transparent; border: none; padding: 0; }
.hcw-icon--img img { display: block; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3)); }

/* Image-based service icons */
.service-icon--img {
    background: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-icon--img img {
    display: block;
    transition: transform 0.3s ease;
}
.service-card:hover .service-icon--img img {
    transform: scale(1.1) translateY(-3px);
}

.hcw-value {
    font-size: 0.92rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.hcw-label {
    font-size: 0.73rem;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
}

/* Positions */
.hc-widget--tl { top: 18%;  left: 4%; }
.hc-widget--tr { top: 18%;  right: 4%; }
.hc-widget--ml { top: 44%;  left: 2%; }
.hc-widget--mr { top: 44%;  right: 2%; }
.hc-widget--bl { bottom: 18%; left: 4%; }
.hc-widget--br { bottom: 18%; right: 4%; }

/* Float animation */
.float-anim { animation: floatUp 5s ease-in-out infinite alternate; }
.float-anim--delay1 { animation-delay: -1.5s; animation-duration: 6s; }
.float-anim--delay2 { animation-delay: -3s;   animation-duration: 5.5s; }
.float-anim--delay3 { animation-delay: -4.5s; animation-duration: 6.5s; }

@keyframes floatUp {
    from { transform: translateY(0); }
    to   { transform: translateY(-10px); }
}

/* Scroll hint */
.hc-scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.3);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hc-scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, transparent, rgba(234,88,12,0.6));
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
    50%       { opacity: 1;   transform: scaleY(1); }
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .hc-widget--ml,
    .hc-widget--mr { display: none; }
    .hc-widget--tl { top: 14%; left: 2%; }
    .hc-widget--tr { top: 14%; right: 2%; }
    .hc-widget--bl { bottom: 14%; left: 2%; }
    .hc-widget--br { bottom: 14%; right: 2%; }
}

@media (max-width: 768px) {
    .hc-widget { display: none; }

    .hero.hero-centered { min-height: 100svh; }

    .hc-container {
        padding-top: 130px;
        padding-bottom: 80px;
    }

    .hero-centered .hero-headline { font-size: clamp(2.2rem, 7vw, 3rem); }
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

/* Trust Badge */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gray-100);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.trust-badge svg {
    color: var(--accent-color);
}

/* Light (dark bg) variant */
.trust-badge--light {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.16);
    color: rgba(255,255,255,0.82);
    backdrop-filter: blur(6px);
}
.trust-badge--light svg { color: var(--accent-color); }

/* Ghost button (white outline) */
.btn-ghost.btn-hero {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
}
.btn-ghost.btn-hero:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* Headline */
.hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--primary-dark);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 90%;
}

/* Benefits List */
.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.benefit-item svg {
    color: #ea580c;
    flex-shrink: 0;
}

/* CTA Buttons */
.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 16px 32px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-primary.btn-hero {
    background: #ea580c;
    color: white;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.btn-primary.btn-hero:hover {
    background: #c2410c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(234, 88, 12, 0.4);
}

.btn-secondary.btn-hero {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--gray-200);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-secondary.btn-hero:hover {
    background: var(--gray-50);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 24px 0;
    border-top: 1px solid var(--gray-200);
}

.stat {
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ea580c;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Floating Badge */
.floating-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.badge-content {
    line-height: 1.3;
}

.badge-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.badge-subtitle {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Breadcrumb */
.breadcrumb {
    padding: 20px 0;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    font-size: 0.95rem;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '›';
    color: var(--gray-500);
    font-size: 1.2rem;
}

.breadcrumb-list a {
    color: var(--primary-color);
    transition: var(--transition);
}

.breadcrumb-list a:hover {
    color: var(--primary-dark);
}

.breadcrumb-list li[aria-current="page"] {
    color: var(--gray-600);
}

/* Page Hero */
.page-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
}

.page-hero .hero-content {
    max-width: 900px;
}

.page-hero h1 {
    color: white;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
}

.page-hero .hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    margin: 32px 0;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.stat-item .stat-label {
    display: block;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Services Section (for subpages) */
.services-section {
    padding: 80px 0;
    background: var(--white);
}

/* Services Overview Section */
.services-overview {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.services-overview::before {
    display: none;
}

.services-overview::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(13, 148, 136, 0.02) 100%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
    position: relative;
}

.section-badge {
    display: inline-block;
    padding: 10px 24px;
    background: transparent;
    color: #ea580c;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    border: none;
    position: relative;
}

.section-badge::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 50%;
    width: 30px;
    height: 2px;
    background: #ea580c;
}

.section-badge::after {
    content: '';
    position: absolute;
    right: -40px;
    top: 50%;
    width: 30px;
    height: 2px;
    background: #ea580c;
}

.section-header::after {
    display: none;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.3;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.section-header h2 span {
    color: #ea580c;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: var(--white);
    border: none;
    border-radius: 16px;
    padding: 45px 35px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #ea580c, #f97316);
    transition: height 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    transform: translate(30%, -30%);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    margin-bottom: 28px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(13, 148, 136, 0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.service-icon svg {
    width: 38px;
    height: 38px;
    transition: all 0.4s ease;
    stroke: var(--primary-color);
}

.service-card:hover .service-icon svg {
    stroke: white;
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.service-card h3 a {
    color: var(--primary-dark);
    transition: all 0.3s ease;
}

.service-card:hover h3 a {
    color: var(--primary-color);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.service-link:hover {
    color: var(--primary-dark);
}

.service-link:hover::after {
    width: 100%;
}

.featured-service {
    border: 2px solid var(--primary-color);
    position: relative;
}

.featured-service::before {
    content: "Most Popular";
    position: absolute;
    top: -14px;
    left: 30px;
    width: auto;
    height: auto;
    background: var(--primary-color);
    color: white;
    padding: 6px 18px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-service:hover::before {
    height: auto;
}

/* Detailed Services Grid (for subpages) */
.services-detailed-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.service-detailed-card {
    display: flex;
    gap: 32px;
    padding: 32px;
    background: white;
    border-radius: 12px;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

.service-detailed-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
}

.service-icon-large {
    flex-shrink: 0;
}

.service-icon-large img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.service-content h3 a {
    color: var(--primary-dark);
}

.service-content > p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 20px;
}

.service-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.service-features li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding-left: 24px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.service-applications {
    margin-bottom: 20px;
}

.service-applications h4 {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.tag {
    display: inline-block;
    padding: 6px 12px;
    background: var(--gray-100);
    color: var(--text-secondary);
    border-radius: 6px;
    font-size: 0.85rem;
    margin-right: 8px;
    margin-bottom: 8px;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid var(--primary-light);
    border-radius: 8px;
    transition: var(--transition);
}

.service-cta:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateX(4px);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 120px 0;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    display: none;
}

.why-choose-us::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
    transform: translateY(-50%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-box {
    background: var(--white);
    padding: 50px 30px 40px;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.feature-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
    transition: all 0.4s ease;
}

.feature-box:hover .feature-number {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.4);
}

.feature-box h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--primary-dark);
    margin-top: 15px;
    transition: all 0.3s ease;
}

.feature-box:hover h3 {
    color: var(--primary-color);
}

.feature-box p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* Achievements Section - Clean Light Style */
.achievements-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.achievements-section::before {
    display: none;
}

.achievements-section::after {
    display: none;
}

.achievements-section .section-header {
    margin-bottom: 60px;
}

.achievements-section .section-header::after {
    display: none;
}

.achievements-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #0369a1;
    font-style: italic;
    margin-bottom: 8px;
}

.achievements-subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    color: #64748b;
    font-style: italic;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 50px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
    position: relative;
}

.achievements-grid::before {
    display: none;
}

@keyframes gridSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px) rotateX(5deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.achievement-card {
    padding: 50px 30px;
    text-align: center;
    border-right: 1px solid rgba(14, 116, 144, 0.1);
    transition: all 0.4s ease;
    position: relative;
    background: transparent;
}

.achievement-card > * {
    position: relative;
}

.achievement-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.achievement-card::after {
    display: none;
}

.achievement-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 40px rgba(3, 105, 161, 0.1);
}

.achievement-card:hover::before {
    opacity: 0;
}

.achievement-card:last-child {
    border-right: none;
}

/* Icon Animation */
.achievement-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    transition: transform 0.4s ease;
}

.achievement-card:hover .achievement-icon {
    transform: scale(1.1);
}

.achievement-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.achievement-icon svg {
    transition: all 0.4s ease;
}

.achievement-card:hover .achievement-icon svg {
    filter: drop-shadow(0 4px 10px rgba(3, 105, 161, 0.3));
}

/* Number Animation */
.achievement-number {
    font-size: 2.6rem;
    font-weight: 800;
    color: #ea580c;
    line-height: 1;
    margin-bottom: 10px;
    transition: all 0.4s ease;
    white-space: nowrap;
}

.achievement-card:hover .achievement-number {
    transform: scale(1.05);
    color: #c2410c;
}

.achievement-label {
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    line-height: 1.3;
    transition: all 0.4s ease;
}

.achievement-card:hover .achievement-label {
    color: #0369a1;
}

/* Achievements Secondary Row - 3D Effects */
.achievements-secondary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 2px solid rgba(14, 116, 144, 0.12);
    perspective: 1000px;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(14, 116, 144, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.achievement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.achievement-item:hover::before {
    left: 100%;
}

.achievement-item:nth-child(1) { 
    animation: itemSlide3D 0.7s ease-out backwards;
    animation-delay: 0.1s; 
}
.achievement-item:nth-child(2) { 
    animation: itemSlide3D 0.7s ease-out backwards;
    animation-delay: 0.2s; 
}
.achievement-item:nth-child(3) { 
    animation: itemSlide3D 0.7s ease-out backwards;
    animation-delay: 0.3s; 
}
.achievement-item:nth-child(4) { 
    animation: itemSlide3D 0.7s ease-out backwards;
    animation-delay: 0.4s; 
}

@keyframes itemSlide3D {
    from {
        opacity: 0;
        transform: translateY(30px) rotateX(-10deg) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0) scale(1);
    }
}

.achievement-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-8px) translateZ(20px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(3, 105, 161, 0.15),
        0 0 0 1px rgba(14, 165, 233, 0.2);
}

.achievement-item svg {
    stroke: #0369a1;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    filter: drop-shadow(0 2px 4px rgba(3, 105, 161, 0.2));
}

.achievement-item:hover svg {
    transform: scale(1.2) rotateZ(5deg);
    filter: drop-shadow(0 4px 8px rgba(3, 105, 161, 0.3));
}

.achievement-item-content {
    display: flex;
    flex-direction: column;
}

.item-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0369a1;
}

.item-label {
    font-size: 0.9rem;
    color: #0c4a6e;
}

/* Achievements Section Responsive */
@media (max-width: 1200px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .achievement-card {
        border-bottom: 1px solid rgba(14, 116, 144, 0.15);
    }
    
    .achievement-card:nth-child(2n) {
        border-right: none;
    }
    
    .achievement-card:nth-last-child(-n+2) {
        border-bottom: none;
    }
    
    .achievements-secondary {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .achievements-title {
        font-size: 1.6rem;
    }
    
    .achievements-subtitle {
        font-size: 1.2rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement-card {
        border-right: none;
        border-bottom: 1px solid rgba(14, 116, 144, 0.15);
    }
    
    .achievement-card:last-child {
        border-bottom: none;
    }
    
    .achievement-number {
        font-size: 2rem;
    }
    
    .achievements-secondary {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Markets Section */
.markets-section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.markets-section::before {
    display: none;
}

.markets-section::after {
    display: none;
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.market-card {
    background: var(--white);
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.market-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.market-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.market-card:hover img {
    transform: scale(1.08);
}

.market-content {
    padding: 30px;
}

.market-content h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.market-content h3 a {
    color: var(--primary-dark);
    transition: all 0.3s ease;
}

.market-card:hover .market-content h3 a {
    color: var(--primary-color);
}

.market-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.market-link:hover {
    color: var(--primary-dark);
    background: transparent;
    gap: 12px;
}

/* Service Areas Section */
.service-areas {
    padding: 120px 0;
    background: var(--gray-50);
    position: relative;
}

.service-areas::after {
    display: none;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.area-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: none;
}

.area-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.primary-area {
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.primary-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
}

.area-card h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.area-card h3 a {
    color: var(--primary-dark);
    transition: all 0.3s ease;
}

.area-card:hover h3 a {
    color: var(--primary-color);
}

.coverage-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.coverage-list span {
    background: var(--gray-50);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.coverage-list span:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    display: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    transition: all 0.4s ease;
    border: none;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 5rem;
    color: rgba(59, 130, 246, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.testimonial-card .stars {
    display: flex;
    gap: 4px;
    color: var(--accent-color);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    flex: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    gap: 14px;
    align-items: center;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.author-meta {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
    font-size: 0.875rem;
    color: var(--gray-600);
}

.testimonials-footer {
    text-align: center;
}

.testimonials-footer .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* CTA Section */
.cta-section {
    padding: 36px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    pointer-events: none;
}

.cta-section::after {
    display: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    text-align: left;
}

.cta-content-text {
    flex: 1;
}

.cta-content h2 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 6px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    max-width: 520px;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: #ea580c;
    color: white;
    padding: 12px 28px;
    font-size: 0.95rem;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.3);
    transition: all 0.4s ease;
    font-weight: 600;
}

.cta-section .btn-primary:hover {
    background: #c2410c;
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(234, 88, 12, 0.4);
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 12px 28px;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.4s ease;
    font-weight: 600;
    white-space: nowrap;
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-4px);
}

/* Footer */
.footer {
    background: #080f20;
    color: var(--gray-300);
    padding: 64px 0 0;
    border-top: 3px solid #ea580c;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr 1.4fr;
    gap: 40px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 18px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding-bottom: 10px;
    border-bottom: 2px solid #ea580c;
    display: inline-block;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #ea580c;
}

/* Brand column */
.footer-brand-name {
    font-size: 1.9rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
    line-height: 1;
}

.footer-brand-name span {
    color: #ea580c;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 16px;
}

.footer-cert {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #ea580c;
    background: rgba(234,88,12,0.1);
    border: 1px solid rgba(234,88,12,0.25);
    padding: 6px 12px;
    border-radius: 999px;
}

.footer-logo img {
    display: none;
}

.footer-logo p {
    display: none;
}

.contact-info {
    font-size: 0.9rem;
}

.office-label {
    color: rgba(255,255,255,0.35);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    font-weight: 600;
}

.office-address {
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.contact-links {
    margin-top: 8px;
}

.contact-links a {
    display: block;
    color: #ea580c;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-links a:hover {
    color: #f97316;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}

.legal-links {
    display: flex;
    gap: 20px;
    margin-top: 6px;
}

.legal-links a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}

.legal-links a:hover {
    color: #ea580c;
}

.footer-social {
    display: flex;
    gap: 8px;
    align-items: center;
}

.footer-social a {
    color: rgba(255,255,255,0.4);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.footer-social a:hover {
    color: #fff;
    background: #ea580c;
    border-color: #ea580c;
    transform: translateY(-2px);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128c7e;
    color: white;
}

/* Service Tags */
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

/* Market Icon */
.market-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
}

.market-icon svg {
    stroke: white;
}

/* Integration Benefits Section */
.integration-benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.integration-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.integration-content {
    text-align: center;
    color: white;
}

.integration-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 16px;
}

.integration-content > p {
    font-size: 1.125rem;
    color: var(--gray-200);
    margin-bottom: 48px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
    text-align: left;
}

.benefit-item-full {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.benefit-item-full:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
}

.benefit-item-full .benefit-icon {
    min-width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.benefit-item-full .benefit-icon svg {
    stroke: white;
}

.benefit-text h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.benefit-text p {
    color: var(--gray-200);
    font-size: 1rem;
    margin: 0;
}

.integration-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.integration-cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.integration-cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-headline {
        font-size: 2.8rem;
    }
    
    .hero-visual {
        order: -1;
    }
}

@media (min-width: 1025px) {
    .nav-menu {
        display: block;
    }
    
    .nav-toggle {
        display: none;
    }
}

/* Mobile nav — hamburger active state */
@media (max-width: 1024px) {
    .nav-cta {
        gap: 0.5rem;
    }

    .nav-cta .btn-call {
        padding: 0.5rem 0.875rem;
        font-size: 0.85rem;
    }

    .nav-cta .btn-primary {
        padding: 0.5rem 0.875rem;
        font-size: 0.85rem;
    }

    .nav-menu.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 2px solid #ea580c;
        box-shadow: 0 12px 32px rgba(0,0,0,0.15);
        z-index: 999;
    }

    .nav-menu.active .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0;
        text-align: left;
    }

    .nav-menu.active .nav-item {
        border-bottom: 1px solid #f1f5f9;
    }

    .nav-menu.active .nav-item:last-child {
        border-bottom: none;
    }

    .nav-menu.active .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--text-primary);
        border-left: 3px solid transparent;
    }

    .nav-menu.active .nav-link:hover,
    .nav-menu.active .nav-link.active {
        background: #f8fafc;
        color: #ea580c;
        border-left-color: #ea580c;
    }

    /* Arrow icon for dropdowns */
    .nav-menu.active .dropdown > .nav-link::after {
        content: '+';
        font-size: 1.2rem;
        font-weight: 300;
        color: var(--text-secondary);
        line-height: 1;
    }

    .nav-menu.active .dropdown.active > .nav-link::after {
        content: '−';
        color: #ea580c;
    }

    .nav-menu.active .dropdown-content {
        display: none;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8fafc;
        padding: 0.25rem 0;
        border-radius: 0;
        min-width: auto;
        border-top: 1px solid #f1f5f9;
        border-bottom: 1px solid #f1f5f9;
    }

    .nav-menu.active .dropdown.active .dropdown-content {
        display: block;
    }

    .nav-menu.active .dropdown-content a {
        padding: 0.7rem 1.5rem 0.7rem 2.5rem;
        font-size: 0.875rem;
        color: var(--text-secondary);
        border-left: 3px solid transparent;
    }

    .nav-menu.active .dropdown-content a:hover {
        background: #f1f5f9;
        color: #ea580c;
        border-left-color: #ea580c;
    }
}

@media (max-width: 1200px) {
    .features-grid,
    .markets-grid,
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer intermediate — 5 cols → 3 cols on tablets */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 2rem; }
    
    .header-top {
        display: none;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .hero-headline {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .stat-divider {
        display: none;
    }
    
    .floating-badge {
        left: 16px;
        bottom: 16px;
        padding: 12px 16px;
    }
    
    .badge-icon {
        width: 36px;
        height: 36px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid,
    .features-grid,
    .markets-grid,
    .areas-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .service-detailed-card {
        flex-direction: column;
        padding: 24px;
    }
    
    .service-features ul {
        grid-template-columns: 1fr;
    }
    
    .page-hero {
        padding: 40px 0;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .page-hero .hero-stats {
        gap: 24px;
    }
    
    .stat-item .stat-number {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }

    /* CTA section stacks on mobile */
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
    }

    .cta-content-text {
        max-width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0.75rem;
    }

    .cta-buttons a {
        width: 100%;
        text-align: center;
        white-space: nowrap;
    }
    
    .integration-content h2 {
        font-size: 2rem;
    }
    
    .integration-content > p {
        font-size: 1rem;
    }
    
    .integration-cta-buttons {
        flex-direction: column;
    }
    
    .integration-cta-buttons .btn-primary,
    .integration-cta-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .benefit-item-full {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-item-full .benefit-icon {
        margin: 0 auto;
    }
}

/* ====================================================================
   SERVICE PAGE (SP) STYLES — water-solutions.html and other service pages
   Completely distinct layout from the homepage sticky-slides design
   ==================================================================== */

/* Body baseline for service pages */
.sp-page {
    background: #fff;
}

/* Active nav link indicator */
.nav-link.active {
    color: #ea580c;
    font-weight: 700;
}

/* ─── Breadcrumb ─── */
.sp-breadcrumb {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    padding: 12px 0;
    margin-top: 82px; /* below fixed header */
}

.sp-breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    font-size: 0.875rem;
    flex-wrap: wrap;
}

.sp-breadcrumb-list li {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
}

.sp-breadcrumb-list li:not(:last-child)::after {
    content: '›';
    margin: 0 8px;
    color: var(--gray-200);
}

.sp-breadcrumb-list a {
    color: var(--primary-color);
    font-weight: 500;
}

.sp-breadcrumb-list a:hover {
    color: var(--primary-dark);
}

/* ─── Shared section typography tokens ─── */
.sp-section-kicker {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 14px;
    display: block;
}

.sp-kicker-white { color: rgba(255,255,255,0.7); }

.sp-section-title {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary-dark);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.sp-title-white { color: #fff; }

.sp-section-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 680px;
    margin-bottom: 0;
}

.sp-sub-muted { color: rgba(255,255,255,0.75); }

/* ─── HERO ─── */
.sp-hero {
    position: relative;
    padding: 80px 0 72px;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 55%, #0d9488 100%);
    overflow: hidden;
}

.sp-hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 80% 50%, rgba(59,130,246,0.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(13,148,136,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.sp-hero-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.sp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.sp-hero-badge svg { color: var(--accent-color); }

.sp-hero-headline {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
}

.sp-hero-headline span {
    background: linear-gradient(90deg, #38bdf8, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sp-hero-sub {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 560px;
}

.sp-hero-trust {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.sp-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.sp-trust-item svg { color: #34d399; flex-shrink: 0; }

.sp-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.sp-hero-btn-primary {
    background: white;
    color: var(--primary-color);
    padding: 15px 28px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.sp-hero-btn-primary:hover {
    background: var(--gray-50);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

.sp-hero-btn-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: var(--radius);
    transition: var(--transition);
}

.sp-hero-btn-call:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    color: white;
    transform: translateY(-2px);
}

/* Stats Panel */
.sp-hero-stats-panel {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 32px 24px;
    backdrop-filter: blur(16px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.sp-stat-card {
    padding: 20px 16px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.sp-stat-card:hover {
    background: rgba(255,255,255,0.08);
}

.sp-stat-primary {
    grid-column: 1 / -1;
    background: rgba(255,255,255,0.1);
}

.sp-stat-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.sp-stat-primary .sp-stat-num {
    font-size: 2.8rem;
    background: linear-gradient(90deg, #38bdf8, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sp-stat-lbl {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sp-cert-strip {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 12px;
}

.sp-cert-badge {
    font-size: 0.75rem;
    color: #34d399;
    font-weight: 600;
    background: rgba(52,211,153,0.1);
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid rgba(52,211,153,0.2);
}

/* ─── PROBLEM SECTION ─── */
.sp-problem {
    padding: 100px 0;
    background: #fff;
}

.sp-problem > .container > .sp-section-kicker,
.sp-problem > .container > .sp-section-title,
.sp-problem > .container > .sp-section-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.sp-problem > .container > .sp-section-title { margin-bottom: 12px; }
.sp-problem > .container > .sp-section-sub { margin-bottom: 60px; }

.sp-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sp-problem-card {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.sp-problem-card:hover {
    border-color: var(--gray-200);
    box-shadow: 0 12px 32px rgba(0,0,0,0.07);
    transform: translateY(-4px);
}

.sp-problem-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.sp-icon-red    { background: #fef2f2; color: #ef4444; }
.sp-icon-orange { background: #fff7ed; color: #f97316; }
.sp-icon-yellow { background: #fefce8; color: #ca8a04; }
.sp-icon-blue   { background: #eff6ff; color: #3b82f6; }
.sp-icon-purple { background: #faf5ff; color: #9333ea; }

.sp-problem-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.sp-problem-card p {
    font-size: 0.94rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Solution teaser card */
.sp-problem-solution-teaser {
    background: linear-gradient(135deg, var(--primary-color), #0d9488);
    border: none;
    position: relative;
    overflow: hidden;
}

.sp-problem-solution-teaser::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.sp-problem-teaser-inner {
    position: relative;
    z-index: 1;
}

.sp-teaser-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 12px;
    display: block;
}

.sp-problem-solution-teaser h3,
.sp-problem-solution-teaser p {
    color: #fff;
}

.sp-problem-solution-teaser p {
    color: rgba(255,255,255,0.85);
    font-size: 0.94rem;
    margin-bottom: 20px;
}

.sp-teaser-link {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-bottom: 2px solid rgba(255,255,255,0.4);
    padding-bottom: 2px;
    transition: var(--transition);
}

.sp-teaser-link:hover {
    color: #38bdf8;
    border-color: #38bdf8;
}

/* ─── SOLUTION / PROCESS ─── */
.sp-solution {
    padding: 100px 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e3a8a 100%);
    position: relative;
    overflow: hidden;
}

.sp-solution::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.sp-solution-header {
    text-align: center;
    margin-bottom: 72px;
}

.sp-solution-header .sp-section-sub {
    margin: 0 auto;
}

/* Process track */
.sp-process-track {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sp-process-line {
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(56,189,248,0.6), rgba(52,211,153,0.3));
}

.sp-process-step {
    display: flex;
    gap: 32px;
    padding: 36px 0 36px 0;
    position: relative;
}

.sp-process-step + .sp-process-step {
    border-top: 1px solid rgba(255,255,255,0.05);
}

.sp-step-circle {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #0d9488);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(59,130,246,0.2), 0 8px 20px rgba(0,0,0,0.3);
}

.sp-step-body {
    flex: 1;
    padding-top: 8px;
}

.sp-step-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.sp-step-body > p {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
    margin-bottom: 16px;
}

.sp-step-checklist {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 24px;
}

.sp-step-checklist li {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    padding-left: 20px;
    position: relative;
}

.sp-step-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #34d399;
    font-weight: 700;
}

/* ─── SERVICES TABS ─── */
.sp-services {
    padding: 100px 0;
    background: var(--gray-50);
}

.sp-services > .container > .sp-section-kicker,
.sp-services > .container > .sp-section-title,
.sp-services > .container > .sp-section-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.sp-services > .container > .sp-section-sub { margin-bottom: 48px; }

.sp-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 8px;
    margin-bottom: 0;
}

.sp-tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.sp-tab-btn:hover {
    background: var(--gray-50);
    color: var(--primary-color);
}

.sp-tab-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(30,58,138,0.25);
}

.sp-tab-btn svg { flex-shrink: 0; }

.sp-tab-panels {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-top: none;
    border-radius: 0 0 16px 16px;
}

.sp-tab-panel {
    display: none;
    padding: 48px;
}

.sp-tab-panel.active { display: block; }

.sp-tab-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
}

.sp-tab-info h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 14px;
}

.sp-tab-intro {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 28px;
}

.sp-feature-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 32px;
}

.sp-feature-col h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.8rem;
}

.sp-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sp-checklist li {
    font-size: 0.93rem;
    color: var(--text-secondary);
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
}

.sp-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.sp-tab-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sp-link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.sp-link-arrow:hover {
    color: var(--primary-dark);
    gap: 8px;
}

/* Specs panel */
.sp-tab-specs {
    background: var(--gray-50);
    border-radius: 14px;
    padding: 28px;
    border: 1px solid var(--gray-200);
    position: sticky;
    top: 100px;
}

.sp-tab-specs h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.sp-spec-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sp-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    gap: 12px;
}

.sp-spec-row:last-child { border-bottom: none; }

.sp-spec-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.sp-spec-val {
    font-size: 0.875rem;
    color: var(--primary-dark);
    font-weight: 700;
    text-align: right;
}

/* ─── INLINE CTA STRIP ─── */
.sp-mid-cta {
    background: linear-gradient(90deg, #0f172a, #1e3a8a);
    padding: 36px 0;
}

.sp-mid-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.sp-mid-cta-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sp-mid-cta-text strong {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 700;
}

.sp-mid-cta-text span {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.75);
}

.sp-mid-cta-btn {
    background: white;
    color: var(--primary-color);
    white-space: nowrap;
    padding: 14px 28px;
    font-weight: 700;
    flex-shrink: 0;
}

.sp-mid-cta-btn:hover {
    background: var(--gray-50);
    color: var(--primary-dark);
}

/* ─── WHY CHOOSE US ─── */
.sp-why {
    padding: 100px 0;
    background: #fff;
}

.sp-why-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 60px;
}

.sp-why-intro {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.sp-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 60px;
}

.sp-why-card {
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 32px 28px;
    position: relative;
    transition: var(--transition);
    background: #fff;
}

.sp-why-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 16px 40px rgba(30,58,138,0.08);
    transform: translateY(-4px);
}

.sp-why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(13,148,136,0.08));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.sp-why-card:hover .sp-why-icon {
    background: var(--primary-color);
    color: white;
}

.sp-why-card:hover .sp-why-icon svg {
    stroke: white;
}

.sp-why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.sp-why-card p {
    font-size: 0.93rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.sp-why-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(59,130,246,0.08);
    padding: 4px 10px;
    border-radius: 50px;
    display: inline-block;
}

/* Certifications row */
.sp-certs-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 32px;
    background: var(--gray-50);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
}

.sp-cert-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sp-cert-icon {
    width: 52px;
    height: 52px;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.sp-cert-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 2px;
}

.sp-cert-desc {
    font-size: 0.78rem;
    color: var(--text-light);
}

/* ─── SOCIAL PROOF ─── */
.sp-social-proof {
    padding: 100px 0;
    background: var(--gray-50);
}

.sp-social-proof > .container > .sp-section-kicker,
.sp-social-proof > .container > .sp-section-title,
.sp-social-proof > .container > .sp-section-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.sp-social-proof > .container > .sp-section-sub { margin-bottom: 56px; }

.sp-proof-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 36px;
    align-items: start;
}

/* Testimonials */
.sp-testimonials-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sp-testimonial {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.sp-testimonial:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.07);
    transform: translateY(-3px);
}

.sp-t-stars {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.sp-t-text {
    font-size: 0.97rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic;
}

.sp-t-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sp-t-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #0d9488);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.sp-t-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-dark);
}

.sp-t-role {
    font-size: 0.82rem;
    color: var(--text-light);
}

/* Case Study Card */
.sp-case-study-card {
    background: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 36px 32px;
    position: sticky;
    top: 100px;
}

.sp-cs-kicker {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-color);
    background: rgba(59,130,246,0.08);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.sp-cs-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.4;
    margin-bottom: 24px;
}

.sp-cs-challenge,
.sp-cs-solution {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.sp-cs-challenge h4,
.sp-cs-solution h4,
.sp-cs-results h4 {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 10px;
}

.sp-cs-challenge p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

.sp-cs-solution .sp-checklist li {
    font-size: 0.88rem;
}

.sp-cs-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.sp-cs-metric {
    text-align: center;
    background: var(--gray-50);
    border-radius: 10px;
    padding: 14px 8px;
}

.sp-cs-num {
    display: block;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.sp-cs-lbl {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.3;
}

/* ─── MARKETS ─── */
.sp-markets {
    padding: 100px 0;
    background: #fff;
}

.sp-markets > .container > .sp-section-kicker,
.sp-markets > .container > .sp-section-title,
.sp-markets > .container > .sp-section-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.sp-markets > .container > .sp-section-sub { margin-bottom: 56px; }

.sp-markets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.sp-market-card {
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    display: block;
}

.sp-market-card:hover {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 12px 32px rgba(30,58,138,0.1);
    transform: translateY(-6px);
}

.sp-market-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-color), #0d9488);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    transition: var(--transition);
}

.sp-market-card:hover .sp-market-icon {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(30,58,138,0.25);
}

.sp-market-icon svg { stroke: white; }

.sp-market-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.sp-market-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 16px;
}

.sp-market-link {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

/* ─── FAQ ─── */
.sp-faq {
    padding: 100px 0;
    background: var(--gray-50);
}

.sp-faq-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 64px;
    align-items: start;
}

.sp-faq-sidebar {
    position: sticky;
    top: 100px;
}

.sp-faq-sidebar .sp-section-title {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.sp-faq-sidebar > p {
    color: var(--text-secondary);
    font-size: 0.97rem;
    margin-bottom: 28px;
}

.sp-faq-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sp-faq-tel {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.05rem;
}

.sp-faq-tel:hover { color: var(--primary-color); }

.sp-faq-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.sp-faq-wa:hover {
    background: #128c7e;
    color: white;
    transform: translateY(-2px);
}

.sp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sp-faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.sp-faq-question {
    width: 100%;
    text-align: left;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    transition: var(--transition);
}

.sp-faq-question:hover { color: var(--primary-color); }

.sp-faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-light);
}

.sp-faq-item.open .sp-faq-chevron {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.sp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.sp-faq-answer p {
    padding-bottom: 22px;
    font-size: 0.97rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin: 0;
}

/* ─── FINAL CTA ─── */
.sp-final-cta {
    padding: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0d9488 100%);
    position: relative;
    overflow: hidden;
}

.sp-final-cta::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 60%;
    height: 100%;
    background: rgba(255,255,255,0.02);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    pointer-events: none;
}

.sp-final-cta-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    padding: 72px 0;
}

.sp-final-cta-content h2 {
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
}

.sp-final-cta-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 560px;
}

.sp-final-cta-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.sp-final-cta-trust span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    font-weight: 600;
    background: rgba(255,255,255,0.07);
    padding: 5px 12px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.12);
}

.sp-final-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 220px;
}

.sp-final-cta-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: white;
    color: var(--primary-color);
    padding: 16px 28px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.98rem;
    transition: var(--transition);
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.sp-final-cta-primary:hover {
    background: var(--gray-50);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.sp-final-cta-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 14px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    border: 1.5px solid rgba(255,255,255,0.25);
    transition: var(--transition);
    text-align: center;
}

.sp-final-cta-call:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.5);
    color: white;
}

.sp-final-cta-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: white;
    padding: 14px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    text-align: center;
}

.sp-final-cta-wa:hover {
    background: #128c7e;
    color: white;
    transform: translateY(-2px);
}

/* ====================================================================
   SERVICE PAGE — RESPONSIVE
   ==================================================================== */

@media (max-width: 1200px) {
    .sp-hero-inner {
        grid-template-columns: 1fr 320px;
        gap: 40px;
    }

    .sp-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sp-certs-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .sp-proof-layout {
        grid-template-columns: 1fr 340px;
    }
}

@media (max-width: 1024px) {
    .sp-hero-inner {
        grid-template-columns: 1fr;
    }

    .sp-hero-stats-panel {
        grid-template-columns: repeat(4, 1fr);
    }

    .sp-stat-primary {
        grid-column: 1 / -1;
    }

    .sp-cert-strip {
        grid-column: 1 / -1;
    }

    .sp-problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sp-tab-layout {
        grid-template-columns: 1fr;
    }

    .sp-tab-specs {
        position: static;
    }

    .sp-why-header {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sp-proof-layout {
        grid-template-columns: 1fr;
    }

    .sp-case-study-card {
        position: static;
    }

    .sp-faq-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .sp-faq-sidebar {
        position: static;
    }

    .sp-final-cta-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sp-final-cta-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sp-markets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sp-breadcrumb { margin-top: 70px; }

    .sp-hero {
        padding: 60px 0 56px;
    }

    .sp-hero-headline { font-size: 2.2rem; }

    .sp-hero-stats-panel {
        grid-template-columns: 1fr 1fr;
    }

    .sp-stat-primary {
        grid-column: 1 / -1;
    }

    .sp-cert-strip {
        grid-column: 1 / -1;
    }

    .sp-section-title { font-size: 1.9rem; }

    .sp-problem-grid {
        grid-template-columns: 1fr;
    }

    .sp-process-line { display: none; }

    .sp-process-step {
        flex-direction: column;
        gap: 16px;
    }

    .sp-step-checklist {
        grid-template-columns: 1fr;
    }

    .sp-tabs {
        flex-direction: column;
    }

    .sp-tab-panel { padding: 28px 20px; }

    .sp-feature-cols {
        grid-template-columns: 1fr;
    }

    .sp-why-grid {
        grid-template-columns: 1fr;
    }

    .sp-certs-row {
        grid-template-columns: 1fr 1fr;
    }

    .sp-cs-metrics {
        grid-template-columns: 1fr;
    }

    .sp-markets-grid {
        grid-template-columns: 1fr;
    }

    .sp-final-cta-inner { padding: 56px 0; }

    .sp-final-cta-content h2 { font-size: 1.9rem; }

    .sp-final-cta-actions {
        flex-direction: column;
        min-width: unset;
    }

    .sp-mid-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .sp-mid-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .sp-hero-actions {
        flex-direction: column;
    }

    .sp-hero-btn-primary,
    .sp-hero-btn-call {
        width: 100%;
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .header,
    .whatsapp-float,
    .nav-cta,
    .cta-section {
        display: none;
    }
    
    body {
        font-size: 12pt;
    }
    
    .hero {
        padding-top: 0;
    }
}
