        /* ============================================
           UI/UX DESIGN SPECIFIC STYLES
           (Perfectly matches existing services.css)
        ============================================ */

        /* Philosophy Section */
        .philosophy-section {
            padding: 120px 5%;
            background: transparent;
        }

        .philosophy-grid {
            max-width: 1400px;
            margin: 60px auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
        }

        .pillar-card {
            padding: 3rem 2.5rem;
            background: #ffffff;
            border: 1px solid rgba(28, 55, 101, 0.15);
            border-radius: 24px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }

        .pillar-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 60px rgba(91, 141, 238, 0.2);
        }

        .pillar-card:nth-child(1):hover {
            border: 1px solid transparent;
            background: linear-gradient(#ffffff, #ffffff) padding-box,
                        linear-gradient(135deg, #667eea, #764ba2, #ec4899) border-box;
        }

        .pillar-card:nth-child(2):hover {
            border: 1px solid transparent;
            background: linear-gradient(#ffffff, #ffffff) padding-box,
                        linear-gradient(135deg, #f093fb, #f5576c, #fbbf24) border-box;
        }

        .pillar-card:nth-child(3):hover {
            border: 1px solid transparent;
            background: linear-gradient(#ffffff, #ffffff) padding-box,
                        linear-gradient(135deg, #4facfe, #00f2fe, #8b5cf6) border-box;
        }

        .pillar-number {
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .pillar-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 1rem;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .pillar-card:hover h3 {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .pillar-card p {
            font-size: 1.0625rem;
            line-height: 1.8;
            color: var(--gray-text);
            margin-bottom: 1.5rem;
        }

        .pillar-features {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .pillar-features li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 0.75rem 0;
            font-size: 1rem;
            color: var(--dark-text);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .pillar-features li:last-child {
            border-bottom: none;
        }

        .pillar-features li i {
            color: var(--primary-green);
            font-size: 0.875rem;
            margin-top: 0.25rem;
            flex-shrink: 0;
        }

        /* Process Section */
        .process-section {
            padding: 120px 5%;
            background: transparent;
        }

        .process-phases {
            max-width: 1400px;
            margin: 60px auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .process-card {
            padding: 3rem 2.5rem;
            background: #ffffff;
            border: 1px solid rgba(28, 55, 101, 0.15);
            border-radius: 24px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }

        .process-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 60px rgba(91, 141, 238, 0.2);
        }

        .process-card:nth-child(1):hover {
            border: 1px solid transparent;
            background: linear-gradient(#ffffff, #ffffff) padding-box,
                        linear-gradient(135deg, #667eea, #764ba2, #ec4899) border-box;
        }

        .process-card:nth-child(2):hover {
            border: 1px solid transparent;
            background: linear-gradient(#ffffff, #ffffff) padding-box,
                        linear-gradient(135deg, #f093fb, #f5576c, #fbbf24) border-box;
        }

        .process-card:nth-child(3):hover {
            border: 1px solid transparent;
            background: linear-gradient(#ffffff, #ffffff) padding-box,
                        linear-gradient(135deg, #4facfe, #00f2fe, #8b5cf6) border-box;
        }

        .process-card:nth-child(4):hover {
            border: 1px solid transparent;
            background: linear-gradient(#ffffff, #ffffff) padding-box,
                        linear-gradient(135deg, #10b981, #34d399, #6ee7b7) border-box;
        }

        .process-number {
            font-size: 4.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .process-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 1rem;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .process-card:hover h3 {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .process-card p {
            font-size: 1.0625rem;
            line-height: 1.8;
            color: var(--gray-text);
            margin-bottom: 1.5rem;
        }

        .process-features {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .process-features li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 0.75rem 0;
            font-size: 1rem;
            color: var(--dark-text);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .process-features li:last-child {
            border-bottom: none;
        }

        .process-features li i {
            color: var(--primary-green);
            font-size: 0.875rem;
            margin-top: 0.25rem;
            flex-shrink: 0;
        }

        /* Specialties Section */
        .specialties-section {
            padding: 120px 5%;
            background: transparent;
        }

        .specialties-grid {
            max-width: 1400px;
            margin: 60px auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .specialty-card {
            text-align: center;
            padding: 3rem 2.5rem;
            background: #ffffff;
            border: 1px solid rgba(28, 55, 101, 0.15);
            border-radius: 24px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }

        .specialty-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(91, 141, 238, 0.2);
        }

        .specialty-card:nth-child(1):hover {
            border: 1px solid transparent;
            background: linear-gradient(#ffffff, #ffffff) padding-box,
                        linear-gradient(135deg, #667eea, #764ba2, #ec4899) border-box;
        }

        .specialty-card:nth-child(2):hover {
            border: 1px solid transparent;
            background: linear-gradient(#ffffff, #ffffff) padding-box,
                        linear-gradient(135deg, #f093fb, #f5576c, #fbbf24) border-box;
        }

        .specialty-card:nth-child(3):hover {
            border: 1px solid transparent;
            background: linear-gradient(#ffffff, #ffffff) padding-box,
                        linear-gradient(135deg, #4facfe, #00f2fe, #8b5cf6) border-box;
        }

        .specialty-card:nth-child(4):hover {
            border: 1px solid transparent;
            background: linear-gradient(#ffffff, #ffffff) padding-box,
                        linear-gradient(135deg, #10b981, #34d399, #6ee7b7) border-box;
        }

        .specialty-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        }

        .specialty-card:hover .specialty-icon {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
        }

        .specialty-card:nth-child(1) .specialty-icon {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .specialty-card:nth-child(2) .specialty-icon {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .specialty-card:nth-child(3) .specialty-icon {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .specialty-card:nth-child(4) .specialty-icon {
            background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
        }

        .specialty-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--dark-text);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .specialty-card:hover h3 {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .specialty-card p {
            font-size: 1.0625rem;
            line-height: 1.8;
            color: var(--gray-text);
        }

        .specialty-features {
            list-style: none;
            margin: 1.5rem 0 0;
            padding: 0;
            text-align: left;
        }

        .specialty-features li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 0.5rem 0;
            font-size: 0.95rem;
            color: var(--dark-text);
        }

        .specialty-features li i {
            color: var(--primary-green);
            font-size: 0.75rem;
            margin-top: 0.35rem;
            flex-shrink: 0;
        }

        /* Differentiators Section */
        .differentiators-section {
            padding: 120px 5%;
            background: transparent;
        }

        .differentiators-grid {
            max-width: 1400px;
            margin: 60px auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .differentiator-card {
            text-align: center;
            padding: 3rem 2.5rem;
            background: #ffffff;
            border: 1px solid rgba(28, 55, 101, 0.15);
            border-radius: 24px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }

        .differentiator-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(91, 141, 238, 0.2);
        }

        .differentiator-card:nth-child(1):hover {
            border: 1px solid transparent;
            background: linear-gradient(#ffffff, #ffffff) padding-box,
                        linear-gradient(135deg, #667eea, #764ba2, #ec4899) border-box;
        }

        .differentiator-card:nth-child(2):hover {
            border: 1px solid transparent;
            background: linear-gradient(#ffffff, #ffffff) padding-box,
                        linear-gradient(135deg, #f093fb, #f5576c, #fbbf24) border-box;
        }

        .differentiator-card:nth-child(3):hover {
            border: 1px solid transparent;
            background: linear-gradient(#ffffff, #ffffff) padding-box,
                        linear-gradient(135deg, #4facfe, #00f2fe, #8b5cf6) border-box;
        }

        .differentiator-card:nth-child(4):hover {
            border: 1px solid transparent;
            background: linear-gradient(#ffffff, #ffffff) padding-box,
                        linear-gradient(135deg, #10b981, #34d399, #6ee7b7) border-box;
        }

        .differentiator-card:nth-child(5):hover {
            border: 1px solid transparent;
            background: linear-gradient(#ffffff, #ffffff) padding-box,
                        linear-gradient(135deg, #f97316, #fb923c, #fdba74) border-box;
        }

        .differentiator-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        }

        .differentiator-card:hover .differentiator-icon {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
        }

        .differentiator-card:nth-child(1) .differentiator-icon {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .differentiator-card:nth-child(2) .differentiator-icon {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .differentiator-card:nth-child(3) .differentiator-icon {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .differentiator-card:nth-child(4) .differentiator-icon {
            background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
        }

        .differentiator-card:nth-child(5) .differentiator-icon {
            background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
        }

        .differentiator-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--dark-text);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .differentiator-card:hover h3 {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .differentiator-card p {
            font-size: 1.0625rem;
            line-height: 1.8;
            color: var(--gray-text);
        }

        /* Case Study Preview */
        .case-study-preview {
            padding: 120px 5%;
            background: transparent;
        }

        .case-study-container {
            max-width: 1400px;
            margin: 60px auto 0;
            background: linear-gradient(135deg, rgba(28, 55, 101, 0.03), rgba(72, 145, 86, 0.03));
            border-radius: 24px;
            padding: 4rem;
            border: 1px solid rgba(28, 55, 101, 0.1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        }

        .case-study-client {
            margin-bottom: 2rem;
        }

        .case-study-client h3 {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 0.5rem;
        }

        .case-study-challenge,
        .case-study-solution {
            margin-bottom: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .case-study-challenge h3,
        .case-study-solution h3,
        .case-study-results h3 {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 1rem;
        }

        .case-study-challenge p,
        .case-study-solution p {
            font-size: 1.125rem;
            line-height: 1.8;
            color: var(--gray-text);
            max-width: 800px;
        }

        .solution-list {
            list-style: none;
            margin: 1.5rem 0 0;
            padding: 0;
        }

        .solution-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 0.75rem 0;
            font-size: 1.0625rem;
            color: var(--dark-text);
        }

        .solution-list li i {
            color: var(--primary-green);
            font-size: 0.875rem;
            margin-top: 0.4rem;
            flex-shrink: 0;
        }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .result-item {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 16px;
            border: 1px solid rgba(28, 55, 101, 0.1);
            transition: all 0.3s ease;
        }

        .result-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(28, 55, 101, 0.1);
        }

        .result-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .result-label {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--gray-text);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .case-study-cta {
            text-align: center;
            margin-top: 4rem;
        }

        /* Packages Section */
        .packages-section {
            padding: 120px 5%;
            background: transparent;
        }

        .packages-grid {
            max-width: 1400px;
            margin: 60px auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .package-card {
            padding: 3rem 2.5rem;
            background: #ffffff;
            border: 1px solid rgba(28, 55, 101, 0.15);
            border-radius: 24px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }

        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(91, 141, 238, 0.2);
        }

        .package-card:nth-child(1):hover {
            border: 1px solid transparent;
            background: linear-gradient(#ffffff, #ffffff) padding-box,
                        linear-gradient(135deg, #667eea, #764ba2, #ec4899) border-box;
        }

        .package-card:nth-child(2):hover {
            border: 1px solid transparent;
            background: linear-gradient(#ffffff, #ffffff) padding-box,
                        linear-gradient(135deg, #f093fb, #f5576c, #fbbf24) border-box;
        }

        .package-card:nth-child(3):hover {
            border: 1px solid transparent;
            background: linear-gradient(#ffffff, #ffffff) padding-box,
                        linear-gradient(135deg, #4facfe, #00f2fe, #8b5cf6) border-box;
        }

        .package-badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
            color: white;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .package-card h3 {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 0.5rem;
        }

        .package-subtitle {
            font-size: 1rem;
            color: var(--gray-text);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .package-features {
            list-style: none;
            margin: 2rem 0;
            padding: 0;
        }

        .package-features li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 0.75rem 0;
            font-size: 1rem;
            color: var(--dark-text);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .package-features li:last-child {
            border-bottom: none;
        }

        .package-features li i {
            color: var(--primary-green);
            font-size: 0.875rem;
            margin-top: 0.25rem;
            flex-shrink: 0;
        }

        .package-timeline {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            font-size: 0.95rem;
            color: var(--gray-text);
        }

        .package-timeline strong {
            color: var(--dark-text);
        }

        /* Dark theme support */
        body.dark-theme .pillar-card,
        body.dark-theme .process-card,
        body.dark-theme .specialty-card,
        body.dark-theme .differentiator-card,
        body.dark-theme .package-card {
            background: var(--dark-card);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        body.dark-theme .pillar-card:nth-child(1):hover,
        body.dark-theme .process-card:nth-child(1):hover,
        body.dark-theme .specialty-card:nth-child(1):hover,
        body.dark-theme .differentiator-card:nth-child(1):hover,
        body.dark-theme .package-card:nth-child(1):hover {
            background: linear-gradient(var(--dark-card), var(--dark-card)) padding-box,
                        linear-gradient(135deg, #667eea, #764ba2, #ec4899) border-box;
        }

        body.dark-theme .pillar-card:nth-child(2):hover,
        body.dark-theme .process-card:nth-child(2):hover,
        body.dark-theme .specialty-card:nth-child(2):hover,
        body.dark-theme .differentiator-card:nth-child(2):hover,
        body.dark-theme .package-card:nth-child(2):hover {
            background: linear-gradient(var(--dark-card), var(--dark-card)) padding-box,
                        linear-gradient(135deg, #f093fb, #f5576c, #fbbf24) border-box;
        }

        body.dark-theme .pillar-card:nth-child(3):hover,
        body.dark-theme .process-card:nth-child(3):hover,
        body.dark-theme .specialty-card:nth-child(3):hover,
        body.dark-theme .differentiator-card:nth-child(3):hover,
        body.dark-theme .package-card:nth-child(3):hover {
            background: linear-gradient(var(--dark-card), var(--dark-card)) padding-box,
                        linear-gradient(135deg, #4facfe, #00f2fe, #8b5cf6) border-box;
        }

        body.dark-theme .process-card:nth-child(4):hover,
        body.dark-theme .differentiator-card:nth-child(4):hover {
            background: linear-gradient(var(--dark-card), var(--dark-card)) padding-box,
                        linear-gradient(135deg, #10b981, #34d399, #6ee7b7) border-box;
        }

        body.dark-theme .differentiator-card:nth-child(5):hover {
            background: linear-gradient(var(--dark-card), var(--dark-card)) padding-box,
                        linear-gradient(135deg, #f97316, #fb923c, #fdba74) border-box;
        }

        body.dark-theme .pillar-card h3,
        body.dark-theme .process-card h3,
        body.dark-theme .specialty-card h3,
        body.dark-theme .differentiator-card h3,
        body.dark-theme .package-card h3,
        body.dark-theme .case-study-client h3,
        body.dark-theme .case-study-challenge h3,
        body.dark-theme .case-study-solution h3,
        body.dark-theme .case-study-results h3 {
            color: var(--light-text);
        }

        body.dark-theme .pillar-card p,
        body.dark-theme .process-card p,
        body.dark-theme .specialty-card p,
        body.dark-theme .differentiator-card p,
        body.dark-theme .package-subtitle,
        body.dark-theme .case-study-challenge p,
        body.dark-theme .case-study-solution p {
            color: var(--dark-text-light);
        }

        body.dark-theme .pillar-features li,
        body.dark-theme .process-features li,
        body.dark-theme .specialty-features li,
        body.dark-theme .package-features li,
        body.dark-theme .solution-list li {
            color: var(--light-text);
            border-bottom-color: rgba(255, 255, 255, 0.05);
        }

        body.dark-theme .case-study-container {
            background: linear-gradient(135deg, rgba(28, 55, 101, 0.1), rgba(72, 145, 86, 0.1));
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        body.dark-theme .case-study-challenge,
        body.dark-theme .case-study-solution {
            border-bottom-color: rgba(255, 255, 255, 0.1);
        }

        body.dark-theme .result-item {
            background: var(--dark-card);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        body.dark-theme .result-label,
        body.dark-theme .package-timeline {
            color: var(--dark-text-light);
        }

        body.dark-theme .package-timeline strong {
            color: var(--light-text);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .philosophy-grid,
            .process-phases,
            .specialties-grid,
            .differentiators-grid,
            .packages-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 2rem;
            }

            .case-study-container {
                padding: 3rem;
            }
        }

        @media (max-width: 768px) {
            .philosophy-section,
            .process-section,
            .specialties-section,
            .differentiators-section,
            .case-study-preview,
            .packages-section {
                padding: 80px 5%;
            }

            .pillar-card,
            .process-card,
            .specialty-card,
            .differentiator-card,
            .package-card {
                padding: 2.5rem 2rem;
            }

            .pillar-number,
            .process-number {
                font-size: 3.5rem;
            }

            .case-study-container {
                padding: 2rem;
            }

            .results-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .result-item {
                padding: 1.5rem;
            }

            .result-number {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .philosophy-grid,
            .process-phases,
            .specialties-grid,
            .differentiators-grid,
            .packages-grid {
                grid-template-columns: 1fr;
            }

            .pillar-card,
            .process-card,
            .specialty-card,
            .differentiator-card,
            .package-card {
                padding: 2rem 1.5rem;
            }

            .pillar-number,
            .process-number {
                font-size: 3rem;
            }
        }
