/* ============================================
   ECPSOLUTIONS INC. - Premium Landing Page
   Ultra Modern Dark Theme
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   AI Background
   ============================================ */
.ai-background {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: orbFloat 20s ease-in-out infinite;
}

.gradient-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.gradient-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation-delay: -7s;
}

.gradient-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 30px) scale(1.02); }
}

.particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(168, 85, 247, 0.6);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

.neural-network {
    position: absolute;
    inset: 0;
    opacity: 0.15;
}

/* ============================================
   Main Content
   ============================================ */
main {
    position: relative;
    z-index: 1;
    padding-top: 80px;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 4rem;
    max-width: 1600px;
    margin: 0 auto;
}

.hero-content {
    max-width: 700px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem 0.5rem 0.75rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #a855f7;
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(168, 85, 247, 0); }
}

/* Hero Title */
.hero-title {
    font-family: 'Outfit', sans-serif;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
}

.title-brand {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.brand-text {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #e0e7ff 25%,
        #a855f7 50%,
        #6366f1 75%,
        #ffffff 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.title-brand .brand-inc {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #a855f7;
    padding: 0.375rem 0.875rem;
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 6px;
    background: rgba(168, 85, 247, 0.1);
}

/* Hero Description */
.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
    max-width: 560px;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    color: #ffffff;
    border: none;
    box-shadow: 
        0 4px 20px rgba(139, 92, 246, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 40px rgba(139, 92, 246, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.btn-primary i {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-3px);
}

.btn-secondary i {
    width: 18px;
    height: 18px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(168, 85, 247, 0.3), transparent);
}

/* ============================================
   Hero Visual - 3D Rotating Cubes
   ============================================ */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    perspective: 1000px;
}

.cubes-container {
    position: relative;
    width: 500px;
    height: 650px;
}

