
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --color-white: #FFFFFF;
            --color-blue: #1c4592;
            --color-green: #c6d92d;
            --color-text: #1a1a1a;
            --color-text-light: #6b7280;
            --color-border: #e5e7eb;
            --color-bg-light: #f9fafb;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--color-text);
            background: var(--color-white);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }
        
        /* SCROLL PROGRESS BAR */
        #scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 4px;
            background: var(--color-green);
            z-index: 9999;
            transition: width 0.1s ease;
        }
        
        /* HEADER - SHRINKING */
        .header {
            background: transparent;
            border-bottom: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .header.scrolled {
            box-shadow: 0 4px 16px rgba(0,0,0,0.25);
            background: rgba(0, 19, 55, 0.97);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .header.scrolled .nav a {
            color: white;
        }

        .header.scrolled .nav a:hover {
            color: #c6d92d;
        }

        .header.scrolled .menu-toggle {
            color: white;
        }

        .header.scrolled .header-inner {
            padding: 0;
        }

        .header.scrolled .logo img {
            height: 94px;
            filter: brightness(0) invert(1);
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 4rem;
            width: 100%;
        }
        
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.6rem 0;
            transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .logo {
            display: flex;
            align-items: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .logo img {
            height: 94px;
            width: auto;
            display: block;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .nav {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
        }
        
        .nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
            position: relative;
            padding: 0.5rem 0;
        }
        
        .nav a:hover {
            color: var(--color-green);
        }
        
        .nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-green);
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .nav a:hover::after {
            width: 100%;
        }
        
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.75rem;
            cursor: pointer;
            color: white;
            transition: transform 0.3s;
        }
        
        .menu-toggle:hover {
            transform: scale(1.1);
        }
        
        /* HERO - PARALLAX */
        .hero {
            position: relative;
            height: 80vh;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            overflow: hidden;
            margin-top: 0;
        }

        .hero > .container {
            width: 100%;
        }
        
        .hero-bg {
            position: absolute;
            top: -10%;
            left: 0;
            width: 100%;
            height: 120%;
            background: linear-gradient(to bottom, rgba(0, 31, 73, 0.88), rgba(149, 201, 61, 0.25)),
                        url('/assets/img/polje_bckgrnd.png');
            background-size: cover;
            background-position: center;
            z-index: -1;
            will-change: transform;
        }
        
        .hero-content {
            text-align: left;
            color: white;
            max-width: 750px;
            padding: 0;
            animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-family: 'Roboto', sans-serif;
            font-size: 64px;
            font-weight: 700;
            margin-bottom: 1.75rem;
            line-height: 1.1;
            text-shadow: 0 3px 15px rgba(0,0,0,0.3);
            letter-spacing: -0.02em;
        }
        
        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2.75rem;
            opacity: 0.97;
            font-weight: 500;
            line-height: 1.5;
        }
        
        .hero-cta {
            display: flex;
            gap: 1.5rem;
            justify-content: flex-start;
            flex-wrap: wrap;
        }
        
        .btn {
            display: inline-block;
            padding: 1.1rem 2.75rem;
            font-weight: 600;
            border-radius: 0.5rem;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            font-size: 1.05rem;
            position: relative;
            overflow: hidden;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.5s, height 0.5s;
        }
        
        .btn:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .btn-primary {
            background: var(--color-green);
            color: var(--color-text);
            border-color: var(--color-green);
        }
        
        .btn-primary:hover {
            background: #b5c326;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(198, 217, 45, 0.45);
        }
        
        .btn-secondary {
            background: transparent;
            color: white;
            border-color: white;
        }
        
        .btn-secondary:hover {
            background: white;
            color: var(--color-blue);
            transform: translateY(-3px);
        }
        
        /* STATS SECTION */
        .stats-section {
            background: var(--color-blue);
            color: white;
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: -50%;
            width: 200%;
            height: 100%;
            background: radial-gradient(circle, rgba(198, 217, 45, 0.1) 0%, transparent 70%);
            animation: pulse 8s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.3; }
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 3.5rem;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .stat-item {
            animation: fadeInUp 0.8s ease backwards;
        }
        
        .stat-item:nth-child(1) { animation-delay: 0.1s; }
        .stat-item:nth-child(2) { animation-delay: 0.2s; }
        .stat-item:nth-child(3) { animation-delay: 0.3s; }
        .stat-item:nth-child(4) { animation-delay: 0.4s; }
        
        .stat-number {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--color-green);
            margin-bottom: 0.5rem;
            display: block;
            line-height: 1;
        }
        
        .stat-label {
            font-size: 1.125rem;
            opacity: 0.95;
            font-weight: 500;
        }
        
        /* SECTION */
        .section {
            padding: 7rem 0;
        }

        #prednosti {
            padding-top: 3rem;
        }
        
        .section-alt {
            background: var(--color-bg-light);
        }
        
        .section-header {
            text-align: center;
            max-width: 850px;
            margin: 0 auto 5rem;
        }
        
        .section-title {
            font-size: 3rem;
            font-weight: 800;
            color: var(--color-blue);
            margin-bottom: 1.25rem;
            letter-spacing: -0.02em;
        }
        
        .section-subtitle {
            font-size: 1.3rem;
            color: var(--color-text-light);
            line-height: 1.6;
        }
        
        /* FEATURES */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
        }

        .feature-card {
            background: transparent;
            padding: 2.5rem 1.5rem 2rem;
            border-radius: 0;
            text-align: center;
            border: none;
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-6px);
        }

        .feature-badge {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 1.3rem;
            font-weight: 800;
            overflow: hidden;
        }

        .feature-badge img {
            width: 80px;
            height: 80px;
            object-fit: contain;
        }


        .feature-card h3 {
            color: var(--color-blue);
            font-size: 1.2rem;
            margin-bottom: 0.6rem;
            font-weight: 700;
            line-height: 1.3;
        }

        .feature-card p {
            color: var(--color-text-light);
            line-height: 1.6;
            font-size: 0.95rem;
        }
        
        /* O NAS */
        .onas-title {
            color: white !important;
        }

        .onas-section {
            background: linear-gradient(to bottom, #1C4592, #001A4A);
            padding: 5rem 0;
        }

        .onas-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .onas-grid p {
            color: rgba(255, 255, 255, 0.92);
            font-size: 1rem;
            line-height: 1.85;
        }

        .onas-grid strong {
            color: white;
            font-weight: 700;
        }

        /* HOW IT WORKS - NEW GRID LAYOUT */
        .process-section {
            background: linear-gradient(to bottom, #6C8404, #1F3000);
            padding: 7rem 0;
        }

        .process-title {
            color: white !important;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 2.5rem 2rem;
        }

        .process-card {
            text-align: center;
            color: white;
        }

        .process-card:nth-child(-n+2) {
            grid-column: span 3;
        }

        .process-card:nth-child(n+3) {
            grid-column: span 2;
        }

        .process-circle-img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: transparent;
            border: none;
            margin: 0 auto 1.5rem;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .process-circle-img img {
            width: 180px;
            height: 180px;
            object-fit: cover;
        }

        .process-circle-img a {
            display: block;
            cursor: zoom-in;
            transition: opacity 0.25s ease, transform 0.25s ease;
        }

        .process-circle-img a:hover {
            opacity: 0.85;
            transform: scale(1.05);
        }

        .process-card h3 {
            color: #c6d92d;
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            line-height: 1.3;
        }

        .process-card p {
            color: rgba(255, 255, 255, 0.88);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* TESTIMONIALS */
        #reference {
            padding-top: 3rem;
            background: #1C45921A;
        }

        /* LOGO SLIDER */
        .logo-slider-wrap {
            padding: 2.5rem 0 1.5rem;
            margin-bottom: 2.5rem;
        }

        #logo-pages {
            position: relative;
            height: 75px;
            overflow: hidden;
        }

        .logo-page {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2.5rem;
            flex-wrap: nowrap;
            transform: translateX(100%);
            pointer-events: none;
            transition: transform 0.8s ease;
        }

        .logo-page.active {
            transform: translateX(0);
            pointer-events: auto;
        }

        .logo-page.prev {
            transform: translateX(-100%);
        }

        .logo-page img {
            width: 155px;
            height: 75px;
            object-fit: contain;
            object-position: center;
            padding: 10px 14px;
            background: white;
            border-radius: 0.6rem;
            box-shadow: 0 1px 6px rgba(0,0,0,0.08);
            filter: grayscale(100%);
            opacity: 0.65;
            transition: opacity 0.25s, filter 0.25s, box-shadow 0.25s;
        }

        .logo-page img:hover {
            filter: grayscale(0%);
            opacity: 1;
            box-shadow: 0 4px 16px rgba(0,0,0,0.13);
        }

        .logo-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1.5rem;
        }

        .logo-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #9ca3af;
            border: none;
            cursor: pointer;
            padding: 0;
            transition: background 0.2s;
        }

        .logo-dot.active {
            background: var(--color-blue);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .testimonial-card {
            background: white;
            padding: 1.5rem;
            border-radius: 1rem;
            border: 1px solid var(--color-border);
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 0.9rem;
            margin-bottom: 1rem;
        }

        .testimonial-avatar {
            width: 62px;
            height: 62px;
            border-radius: 50%;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            overflow: hidden;
        }

        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border: none;
            outline: none;
            display: block;
        }

        .avatar-tadej {
            transform: rotate(-20deg) scale(1.2);
        }

        .testimonial-identity h4 {
            color: var(--color-blue);
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 0.15rem;
        }

        .testimonial-meta {
            color: var(--color-text-light);
            font-size: 13px;
        }

        .testimonial-content {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            color: var(--color-text);
            line-height: 1.65;
            flex: 1;
            margin-bottom: 1rem;
        }

        .testimonial-summary {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: var(--color-text);
            border-top: 2px solid var(--color-green);
            padding-top: 0.75rem;
            margin-top: auto;
        }
        
        /* FAQ SECTION */
        .faq-section {
            padding: 7rem 0;
            background: white;
        }

        .faq-list {
            max-width: 860px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid var(--color-border);
        }

        .faq-item:first-child {
            border-top: 1px solid var(--color-border);
        }

        .faq-question {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 0;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            gap: 1.5rem;
            font-family: 'Inter', sans-serif;
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--color-blue);
            transition: color 0.2s;
        }

        .faq-question:hover {
            color: #2557b8;
        }

        .faq-chevron {
            flex-shrink: 0;
            transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            color: var(--color-green);
        }

        .faq-item.open .faq-chevron {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-answer p {
            padding-bottom: 1.5rem;
            color: var(--color-text-light);
            line-height: 1.75;
            font-size: 0.98rem;
        }

        .faq-item.open .faq-answer {
            max-height: 500px;
        }

        /* CTA SECTION */
        .cta-section {
            background: linear-gradient(135deg, var(--color-blue), #2557b8);
            color: white;
            padding: 7rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(198, 217, 45, 0.15) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .cta-section > div {
            position: relative;
            z-index: 2;
        }
        
        .cta-section h2 {
            font-size: 3.5rem;
            margin-bottom: 1.75rem;
            font-weight: 800;
            letter-spacing: -0.02em;
        }
        
        .cta-section p {
            font-size: 1.5rem;
            margin-bottom: 3rem;
            opacity: 0.97;
        }
        
        /* CONTACT FORM */
        .contact-section {
            padding: 7rem 0;
        }

        .contact-form-grid {
            max-width: 960px;
            margin: 0 auto;
        }

        .contact-cols {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }

        .contact-left,
        .contact-right {
            display: flex;
            flex-direction: column;
        }

        .form-label-interest {
            display: block;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--color-text);
            margin-bottom: 0.75rem;
        }

        .contact-checkboxes {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 1.25rem;
            margin-bottom: 0.25rem;
        }

        .checkbox-label {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.95rem;
            color: var(--color-text);
            cursor: pointer;
            white-space: nowrap;
        }

        .checkbox-label input[type="checkbox"] {
            width: 16px;
            height: 16px;
            accent-color: var(--color-blue);
            cursor: pointer;
        }

        .btn-contact-submit {
            width: 100%;
            padding: 1rem;
            background: var(--color-green);
            color: var(--color-text);
            border: none;
            border-radius: 0.5rem;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 800;
            letter-spacing: 0.05em;
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
        }

        .btn-contact-submit:hover {
            background: #b5c326;
            transform: translateY(-2px);
        }
        
        .form-group {
            margin-bottom: 1.75rem;
        }
        
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.65rem;
            color: var(--color-text);
            font-size: 0.95rem;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--color-border);
            border-radius: 0.6rem;
            font-family: inherit;
            font-size: 1rem;
            transition: all 0.3s;
            background: white;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--color-blue);
            box-shadow: 0 0 0 3px rgba(28, 69, 146, 0.1);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }
        
        .form-required {
            color: #e53e3e;
        }
        
        .form-status {
            padding: 1.25rem;
            border-radius: 0.6rem;
            margin-top: 1.25rem;
            display: none;
            font-weight: 500;
        }
        
        .form-status.success {
            background: #d1fae5;
            color: #065f46;
            border: 1px solid #6ee7b7;
            display: block;
        }
        
        .form-status.error {
            background: #fee2e2;
            color: #991b1b;
            border: 1px solid #fca5a5;
            display: block;
        }
        
        /* ===== SCROLL TO TOP ===== */
        .scroll-top-btn {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 999;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--color-blue);
            color: white;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 16px rgba(0,0,0,0.25);
            opacity: 0;
            pointer-events: none;
            transform: translateY(12px);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .scroll-top-btn.visible {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }

        .scroll-top-btn:hover {
            background: #2557b8;
        }

        /* FOOTER */
        .footer {
            background: #001337;
            color: white;
            padding: 1.75rem 0 0;
        }

        .footer-bar {
            display: flex;
            align-items: center;
            gap: 2.5rem;
            flex-wrap: wrap;
            padding-bottom: 1.5rem;
        }

        .footer-name {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.9);
        }

        .footer-name strong {
            color: white;
            font-weight: 700;
        }

        .footer-link {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s;
        }

        .footer-link:hover {
            color: var(--color-green);
        }

        .footer-social {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            margin-left: auto;
        }

        .footer-follow {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.8);
            margin-right: 0.25rem;
        }

        .footer-icons {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            align-items: center;
            gap: 0.5rem;
            flex-shrink: 0;
        }

        .footer-social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: rgba(255,255,255,0.12);
            border-radius: 8px;
            color: white;
            text-decoration: none;
            transition: background 0.2s;
        }

        .footer-social-icon:hover {
            background: rgba(255,255,255,0.25);
        }

        .footer-bottom {
            text-align: center;
            padding: 1rem 0;
            border-top: 1px solid rgba(255,255,255,0.12);
            font-size: 0.85rem;
            color: rgba(255,255,255,0.5);
        }
        
        /* ANIMATIONS */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), 
                        transform 1s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* RESPONSIVE */
        @media (max-width: 968px) {
            .onas-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .process-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-card:nth-child(-n+2),
            .process-card:nth-child(n+3) {
                grid-column: span 1;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero h1 {
                font-size: 2.75rem;
            }
            
            .hero p {
                font-size: 1.25rem;
            }
            
            .section-title {
                font-size: 2.25rem;
            }
            
            .process-step {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .process-step:nth-child(even) .process-content,
            .process-step:nth-child(even) .process-image {
                order: 0;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-image {
                height: 350px;
                min-height: 350px;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            #logo-pages {
                height: 58px;
            }

            .logo-page {
                gap: 0.6rem;
            }

            .logo-page img {
                width: 85px;
                height: 58px;
                padding: 7px 10px;
            }

            .container {
                padding: 0 1.25rem;
            }
            
            .nav {
                display: flex;
                flex-direction: column;
                max-height: 0;
                overflow: hidden;
                position: fixed;
                top: 85px;
                right: 0;
                left: 33.33%;
                z-index: 999;
                background: rgba(0, 19, 55, 0.95);
                backdrop-filter: blur(12px);
                -webkit-backdrop-filter: blur(12px);
                padding: 0 2.5rem;
                box-shadow: -4px 8px 32px rgba(0, 0, 0, 0.35);
                gap: 2rem;
                border-radius: 1rem 0 0 1rem;
                transition: max-height 0.35s ease, padding 0.35s ease;
            }

            .nav a {
                color: rgba(255, 255, 255, 0.9);
            }

            .nav a:hover {
                color: var(--color-green);
            }
            
            .nav.active {
                max-height: 400px;
                padding: 2.5rem;
            }
            
            .menu-toggle {
                display: block;
                margin-left: auto;
            }
            
            .logo img {
                height: 75px;
            }

            .header.scrolled .logo img {
                height: 75px;
            }
            
            .hero {
                margin-top: 0;
                height: 85vh;
                min-height: 550px;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1.05rem;
            }
            
            .hero-cta {
                flex-direction: column;
                gap: 1.25rem;
            }
            
            .btn {
                width: 100%;
                text-align: center;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            
            .section {
                padding: 4.5rem 0;
            }
            
            .section-header {
                margin-bottom: 3.5rem;
            }
            
            .features-grid,
            .services-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .partners-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
            
            .cta-section h2 {
                font-size: 2.25rem;
            }
            
            .cta-section p {
                font-size: 1.15rem;
            }
            
            .process-image img {
                height: 320px;
            }

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

            .process-circle-img,
            .process-circle-img img {
                width: 140px;
                height: 140px;
            }

            .contact-cols {
                grid-template-columns: 1fr;
                gap: 0;
            }
        }
    
