/* Digital Solutions page. Self-contained retheme of the original
   indigo/pink/cyan design onto the Woven Trinity palette (azure / gold /
   terracotta / plum). Loaded only on this page via @push(styles). */

        :root {
            --ds-primary: #1E7FC2;
            --ds-secondary: #E3A522;
            --ds-accent: #C63D2E;
            --ds-dark: #2A2035;
            --ds-darker: #1a1420;
            --ds-light: #f8fafc;
            --ds-border: rgba(255, 255, 255, 0.1);
            --ds-glass-bg: rgba(255, 255, 255, 0.05);
        }

        body {
        }

        /* Typography Utilities */
        .text-gradient {
            background: linear-gradient(135deg, var(--ds-primary), var(--ds-secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .text-gradient-light {
            background: linear-gradient(135deg, #e2e8f0, #94a3b8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Layout & Components */
        .ds-section {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        @media (max-width: 768px) {
            .ds-section {
                padding: 60px 0;
            }
        }

        /* Hero Section - Mesh Gradient & Glow */
        .ds-hero {
            background-color: var(--ds-darker);
            background-image:
                radial-gradient(at 0% 0%, rgba(30, 127, 194, 0.15) 0px, transparent 50%),
                radial-gradient(at 100% 0%, rgba(227, 165, 34, 0.15) 0px, transparent 50%),
                radial-gradient(at 100% 100%, rgba(198, 61, 46, 0.15) 0px, transparent 50%);
            color: white;
            padding: 140px 0 100px;
            text-align: center;
            position: relative;
        }

        .ds-hero h1 {
            font-weight: 800;
            font-size: 3.5rem;
            line-height: 1.15;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }

        .ds-hero p.lead {
            font-size: 1.25rem;
            max-width: 750px;
            margin: 0 auto 40px;
            color: #94a3b8;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .ds-hero h1 {
                font-size: 2.2rem;
            }

            .ds-hero {
                padding: 80px 0 60px;
            }
        }

        /* Glass Trust Bar */
        .trust-bar {
            background: var(--ds-glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--ds-border);
            padding: 15px 30px;
            border-radius: 100px;
            display: inline-flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 20px;
            font-size: 0.95rem;
            font-weight: 500;
            margin-bottom: 40px;
            color: #cbd5e1;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        @media (max-width: 768px) {
            .trust-bar {
                border-radius: 16px;
                flex-direction: column;
                gap: 10px;
                padding: 20px;
                width: 100%;
                max-width: 320px;
            }

            .trust-bar span.separator {
                display: none;
            }
        }

        /* Modern Pricing Snapshot Badges */
        .ds-pricing-snapshot {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .snapshot-badge {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 12px 24px;
            border-radius: 12px;
            font-weight: 600;
            color: #f1f5f9;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .snapshot-badge:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-2px);
            border-color: rgba(255, 255, 255, 0.2);
        }

        /* Buttons */
        .btn-gradient {
            background: linear-gradient(135deg, var(--ds-primary), var(--ds-secondary));
            color: white !important;
            border: none;
            transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
        }

        .btn-gradient:hover {
            color: white !important;
            opacity: 0.9;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px -5px rgba(227, 165, 34, 0.4);
        }

        .btn-glass {
            background: rgba(255, 255, 255, 0.1) !important;
            color: #ffffff !important;
            border: 1px solid rgba(255, 255, 255, 0.3) !important;
            backdrop-filter: blur(10px);
            transition: all 0.3s;
        }

        .btn-glass:hover {
            background: rgba(255, 255, 255, 0.2) !important;
            color: #ffffff !important;
            transform: translateY(-2px);
            border-color: rgba(255, 255, 255, 0.6) !important;
        }

        /* Tech Logos */
        .bg-tech {
            background-color: var(--ds-light);
            position: relative;
        }

        .bg-tech::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(rgba(30, 127, 194, 0.05) 2px, transparent 2px);
            background-size: 30px 30px;
            opacity: 0.5;
        }

        .tech-item {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            width: 130px;
            text-align: center;
            margin-bottom: 25px;
            padding: 25px 15px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
            border: 1px solid rgba(0, 0, 0, 0.02);
            position: relative;
            z-index: 1;
        }

        .tech-item i {
            transition: all 0.4s ease;
            color: #94a3b8;
            font-size: 3.5rem;
        }

        .tech-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 30px rgba(30, 127, 194, 0.1);
            border-color: rgba(30, 127, 194, 0.1);
        }

        .tech-item:hover i {
            color: var(--ds-primary) !important;
            transform: scale(1.15);
        }

        .tech-item span {
            display: block;
            margin-top: 15px;
            font-size: 0.95rem;
            font-weight: 700;
            color: #334155;
        }

        /* Service Cards - Modern Glass & Glow */
        .bg-services {
            background-color: white;
        }

        .service-card {
            background: #ffffff;
            padding: 40px 30px;
            border-radius: 24px;
            height: 100%;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            border: 1px solid #f1f5f9;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--ds-primary), var(--ds-accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
            border-color: transparent;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card h3 {
            font-size: 1.4rem;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--ds-dark);
        }

        .service-card p {
            font-size: 1.05rem;
            color: #64748b;
            line-height: 1.6;
            margin: 0;
        }

        /* Why Us Cards */
        .bg-why {
            background-color: var(--ds-dark);
            color: white;
        }

        .why-card {
            text-align: left;
            padding: 30px 25px;
            height: 100%;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 24px;
            transition: all 0.3s;
            backdrop-filter: blur(10px);
        }

        .why-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.1);
        }

        .why-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(30, 127, 194, 0.2), rgba(227, 165, 34, 0.2));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 25px;
        }

        .why-card h4 {
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .why-card p {
            color: #94a3b8;
            font-size: 1.05rem;
            line-height: 1.6;
            margin: 0;
        }

        /* Pricing Cards */
        .bg-pricing {
            background-color: var(--ds-light);
        }

        .pricing-card {
            background: white;
            padding: 50px 40px;
            border-radius: 24px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
            transition: all 0.4s ease;
            position: relative;
            height: 100%;
            border: 1px solid #f1f5f9;
            display: flex;
            flex-direction: column;
        }

        .pricing-card.popular {
            border-color: var(--ds-primary);
            box-shadow: 0 20px 40px rgba(30, 127, 194, 0.15);
            transform: scale(1.03);
            z-index: 2;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
        }

        .pricing-card.popular:hover {
            transform: scale(1.03) translateY(-10px);
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--ds-dark);
        }

        .pricing-card .price {
            font-size: 3rem;
            font-weight: 800;
            color: var(--ds-primary);
            margin: 25px 0;
            display: flex;
            align-items: baseline;
            justify-content: center;
        }

        .pricing-card .price span {
            font-size: 1.2rem;
            color: #94a3b8;
            font-weight: 500;
            margin-left: 5px;
        }

        .pricing-list {
            list-style: none;
            padding: 0;
            margin-bottom: 40px;
            text-align: left;
        }

        .pricing-list li {
            margin-bottom: 16px;
            color: #475569;
            display: flex;
            align-items: center;
            font-weight: 500;
        }

        .pricing-list li svg {
            color: #10b981;
            margin-right: 12px;
            flex-shrink: 0;
            width: 20px;
            height: 20px;
        }

        /* Process Timeline */
        .timeline-wrapper {
            position: relative;
            padding: 40px 0;
            max-width: 1000px;
            margin: 0 auto;
        }

        .timeline-wrapper::before {
            content: '';
            position: absolute;
            top: 75px;
            left: 8%;
            right: 8%;
            height: 3px;
            background: linear-gradient(90deg, rgba(30, 127, 194, 0.2), rgba(227, 165, 34, 0.2));
            z-index: 1;
            display: none;
        }

        @media (min-width: 768px) {
            .timeline-wrapper::before {
                display: block;
            }
        }

        .timeline-step {
            text-align: center;
            position: relative;
            z-index: 2;
            padding: 10px;
        }

        .timeline-circle {
            width: 70px;
            height: 70px;
            background: white;
            border: 3px solid white;
            color: var(--ds-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-weight: 800;
            font-size: 1.5rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
        }

        .timeline-circle::before {
            content: '';
            position: absolute;
            inset: -6px;
            border-radius: 50%;
            border: 2px dashed rgba(30, 127, 194, 0.3);
            opacity: 0;
            transition: all 0.4s;
        }

        .timeline-step:hover .timeline-circle {
            background: linear-gradient(135deg, var(--ds-primary), var(--ds-accent));
            color: white;
            transform: scale(1.1);
            box-shadow: 0 15px 30px rgba(30, 127, 194, 0.3);
        }

        .timeline-step:hover .timeline-circle::before {
            opacity: 1;
            transform: rotate(45deg);
        }

        .timeline-step h5 {
            font-weight: 700;
            color: var(--ds-dark);
            font-size: 1.1rem;
        }

        /* Contact Block */
        .bg-contact {
            background-color: var(--ds-darker);
            position: relative;
            padding: 120px 0;
        }

        .bg-contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 80% 20%, rgba(30, 127, 194, 0.15) 0%, transparent 40%), radial-gradient(circle at 20% 80%, rgba(227, 165, 34, 0.1) 0%, transparent 40%);
            z-index: 0;
        }

        .contact-container {
            position: relative;
            z-index: 1;
        }

        .contact-form-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }

        .form-control-modern {
            background: rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 12px;
            padding: 16px 20px;
            transition: all 0.3s;
        }

        .form-control-modern::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .form-control-modern:focus {
            background: rgba(0, 0, 0, 0.3);
            border-color: var(--ds-primary);
            color: white;
            box-shadow: 0 0 0 4px rgba(30, 127, 194, 0.15);
        }

        /* Social Proof Card */
        .proof-card {
            background: white;
            padding: 30px 20px;
            border-radius: 24px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
            transition: transform 0.3s;
            text-align: center;
            height: 100%;
            border: 1px solid #f1f5f9;
        }

        .proof-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        }

        /* Floating Utilities */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25d366;
            color: white;
            width: 65px;
            height: 65px;
            border-radius: 50%;
            text-align: center;
            font-size: 32px;
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: transform 0.3s;
        }

        .whatsapp-float:hover {
            transform: scale(1.1) rotate(5deg);
            color: white;
        }

        .sticky-cta {
            position: fixed;
            top: 120px;
            right: 0;
            background: linear-gradient(135deg, var(--ds-primary), var(--ds-secondary));
            color: white;
            padding: 12px 24px;
            border-radius: 30px 0 0 30px;
            font-weight: 700;
            text-decoration: none;
            box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.15);
            z-index: 999;
            transition: all 0.3s;
            font-size: 0.95rem;
        }

        .sticky-cta:hover {
            padding-right: 30px;
            color: white;
        }

        .section-title {
            font-weight: 800;
            font-size: 2.5rem;
            color: var(--ds-dark);
            margin-bottom: 20px;
        }

        .section-subtitle {
            font-size: 1.15rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
