:root { --primary-dark: #0a1830; --secondary-dark: #071224; --accent-orange: #E17A0E; --accent-hover: #F29124; --text-light: #ffffff; --text-muted: #9dabbd; --text-muted-dark: #4b5d73; --bg-light: #f5f8fc; --bg-light-alternative: #ebf1f8; --font-heading: 'Playfair Display', serif; --font-body: 'Plus Jakarta Sans', sans-serif; --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08); --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.15); } * { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: var(--font-body); background-color: var(--primary-dark); color: var(--text-light); line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; } .container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; } a { color: inherit; text-decoration: none; transition: var(--transition-smooth); } header.navbar-sticky { position: fixed; top: 0; left: 0; right: 0; height: 90px; background-color: rgba(10, 24, 48, 0.95); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); display: flex; align-items: center; z-index: 1000; border-bottom: 1px solid rgba(255, 255, 255, 0.08); transition: var(--transition-smooth); } .nav-container { display: flex; align-items: center; justify-content: space-between; position: relative; } .logo-svg { display: block; } .nav-menu { display: flex; align-items: center; gap: 32px; } .nav-link { font-size: 15px; font-weight: 500; color: var(--text-muted); position: relative; padding: 6px 0; } .nav-link:hover, .nav-link.active { color: var(--text-light); } .nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: var(--accent-orange); transition: var(--transition-smooth); } .nav-link:hover::after, .nav-link.active::after { width: 100%; } .nav-cta-btn { background-color: var(--accent-orange); color: var(--text-light); font-weight: 600; font-size: 14px; padding: 12px 24px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.5px; transition: var(--transition-smooth); } .nav-cta-btn:hover { background-color: var(--accent-hover); transform: translateY(-1px); } .burger-btn { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; z-index: 1100; } .burger-line { display: block; width: 28px; height: 2px; background-color: var(--text-light); transition: var(--transition-smooth); } .hero-section { min-height: 100vh; padding: 160px 0 100px 0; background-size: cover; background-position: center; display: flex; align-items: center; position: relative; } .hero-content { max-width: 800px; text-align: left; } .badge-top { display: inline-block; font-size: 12px; font-weight: 700; background-color: var(--accent-orange); color: var(--text-light); padding: 6px 14px; border-radius: 2px; margin-bottom: 24px; letter-spacing: 1.5px; text-transform: uppercase; } .hero-content h1 { font-family: var(--font-heading); font-size: clamp(40px, 6vw, 68px); line-height: 1.1; font-weight: 800; color: var(--text-light); margin-bottom: 24px; letter-spacing: -1px; } .hero-content p { font-size: clamp(16px, 2.2vw, 19px); color: var(--text-muted); margin-bottom: 40px; font-weight: 300; max-width: 680px; } .hero-actions { display: flex; gap: 20px; flex-wrap: wrap; } .btn { display: inline-flex; align-items: center; justify-content: center; padding: 16px 36px; font-weight: 600; font-size: 15px; border-radius: 4px; transition: var(--transition-smooth); border: none; cursor: pointer; } .btn-primary { background-color: var(--accent-orange); color: var(--text-light); } .btn-primary:hover { background-color: var(--accent-hover); transform: translateY(-2px); } .btn-secondary { background-color: transparent; color: var(--text-light); border: 1px solid rgba(255, 255, 255, 0.3); } .btn-secondary:hover { background-color: rgba(255, 255, 255, 0.05); border-color: var(--text-light); transform: translateY(-2px); } .stats-section { background-color: var(--secondary-dark); padding: 50px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); } .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; } .stat-item h3 { font-family: var(--font-heading); font-size: 42px; font-weight: 700; color: var(--text-light); margin-bottom: 4px; } .stat-item p { color: var(--text-muted); font-size: 14px; letter-spacing: 0.5px; } .categories-section, .why-us-section, .pricing-section, .faq-section, .services-details, .blog-list-section { padding: 90px 0; background-color: var(--bg-light); color: #222; } .section-header { text-align: center; max-width: 700px; margin: 0 auto 64px auto; } .section-header h2 { font-family: var(--font-heading); font-size: 38px; color: var(--primary-dark); font-weight: 800; margin-bottom: 20px; line-height: 1.25; text-transform: capitalize; } .section-header p { font-size: 16px; color: #4a5568; line-height: 1.6; } .categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; } .category-card { background-color: #ffffff; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-soft); transition: var(--transition-smooth); display: flex; flex-direction: column; } .category-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-medium); } .category-card img { width: 100%; height: 200px; object-fit: cover; display: block; border-bottom: 1px solid #edf2f7; } .category-card-content { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; } .category-card-content h3 { font-family: var(--font-heading); font-size: 21px; color: var(--primary-dark); margin-bottom: 12px; } .category-card-content p { font-size: 14px; color: #555; line-height: 1.5; margin-bottom: 20px; flex-grow: 1; } .card-link { font-weight: 600; font-size: 13px; color: var(--accent-orange); display: inline-flex; align-items: center; letter-spacing: 0.5px; } .card-link:hover { color: var(--accent-hover); } .why-us-section { background-color: var(--bg-light-alternative); } .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; } .why-card { background-color: #ffffff; padding: 36px; border-radius: 6px; box-shadow: var(--shadow-soft); transition: var(--transition-smooth); } .why-card:hover { transform: translateY(-5px); } .why-card .number { font-family: var(--font-heading); font-size: 38px; font-weight: 700; color: #cbd5e0; margin-bottom: 16px; line-height: 1; } .why-card h3 { font-family: var(--font-heading); font-size: 20px; color: var(--primary-dark); margin-bottom: 12px; } .why-card p { font-size: 14px; color: #555; line-height: 1.6; } .pricing-glass-banner { background-color: var(--primary-dark); padding: 80px 0; color: var(--text-light); } .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: stretch; } .price-card { background-color: #ffffff; border-radius: 8px; padding: 48px 36px; display: flex; flex-direction: column; border: 1px solid #edf2f7; box-shadow: var(--shadow-soft); position: relative; } .price-card.premium { background-color: var(--primary-dark); color: var(--text-light); border: 2px solid var(--accent-orange); } .price-card h3 { font-family: var(--font-heading); font-size: 24px; color: var(--primary-dark); margin-bottom: 12px; } .price-card.premium h3 { color: var(--text-light); } .short-desc { font-size: 14px; color: #555; margin-bottom: 24px; line-height: 1.5; } .price-card.premium .short-desc { color: var(--text-muted); } .price { font-family: var(--font-heading); font-size: 34px; font-weight: 800; color: var(--primary-dark); margin-bottom: 32px; border-bottom: 1px solid #edf2f7; padding-bottom: 20px; } .price-card.premium .price { color: var(--text-light); border-bottom-color: rgba(255, 255, 255, 0.1); } .price span { font-size: 14px; font-family: var(--font-body); font-weight: 400; color: #666; } .price-card.premium .price span { color: var(--text-muted); } .pricing-features { list-style: none; margin-bottom: 40px; flex-grow: 1; } .pricing-features li { font-size: 14px; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; color: #4a5568; } .price-card.premium .pricing-features li { color: #cbd5e0; } .pricing-features li::before { content: '✓'; color: var(--accent-orange); font-weight: bold; } .pop-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background-color: var(--accent-orange); color: var(--text-light); font-size: 11px; font-weight: 700; padding: 4px 16px; border-radius: 12px; letter-spacing: 1px; } .btn-primary-pricing { display: block; text-align: center; background-color: var(--accent-orange); color: var(--text-light); font-weight: 700; padding: 14px 24px; border-radius: 4px; font-size: 14px; transition: var(--transition-smooth); } .btn-primary-pricing:hover { background-color: var(--accent-hover); transform: translateY(-1px); } .btn-secondary-pricing { display: block; text-align: center; background-color: rgba(10, 24, 48, 0.05); color: var(--primary-dark); font-weight: 700; padding: 14px 24px; border-radius: 4px; font-size: 14px; transition: var(--transition-smooth); } .btn-secondary-pricing:hover { background-color: rgba(10, 24, 48, 0.1); transform: translateY(-1px); } .faq-wrapper { max-width: 800px; margin: 0 auto; } .faq-item { background-color: #ffffff; border-radius: 6px; box-shadow: var(--shadow-soft); margin-bottom: 16px; overflow: hidden; transition: var(--transition-smooth); border: 1px solid #edf2f7; } .faq-question { padding: 24px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; user-select: none; } .faq-question h4 { font-family: var(--font-heading); font-size: 18px; color: var(--primary-dark); font-weight: 700; margin-right: 20px; } .faq-icon { font-size: 20px; font-weight: 600; color: var(--accent-orange); transition: var(--transition-smooth); } .faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out, padding 0.3s ease-out; background-color: #fafbfc; } .faq-answer p { font-size: 14px; color: #4a5568; line-height: 1.6; padding-bottom: 24px; } .faq-item.active .faq-answer { max-height: 500px; padding-top: 0; } .faq-item.active .faq-icon { transform: rotate(45deg); } .lead-section { background-color: var(--accent-orange); color: var(--text-light); padding: 80px 0; } .lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; } .lead-text h2 { font-family: var(--font-heading); font-size: 34px; font-weight: 800; margin-bottom: 16px; line-height: 1.2; } .lead-text p { font-size: 16px; color: rgba(255, 255, 255, 0.9); } .lead-form-box { display: flex; flex-direction: column; gap: 12px; } .lead-inline-form { display: flex; gap: 12px; } .lead-inline-form input[type="email"] { flex-grow: 1; padding: 16px 20px; border-radius: 4px; border: none; font-family: var(--font-body); font-size: 15px; outline: none; } .lead-inline-form button { padding: 16px 30px; font-weight: 700; border-radius: 4px; border: none; cursor: pointer; background-color: var(--primary-dark); color: var(--text-light); transition: var(--transition-smooth); } .lead-inline-form button:hover { background-color: var(--secondary-dark); } .form-disclaimer { font-size: 12px; color: rgba(255, 255, 255, 0.85); line-height: 1.4; } .form-disclaimer a { text-decoration: underline; } .btn-large { font-size: 16px; padding: 18px 40px; text-transform: uppercase; letter-spacing: 0.5px; border-radius: 4px; width: fit-content; } footer { background-color: var(--secondary-dark); padding: 90px 0 0 0; color: var(--text-muted); font-size: 14px; line-height: 1.6; border-top: 1px solid rgba(255, 255, 255, 0.05); } .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 48px; margin-bottom: 60px; } .footer-brand svg { margin-bottom: 24px; } .footer-brand p { max-width: 320px; line-height: 1.6; } .footer-links h4, .footer-contact h4 { color: var(--text-light); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px; } .footer-links nav { display: flex; flex-direction: column; gap: 12px; } .footer-links nav a { color: var(--text-muted); } .footer-links nav a:hover { color: var(--text-light); padding-left: 4px; } .footer-contact p { margin-bottom: 12px; } .footer-contact a { color: var(--text-light); transition: var(--transition-smooth); } .footer-contact a:hover { color: var(--accent-orange); } .footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.05); padding: 30px 0; font-size: 13px; } .bottom-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; } .cookie-banner-wrapper { position: fixed; bottom: 0; left: 0; right: 0; background-color: #ffffff; color: #222; border-top: 3px solid var(--accent-orange); padding: 24px 0; z-index: 10000; box-shadow: 0 -10px 40px rgba(0,0,0,0.15); display: none; } .cookie-banner-inner { max-width: 1192px; margin: 0 auto; padding: 0 24px; display: flex; flex-direction: column; gap: 16px; } .cookie-banner-inner p { font-size: 14px; line-height: 1.5; color: #4a5568; } .cookie-banner-inner p a { color: var(--accent-orange); text-decoration: underline; font-weight: 600; } .cookie-options-box { display: flex; gap: 24px; flex-wrap: wrap; background-color: #f7fafc; padding: 14px 20px; border-radius: 4px; border: 1px solid #edf2f7; } .cookie-option label { font-size: 13px; font-weight: 600; color: var(--primary-dark); cursor: pointer; display: flex; align-items: center; gap: 8px; } .cookie-banner-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; } .btn-cookie-primary { background-color: var(--accent-orange); color: var(--text-light); border: none; padding: 11px 24px; font-size: 13px; font-weight: 700; border-radius: 4px; cursor: pointer; transition: var(--transition-smooth); } .btn-cookie-primary:hover { background-color: var(--accent-hover); } .btn-cookie-secondary { background-color: #edf2f7; color: var(--primary-dark); border: none; padding: 11px 24px; font-size: 13px; font-weight: 700; border-radius: 4px; cursor: pointer; transition: var(--transition-smooth); } .btn-cookie-secondary:hover { background-color: #e2e8f0; } .btn-cookie-link { background: none; border: none; color: #4a5568; font-size: 13px; font-weight: 600; text-decoration: underline; cursor: pointer; padding: 8px 12px; } .btn-cookie-link:hover { color: var(--primary-dark); } .inner-hero-header { padding: 160px 0 80px 0; background-size: cover; background-position: center; border-bottom: 1px solid rgba(255, 255, 255, 0.05); } .inner-hero-header h1 { font-family: var(--font-heading); font-size: clamp(32px, 5vw, 52px); font-weight: 800; color: var(--text-light); margin-bottom: 16px; } .inner-hero-header .lead-para { font-size: 18px; color: var(--text-muted); font-weight: 300; max-width: 680px; } .about-story-section { padding: 90px 0; background-color: var(--bg-light); color: #222; } .story-grid { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 60px; align-items: center; } .story-text h2 { font-family: var(--font-heading); font-size: 32px; color: var(--primary-dark); margin-bottom: 24px; font-weight: 800; } .story-text p { font-size: 15px; color: #4a5568; line-height: 1.7; margin-bottom: 20px; } .story-text blockquote { border-left: 4px solid var(--accent-orange); padding-left: 24px; margin: 30px 0; font-family: var(--font-heading); font-size: 18px; font-style: italic; color: #333; } .story-text blockquote footer { background: none; border: none; padding: 48px 0 0 0; color: #777; font-size: 14px; font-family: var(--font-body); font-weight: 600; text-transform: uppercase; margin-top: 8px; } .rounded-img-shadow { width: 100%; border-radius: 6px; box-shadow: var(--shadow-medium); object-fit: cover; } .story-visual .caption { font-size: 12px; color: #718096; line-height: 1.4; margin-top: 12px; } .ethics-pillars { padding: 80px 0; background-color: var(--bg-light-alternative); color: #222; } .pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; } .pillar-card { background-color: #ffffff; padding: 36px; border-radius: 6px; box-shadow: var(--shadow-soft); } .pillar-card h4 { font-family: var(--font-heading); font-size: 19px; color: var(--primary-dark); margin-bottom: 12px; } .pillar-card p { font-size: 14px; color: #555; line-height: 1.6; } .team-section { padding: 90px 0; background-color: var(--bg-light); color: #222; } .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; } .team-member { text-align: center; } .avatar-img { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; margin: 0 auto 20px auto; box-shadow: var(--shadow-soft); border: 3px solid #ffffff; display: block; } .team-member h4 { font-family: var(--font-heading); font-size: 19px; color: var(--primary-dark); margin-bottom: 6px; } .team-member .role { font-size: 13px; font-weight: 700; color: var(--accent-orange); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; } .team-member .bio { font-size: 14px; color: #555; line-height: 1.6; max-width: 280px; margin: 0 auto; } .service-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 20px; } .service-feature-block { background-color: #ffffff; padding: 40px; border-radius: 8px; box-shadow: var(--shadow-soft); } .service-feature-block img { width: 100%; height: 260px; object-fit: cover; margin-bottom: 24px; display: block; } .service-feature-block h3 { font-family: var(--font-heading); font-size: 22px; color: var(--primary-dark); margin-bottom: 14px; } .service-feature-block p { font-size: 14px; color: #555; line-height: 1.6; } .blog-posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; } .blog-post-card { background-color: #ffffff; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; } .blog-post-card img { width: 100%; height: 220px; object-fit: cover; display: block; } .blog-post-info { padding: 28px; flex-grow: 1; display: flex; flex-direction: column; } .post-date { font-size: 11px; font-weight: 700; color: #a0aec0; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; display: block; } .post-cat { font-size: 12px; font-weight: 700; color: var(--accent-orange); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; display: block; } .blog-post-card h3 { font-family: var(--font-heading); font-size: 21px; color: var(--primary-dark); margin-bottom: 14px; line-height: 1.3; } .blog-post-card p { font-size: 14px; color: #555; line-height: 1.6; margin-bottom: 24px; flex-grow: 1; } .read-more-btn { font-weight: 700; font-size: 13px; color: var(--primary-dark); display: inline-flex; align-items: center; transition: var(--transition-smooth); } .read-more-btn:hover { color: var(--accent-orange); transform: translateX(3px); } .article-main { padding: 90px 0; background-color: var(--bg-light); color: #222; } .single-post { max-width: 800px; margin: 0 auto; } .post-header { margin-bottom: 36px; } .post-meta-tag { font-size: 13px; font-weight: 700; color: var(--accent-orange); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; display: block; } .post-header h1 { font-family: var(--font-heading); font-size: clamp(30px, 4.5vw, 44px); color: var(--primary-dark); line-height: 1.2; margin-bottom: 16px; } .post-header .lead-text { font-size: 18px; color: #4a5568; line-height: 1.5; font-weight: 500; } .post-main-img { width: 100%; height: 420px; object-fit: cover; border-radius: 6px; box-shadow: var(--shadow-medium); margin-bottom: 40px; display: block; } .post-content p { font-size: 16px; color: #2d3748; line-height: 1.8; margin-bottom: 24px; } .post-content h3 { font-family: var(--font-heading); font-size: 24px; color: var(--primary-dark); margin-top: 40px; margin-bottom: 16px; } .post-content ul { padding-left: 24px; margin-bottom: 24px; } .post-content ul li { font-size: 15px; color: #2d3748; margin-bottom: 10px; line-height: 1.6; } .contact-layout-section { padding: 90px 0; background-color: var(--bg-light); color: #222; } .contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; } .contact-details-panel h2, .contact-form-panel h2 { font-family: var(--font-heading); font-size: 32px; color: var(--primary-dark); margin-bottom: 16px; } .panel-intro { font-size: 15px; color: #4a5568; margin-bottom: 40px; } .detail-row { display: flex; gap: 20px; margin-bottom: 30px; } .detail-icon { flex-shrink: 0; margin-top: 4px; } .detail-row h4 { font-size: 16px; color: var(--primary-dark); margin-bottom: 6px; } .detail-row p { font-size: 14px; color: #555; } .detail-row a { text-decoration: underline; } .interactive-form { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; } .form-group { display: flex; flex-direction: column; gap: 8px; } .form-group label { font-size: 13px; font-weight: 700; color: var(--primary-dark); } .form-group input, .form-group select, .form-group textarea { padding: 14px 16px; border-radius: 4px; border: 1px solid #cbd5e0; font-family: var(--font-body); font-size: 14px; color: #333; outline: none; background-color: #ffffff; width: 100%; transition: var(--transition-smooth); } .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent-orange); box-shadow: 0 0 0 3px rgba(225, 122, 14, 0.15); } .form-checkbox-group { display: flex; gap: 10px; align-items: flex-start; } .form-checkbox-group input[type="checkbox"] { margin-top: 4px; border-radius: 2px; } .form-checkbox-group label { font-size: 12px; color: #4a5568; line-height: 1.5; } .form-checkbox-group label a { text-decoration: underline; color: var(--accent-orange); } .form-error-toast { background-color: #fed7d7; border-left: 4px solid #f56565; color: #9b2c2c; padding: 12px 16px; font-size: 13px; border-radius: 4px; margin-bottom: 12px; } .map-iframe-section { background-color: var(--bg-light-alternative); padding: 50px 0; } .google-map-element { width: 100%; height: 450px; border: none; border-radius: 6px; box-shadow: var(--shadow-medium); display: block; } .legal-main-content { padding: 140px 0 90px 0; background-color: var(--bg-light); color: #222; } .legal-article-layout { max-width: 900px; margin: 0 auto; background: #ffffff; padding: 54px; border-radius: 8px; box-shadow: var(--shadow-soft); border: 1px solid #edf2f7; } .legal-article-layout h1 { font-family: var(--font-heading); font-size: 34px; color: var(--primary-dark); margin-bottom: 10px; line-height: 1.2; } .last-updated-tag { font-size: 13px; font-weight: 700; color: var(--accent-orange); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 40px; } .legal-section-block { margin-bottom: 36px; border-bottom: 1px solid #edf2f7; padding-bottom: 24px; } .legal-section-block:last-of-type { border-bottom: none; } .legal-section-block h3 { font-family: var(--font-heading); font-size: 20px; color: var(--primary-dark); margin-bottom: 14px; } .legal-section-block p { font-size: 14px; color: #4a5568; line-height: 1.7; margin-bottom: 16px; } .legal-section-block ul, .legal-section-block ol { padding-left: 20px; margin-bottom: 16px; } .legal-section-block li { font-size: 14px; color: #4a5568; margin-bottom: 8px; line-height: 1.6; } .legal-section-block strong { color: var(--primary-dark); } .legal-section-block a { text-decoration: underline; color: var(--accent-orange); } .legal-data-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 13px; text-align: left; } .legal-data-table th, .legal-data-table td { padding: 12px 16px; border: 1px solid #e2e8f0; } .legal-data-table th { background-color: var(--bg-light-alternative); color: var(--primary-dark); font-weight: 700; } .legal-data-table td { color: #4a5568; } @media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } .categories-grid { grid-template-columns: repeat(2, 1fr); } .why-grid { grid-template-columns: repeat(2, 1fr); } .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; } .team-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; } .story-grid { grid-template-columns: 1fr; gap: 40px; } .contact-grid { grid-template-columns: 1fr; gap: 40px; } } @media (max-width: 768px) { header.navbar-sticky { height: 75px; } .burger-btn { display: flex; } .nav-menu { position: fixed; top: 75px; left: -100%; width: 100%; height: calc(100vh - 75px); background-color: var(--primary-dark); flex-direction: column; justify-content: center; gap: 40px; transition: var(--transition-smooth); padding: 40px 0; border-top: 1px solid rgba(255, 255, 255, 0.05); } .nav-menu.active { left: 0; } .stats-grid { grid-template-columns: repeat(2, 1fr); } .lead-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; } .lead-inline-form { flex-direction: column; } .button.burger-btn.active .burger-line:nth-child(1) { transform: translateY(8px) rotate(45deg); } .button.burger-btn.active .burger-line:nth-child(2) { opacity: 0; } .button.burger-btn.active .burger-line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); } .btn-large { width: 100%; text-align: center; } .categories-grid, .why-grid, .team-grid, .blog-posts-grid, .service-features-grid { grid-template-columns: 1fr; } .bottom-flex { flex-direction: column; text-align: center; } .legal-article-layout { padding: 24px; } }