*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; } :root { --navy: #0f1b3d; --navy-light: #1a2750; --teal: #38b6c4; --teal-light: #5ec5d0; --teal-dark: #2a9d8f; --teal-gradient: linear-gradient(135deg, #38b6c4, #2a9d8f); --bg-light: #f0f9ff; --bg-gradient: linear-gradient(180deg, #f0f9ff 0%, #e8f8f5 50%, #f0f9ff 100%); --white: #ffffff; --gray-100: #f7f8fa; --gray-200: #e8eaef; --gray-600: #6b7280; --shadow-sm: 0 2px 8px rgba(15, 27, 61, 0.06); --shadow-md: 0 8px 30px rgba(15, 27, 61, 0.1); --shadow-lg: 0 20px 60px rgba(15, 27, 61, 0.15); --shadow-teal: 0 8px 30px rgba(56, 182, 196, 0.3); --radius-sm: 8px; --radius-md: 16px; --radius-lg: 24px; --radius-xl: 32px; --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); } html { scroll-behavior: smooth; font-size: 16px; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: var(--navy); background: var(--bg-gradient); overflow-x: hidden; line-height: 1.6; -webkit-font-smoothing: antialiased; } a { text-decoration: none; color: inherit; } img { max-width: 100%; display: block; } ::-webkit-scrollbar { width: 8px; } ::-webkit-scrollbar-track { background: var(--bg-light); } ::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 4px; } .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1rem 2rem; transition: var(--transition); background: transparent; } .nav.scrolled { background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: var(--shadow-sm); padding: 0.7rem 2rem; } .nav-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; } .nav-logo { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 1.3rem; color: var(--navy); } .nav-logo img { height: 36px; width: auto; } .nav-links { display: flex; align-items: center; gap: 1.5rem; list-style: none; } .nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--navy); opacity: 0.7; transition: var(--transition); position: relative; } .nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--teal-gradient); transition: var(--transition); border-radius: 1px; } .nav-links a:hover { opacity: 1; } .nav-links a:hover::after { width: 100%; } .nav-cta { background: var(--teal-gradient); color: var(--white) !important; padding: 0.6rem 1.5rem; border-radius: 50px; font-weight: 600; font-size: 0.85rem; opacity: 1 !important; transition: var(--transition); box-shadow: var(--shadow-teal); } .nav-cta::after { display: none !important; } .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(56, 182, 196, 0.4); } .lang-switcher { display: flex; align-items: center; gap: 0.25rem; background: var(--gray-100); border: 1px solid var(--gray-200); border-radius: 50px; padding: 0.25rem; } .lang-btn { padding: 0.3rem 0.7rem; border: none; background: transparent; border-radius: 50px; font-family: inherit; font-size: 0.75rem; font-weight: 600; cursor: pointer; transition: var(--transition); color: var(--gray-600); } .lang-btn.active { background: var(--teal-gradient); color: var(--white); box-shadow: var(--shadow-sm); } .nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; } .nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); } .page-header { padding: 8rem 2rem 4rem; text-align: center; position: relative; overflow: hidden; } .page-header-bg { position: absolute; inset: 0; z-index: 0; } .page-header-bg .orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.3; animation: float 20s ease-in-out infinite; } .page-header-bg .orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(56, 182, 196, 0.3), transparent 70%); top: -200px; right: -100px; } .page-header-bg .orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(42, 157, 143, 0.2), transparent 70%); bottom: -100px; left: -50px; animation-delay: -10s; } @keyframes float { 0%, 100% { transform: translate(0, 0) scale(1); } 25% { transform: translate(30px, -30px) scale(1.05); } 50% { transform: translate(-20px, 20px) scale(0.95); } 75% { transform: translate(20px, 10px) scale(1.02); } } .page-header-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; } .back-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; font-weight: 500; color: var(--teal); margin-bottom: 2rem; transition: var(--transition); } .back-link:hover { gap: 0.8rem; } .back-link svg { width: 16px; height: 16px; } .page-header h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.2; margin-bottom: 1rem; color: var(--navy); } .page-header p { font-size: 1.1rem; color: var(--gray-600); line-height: 1.7; } .services-detail { padding: 4rem 2rem 6rem; } .services-detail-container { max-width: 1200px; margin: 0 auto; } .service-detail-item { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; align-items: start; padding: 3rem; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--gray-200); margin-bottom: 2rem; transition: var(--transition); } .service-detail-item:hover { box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-4px); } .service-detail-icon { width: 64px; height: 64px; border-radius: var(--radius-md); background: linear-gradient(135deg, rgba(56, 182, 196, 0.1), rgba(42, 157, 143, 0.05)); display: flex; align-items: center; justify-content: center; } .service-detail-icon svg { width: 32px; height: 32px; color: var(--teal); } .service-detail-info h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--navy); } .service-detail-info .tagline { font-size: 1rem; color: var(--teal); font-weight: 600; margin-bottom: 1rem; } .service-detail-info p { color: var(--gray-600); line-height: 1.8; margin-bottom: 1.5rem; } .service-detail-info .tools { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; } .tool-tag { display: inline-flex; align-items: center; gap: 0.3rem; padding: 0.4rem 0.8rem; background: var(--gray-100); border: 1px solid var(--gray-200); border-radius: 50px; font-size: 0.8rem; font-weight: 600; color: var(--navy); } .cta-link { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--teal-gradient); color: var(--white); padding: 0.8rem 1.8rem; border-radius: 50px; font-weight: 600; font-size: 0.9rem; transition: var(--transition); box-shadow: var(--shadow-teal); } .cta-link:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(56, 182, 196, 0.4); } .cta-link svg { width: 16px; height: 16px; } .footer { background: var(--navy); color: rgba(255, 255, 255, 0.6); padding: 3rem 2rem 2rem; } .footer-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; } .footer-brand { display: flex; align-items: center; } .footer-brand img { height: 32px; width: auto; object-fit: contain; } .footer-links { display: flex; gap: 2rem; list-style: none; } .footer-links a { font-size: 0.85rem; transition: var(--transition); } .footer-links a:hover { color: var(--teal); } .footer-copy { width: 100%; text-align: center; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.8rem; } .reveal { opacity: 1; transform: none; } .reveal.visible { opacity: 1; transform: translateY(0); } @media (max-width: 768px) { .js .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(20px); flex-direction: column; align-items: center; justify-content: center; gap: 2rem; } .nav-links.active { display: flex; } .js .nav-toggle { display: flex; z-index: 1001; } .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); } .nav-toggle.active span:nth-child(2) { opacity: 0; } .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); } .service-detail-item { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem; } .footer-container { flex-direction: column; text-align: center; } .footer-links { flex-wrap: wrap; justify-content: center; } } @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; } } :root { --teal-dark: #176b65; --gray-600: #535d6e; } img { height: auto; } section[id], .service-detail-item[id] { scroll-margin-top: 6rem; } :focus-visible { outline: 3px solid #176b65; outline-offset: 5px; } .footer :focus-visible { outline-color: #5ec5d0; } .skip-link { position: fixed; top: -8rem; left: 1rem; z-index: 2000; padding: .75rem 1rem; background: white; color: #0f1b3d; } .skip-link:focus { top: 1rem; } .nav-logo { flex-shrink: 0; } .nav-toggle { min-width: 44px; min-height: 44px; justify-content: center; align-items: center; } .nav-links .lang-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; min-width: 44px; } .nav-links .lang-btn.active { background: #176b65; color: white; } .nav-links .lang-btn::after { display: none; } .footer-brand img { width: 160px; height: auto; max-width: 100%; border-radius: 8px; } .footer-links a { display: inline-block; padding: .6rem 0; } .section-label, .service-card .learn-more, .cta-link, .service-detail-info .tagline { color: #176b65; } .hero h1 .gradient-text { background: none; color: #176b65; -webkit-text-fill-color: currentColor; } .process-grid { list-style: none; padding: 0; } .process-icon { font-weight: 700; } .contact-address { display: block; margin-top: 1rem; color: white; overflow-wrap: anywhere; } @media (max-width: 768px) { .nav { background: #f0f9ff; } html:not(.js) .nav { position: relative; } html:not(.js) .nav-container { flex-wrap: wrap; gap: 1rem; } html:not(.js) .nav-links { display: flex; flex-wrap: wrap; gap: .75rem 1rem; } html:not(.js) .nav-toggle { display: none; } .js .nav-links { overflow-y: auto; padding: 5rem 1.5rem 2rem; } .js .nav-links.active { display: flex; } .process-grid { grid-template-columns: 1fr; } } @media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; } } .inline-0 { padding: 4rem 2rem 6rem; } .inline-1 { max-width: 800px; margin: 0 auto; background: var(--navy); border-radius: var(--radius-xl); padding: 4rem 3rem; text-align: center; position: relative; overflow: hidden; } .inline-2 { position: absolute; inset: 0; background: radial-gradient(circle at 30% 70%, rgba(56, 182, 196, 0.2), transparent 50%), radial-gradient(circle at 70% 30%, rgba(42, 157, 143, 0.15), transparent 50%); } .inline-3 { position: relative; z-index: 1; } .inline-4 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; color: var(--white); margin-bottom: 1rem; } .inline-5 { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; } .inline-6 { display: inline-flex; align-items: center; gap: 0.5rem; padding: 1rem 2.2rem; background: var(--white); color: var(--navy); border-radius: 50px; font-weight: 600; font-size: 1rem; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 8px 30px rgba(0,0,0,0.2); border: none; cursor: pointer; font-family: inherit; } .inline-7 { width: 18px; height: 18px; }