/* Cube Wrapper */
.cube-wrapper {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cube-wrapper-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.cube-wrapper-2 {
    top: 260px;
    left: 0;
}

.cube-wrapper-3 {
    top: 260px;
    right: 0;
}

/* Cube Glow Effect */
.cube-glow {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.4;
    pointer-events: none;
    z-index: -1;
}

.cube-wrapper-1 .cube-glow {
    background: rgba(168, 85, 247, 0.5);
}

.cube-wrapper-2 .cube-glow {
    background: rgba(99, 102, 241, 0.5);
}

.cube-wrapper-3 .cube-glow {
    background: rgba(59, 130, 246, 0.5);
}

/* 3D Cube */
.cube {
    width: 140px;
    height: 140px;
    position: relative;
    transform-style: preserve-3d;
}

.cube-1 {
    animation: rotateCube1 20s linear infinite;
}

.cube-2 {
    animation: rotateCube2 25s linear infinite;
}

.cube-3 {
    animation: rotateCube3 22s linear infinite;
}

@keyframes rotateCube1 {
    0%   { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
    25%  { transform: rotateX(90deg) rotateY(90deg) rotateZ(0deg); }
    50%  { transform: rotateX(180deg) rotateY(180deg) rotateZ(90deg); }
    75%  { transform: rotateX(270deg) rotateY(270deg) rotateZ(180deg); }
    100% { transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg); }
}

@keyframes rotateCube2 {
    0%   { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
    25%  { transform: rotateX(-90deg) rotateY(90deg) rotateZ(45deg); }
    50%  { transform: rotateX(-180deg) rotateY(180deg) rotateZ(90deg); }
    75%  { transform: rotateX(-270deg) rotateY(270deg) rotateZ(135deg); }
    100% { transform: rotateX(-360deg) rotateY(360deg) rotateZ(180deg); }
}

@keyframes rotateCube3 {
    0%   { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
    25%  { transform: rotateX(45deg) rotateY(-90deg) rotateZ(90deg); }
    50%  { transform: rotateX(90deg) rotateY(-180deg) rotateZ(180deg); }
    75%  { transform: rotateX(135deg) rotateY(-270deg) rotateZ(270deg); }
    100% { transform: rotateX(180deg) rotateY(-360deg) rotateZ(360deg); }
}

/* Cube Faces */
.cube-face {
    position: absolute;
    width: 140px;
    height: 140px;
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    backface-visibility: visible;
}

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

/* Face Positions */
.cube-front  { transform: translateZ(70px); }
.cube-back   { transform: rotateY(180deg) translateZ(70px); }
.cube-right  { transform: rotateY(90deg) translateZ(70px); }
.cube-left   { transform: rotateY(-90deg) translateZ(70px); }
.cube-top    { transform: rotateX(90deg) translateZ(70px); }
.cube-bottom { transform: rotateX(-90deg) translateZ(70px); }

/* Different gradient backgrounds for each cube */
.cube-1 .cube-face {
    background: linear-gradient(135deg, #1a1025 0%, #2d1f3d 100%);
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: inset 0 0 20px rgba(168, 85, 247, 0.2);
}

.cube-2 .cube-face {
    background: linear-gradient(135deg, #141428 0%, #1e1e3f 100%);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: inset 0 0 20px rgba(99, 102, 241, 0.2);
}

.cube-3 .cube-face {
    background: linear-gradient(135deg, #0f1a2e 0%, #152238 100%);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: inset 0 0 20px rgba(59, 130, 246, 0.2);
}

/* Cube Label */
.cube-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.4rem 0.8rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    white-space: nowrap;
    margin-top: 4rem;
}

/* Hover Effects */
.cube-wrapper:hover .cube {
    animation-play-state: paused;
}

.cube-wrapper:hover .cube-label {
    color: #fff;
    border-color: rgba(168, 85, 247, 0.5);
}

/* ============================================
   Services Overview Section
   ============================================ */
.services-overview {
    padding: 8rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #a855f7;
    padding: 0.5rem 1rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    position: relative;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(168, 85, 247, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .card-glow {
    opacity: 1;
}

.card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(168, 85, 247, 0.2));
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.card-icon i {
    width: 28px;
    height: 28px;
    color: #a855f7;
}

.service-card:hover .card-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.3);
}

.service-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.service-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #a855f7;
    transition: gap 0.3s ease;
}

.card-link i {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.service-card:hover .card-link {
    gap: 0.75rem;
}

.service-card:hover .card-link i {
    transform: translate(2px, -2px);
}

/* ============================================
   Trust Banner
   ============================================ */
.trust-banner {
    padding: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.logo-placeholder {
    width: 120px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    opacity: 0.5;
}

/* ============================================
   Video Modal - Innovative Design
   ============================================ */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 1000px;
    transform: scale(0.8) translateY(50px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal.active .modal-container {
    transform: scale(1) translateY(0);
}

/* Modal Glow Effects */
.modal-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.video-modal.active .modal-glow {
    opacity: 1;
}

.modal-glow-1 {
    width: 400px;
    height: 400px;
    background: rgba(168, 85, 247, 0.4);
    top: -150px;
    left: -100px;
    animation: modalGlow1 6s ease-in-out infinite;
}

.modal-glow-2 {
    width: 350px;
    height: 350px;
    background: rgba(59, 130, 246, 0.3);
    bottom: -100px;
    right: -80px;
    animation: modalGlow2 6s ease-in-out infinite;
    animation-delay: -3s;
}

@keyframes modalGlow1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 20px) scale(1.1); }
}

@keyframes modalGlow2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -30px) scale(1.15); }
}

/* Modal Content */
.modal-content {
    position: relative;
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.95), rgba(10, 10, 20, 0.98));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(168, 85, 247, 0.1),
        inset 0 0 60px rgba(168, 85, 247, 0.03);
}

/* Close Button */
.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
    color: #ef4444;
    transform: rotate(90deg);
}

.modal-close i {
    width: 20px;
    height: 20px;
}

/* Modal Header */
.modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-badge {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #a855f7;
    padding: 0.5rem 1rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 100px;
    margin-bottom: 1rem;
}

.modal-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Video Wrapper */
.video-wrapper {
    position: relative;
}

.video-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}

.video-border {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.5), rgba(99, 102, 241, 0.3), rgba(59, 130, 246, 0.5)) border-box;
    -webkit-mask: 
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

.video-frame video {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    background: #0a0a0f;
}

/* Custom Video Controls Styling */
.video-frame video::-webkit-media-controls-panel {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent);
}

/* Modal Footer */
.modal-footer {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.video-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.control-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.control-hint i {
    width: 14px;
    height: 14px;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1200px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 4rem 2rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .brand-text {
        font-size: 2.5rem;
    }

    .title-brand {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-overview {
        padding: 4rem 1.5rem;
    }

    .trust-logos {
        gap: 2rem;
    }
}
