:root { --bg: #080808; --bg1: #0c0c0c; --bg2: #121212; --bg3: #181818; --border: rgba(255, 255, 255, 0.06); --border2: rgba(255, 255, 255, 0.03); --text0: #ffffff; --text1: rgba(255, 255, 255, 0.8); --text2: rgba(255, 255, 255, 0.55); --text3: rgba(255, 255, 255, 0.3); --red: #D92027; --red-hover:#b81b21; --red-dim: rgba(217, 32, 39, 0.1); --red-mid: rgba(217, 32, 39, 0.25); } *,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; overflow-x: hidden; scroll-padding-top: 80px; } body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--bg); color: var(--text0); -webkit-font-smoothing: antialiased; overflow-x: hidden; width: 100vw; } h1, h2, h3, h4, h5, h6 { text-wrap: balance; } p { text-wrap: pretty; } ::-webkit-scrollbar { width: 10px; } ::-webkit-scrollbar-track { background: var(--bg); } ::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 10px; border: 3px solid var(--bg); } ::-webkit-scrollbar-thumb:hover { background: var(--red); } a { color: inherit; text-decoration: none; } ::selection { background: var(--red); color: #fff; } .container { max-width: 1200px; margin: 0 auto; padding: 0 5%; width: 100%; } @keyframes ticker { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } } @keyframes glow-pulse { 0%, 100% { opacity: 0.2; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.1); } } @keyframes heroFadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } } @keyframes ping { 75%, 100% { transform: scale(2.5); opacity: 0; } } @keyframes blink-caret { 50% { opacity: 0; } } .glow-bg { position: absolute; border-radius: 50%; background: radial-gradient(circle, rgba(217, 32, 39, 0.15) 0%, transparent 60%); filter: blur(60px); z-index: -1; pointer-events: none; animation: glow-pulse 8s infinite alternate; } .glow-bg.top-right { top: -20%; right: -10%; width: 80vw; height: 80vw; max-width: 800px; max-height: 800px; } .glow-bg.center-left { top: 30%; left: -20%; width: 90vw; height: 90vw; max-width: 900px; max-height: 900px; } .glow-bg.bottom-right { bottom: -10%; right: -15%; width: 70vw; height: 70vw; max-width: 700px; max-height: 700px; } .reveal { opacity: 0; transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); } .reveal.from-bottom { transform: translateY(40px); } .reveal.from-left { transform: translateX(-30px); } .reveal.from-right { transform: translateX(30px); } .reveal.in-view { opacity: 1; transform: translate(0); } .reveal-delay-1 { transition-delay: 0.1s; } .reveal-delay-2 { transition-delay: 0.2s; } .eyebrow { display: block; font-size: 11px; font-weight: 800; letter-spacing: 0.25em; text-transform: uppercase; color: var(--red); margin-bottom: 16px; } .section-title { font-size: clamp(32px, 5vw, 56px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 24px; } .section-title span.highlight { color: var(--red); } .section-subtitle { font-size: 16px; color: var(--text1); line-height: 1.7; max-width: 580px; margin-bottom: 48px; } .btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 100px; font-weight: 700; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); cursor: pointer; border: none; font-family: inherit; line-height: 1; text-align: center; } .btn svg { flex-shrink: 0; } .btn-lg { padding: 18px 36px; font-size: 15px; } .btn-md { padding: 14px 28px; font-size: 14px; } .btn-sm { padding: 0 24px; font-size: 13px; height: 38px; } .btn-primary { background: var(--red); color: #fff; box-shadow: 0 4px 20px rgba(217, 32, 39, 0.3); } .btn-primary:hover { background: var(--red-hover); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(217, 32, 39, 0.4); } .btn-outline { background: rgba(255, 255, 255, 0.02); color: var(--text0); border: 1px solid rgba(255, 255, 255, 0.15); backdrop-filter: blur(10px); } .btn-outline:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.3); transform: translateY(-2px); } .navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 24px 0; transition: all 0.4s ease; border-bottom: 1px solid transparent; } .navbar.scrolled { background: rgba(8, 8, 8, 0.6); backdrop-filter: blur(20px); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.05); box-shadow: 0 10px 30px rgba(0,0,0,0.5); } .nav-inner { display: flex; justify-content: space-between; align-items: center; } .nav-logo { height: 26px; width: auto; filter: brightness(0) invert(1); transition: transform 0.3s; } .nav-logo:hover { transform: scale(1.05); } .nav-links { display: flex; gap: 4px; background: rgba(255,255,255,0.03); padding: 4px; border-radius: 100px; border: 1px solid var(--border2); } .nav-link { font-size: 13px; font-weight: 600; color: var(--text2); padding: 8px 24px; border-radius: 100px; transition: all 0.2s; } .nav-link:hover, .nav-link.active { color: var(--text0); background: rgba(255,255,255,0.08); } .lang-switch { display: flex; background: rgba(255,255,255,0.03); border-radius: 100px; padding: 4px; border: 1px solid var(--border2); align-items: center; height: 38px; } .lang-option { display: flex; align-items: center; justify-content: center; height: 100%; padding: 0 14px; font-size: 13px; font-weight: 800; color: var(--text2); border-radius: 100px; transition: all 0.3s; text-decoration: none; } .lang-option:hover { color: var(--text0); } .lang-option.active { background: var(--red); color: #fff; box-shadow: 0 4px 12px rgba(217,32,39,0.3); } .mobile-menu-btn { display: none; background: transparent; border: none; color: #fff; cursor: pointer; padding: 8px; } .mobile-menu { position: fixed; top: 80px; right: 24px; width: calc(100% - 48px); max-width: 280px; background: rgba(15,15,15,0.98); z-index: 999; display: flex; flex-direction: column; align-items: stretch; padding: 16px; pointer-events: none; opacity: 0; transform: translateY(-10px) scale(0.98); transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); border-radius: 24px; border: 1px solid rgba(255,255,255,0.08); backdrop-filter: blur(20px); box-shadow: 0 20px 40px rgba(0,0,0,0.5); } .mobile-menu.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; } .mobile-nav-links { display: flex; flex-direction: column; gap: 4px; width: 100%; margin: 0; } .mobile-nav-link { font-size: 14px; font-weight: 600; color: var(--text2); text-align: center; padding: 14px 24px; border-radius: 100px; transform: translateY(-10px); opacity: 0; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); text-decoration: none; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); } .mobile-nav-link:hover, .mobile-nav-link:active { color: var(--text0); background: rgba(255,255,255,0.08); } .mobile-menu.open .mobile-nav-link { transform: translateY(0); opacity: 1; } .mobile-menu.open .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; } .mobile-menu.open .mobile-nav-link:nth-child(2) { transition-delay: 0.15s; } .mobile-menu.open .mobile-nav-link:nth-child(3) { transition-delay: 0.2s; } .mobile-menu.open .mobile-nav-link:nth-child(4) { transition-delay: 0.25s; } .mobile-menu.open .mobile-nav-link:nth-child(5) { transition-delay: 0.3s; } .hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; padding-top: 80px; padding-bottom: 0; } .hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 40px 40px; z-index: 0; opacity: 0.15; } .hero-content { position: relative; z-index: 1; text-align: center; max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; width: 100%; } .hero h1 { font-size: clamp(32px, 5.5vw, 76px); font-weight: 900; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 24px; opacity: 0; animation: heroFadeIn 0.8s forwards 0.2s; white-space: nowrap; } .hero h1 .highlight { color: var(--red); } .hero p { font-size: clamp(16px, 1.8vw, 20px); color: var(--text1); max-width: 100%; margin: 0 auto 48px; line-height: 1.6; opacity: 0; animation: heroFadeIn 0.8s forwards 0.4s; font-weight: 400; text-wrap: normal; } .hero-cta { display: flex; gap: 16px; justify-content: center; align-items: center; opacity: 0; animation: heroFadeIn 0.8s forwards 0.6s; flex-wrap: wrap; } .ticker-wrapper { position: absolute; bottom: 0; left: 0; width: 100%; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 24px 0; overflow: hidden; white-space: nowrap; background: rgba(5,5,5,0.8); backdrop-filter: blur(10px); z-index: 10; } .ticker-content { display: inline-flex; animation: ticker 40s linear infinite; will-change: transform; } .ticker-item { font-size: 14px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text0); padding: 0 48px; display: flex; align-items: center; gap: 48px; } .ticker-item::after { content: "✦"; color: var(--red); opacity: 0.8; font-size: 14px; font-weight: 400; } .section { padding: 140px 0; position: relative; } .bg-1 { background: var(--bg1); border-top: 1px solid var(--border2); border-bottom: 1px solid var(--border2); } .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; } .service-card { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 24px; padding: 40px 32px; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); z-index: 1; backdrop-filter: blur(10px); } .service-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(217, 32, 39, 0.08), transparent 40%); opacity: 0; transition: opacity 0.3s; z-index: -1; pointer-events: none; } .service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); border-color: rgba(217, 32, 39, 0.3); background: rgba(255,255,255,0.04); } .service-card:hover::before { opacity: 1; } .service-card.featured { background: linear-gradient(135deg, rgba(217, 32, 39, 0.08) 0%, transparent 100%); border-color: rgba(217, 32, 39, 0.3); box-shadow: none; z-index: 2; } .service-card.featured:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); border-color: var(--red); background: linear-gradient(135deg, rgba(217, 32, 39, 0.12) 0%, transparent 100%); } .service-card.featured::before { display: none; } .service-icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(217, 32, 39, 0.1); border: 1px solid rgba(217, 32, 39, 0.2); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--red); transition: transform 0.4s ease; box-shadow: 0 8px 16px rgba(0,0,0,0.2); } .service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); background: var(--red); border-color: var(--red); color: #fff; } .service-card.featured .service-icon { background: var(--red); border-color: var(--red); color: #fff; box-shadow: 0 10px 20px rgba(217,32,39,0.3); } .service-card.featured:hover .service-icon { transform: scale(1.1) rotate(-5deg); } .service-title { font-size: 24px; font-weight: 800; line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.02em; color: var(--text0); } .service-card.featured .service-title { color: #fff; } .service-hook { border-left: 2px solid var(--red); padding-left: 16px; margin-bottom: 24px; } .service-hook p { font-size: 14.5px; font-weight: 600; color: var(--text1); line-height: 1.6; } .service-card.featured .service-hook { border-left-color: rgba(255,255,255,0.6); } .service-card.featured .service-hook p { color: #fff; font-weight: 700; } .service-desc { font-size: 15px; color: var(--text2); line-height: 1.7; margin-bottom: 32px; flex-grow: 1; } .service-card.featured .service-desc { color: rgba(255,255,255,0.9); font-weight: 500; } .service-features { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 0; margin-top: auto; } .service-feature { font-size: 12px; font-weight: 700; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); padding: 8px 14px; border-radius: 100px; color: var(--text1); transition: all 0.3s; } .service-card:hover .service-feature { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); } .service-card.featured .service-feature { background: rgba(0,0,0,0.15); border-color: transparent; color: #fff; } .service-card.featured:hover .service-feature { background: rgba(0,0,0,0.25); } .process-bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; margin-top: 48px; } .bento-item { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 24px; padding: 40px; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); position: relative; overflow: hidden; display: flex; flex-direction: column; } .bento-item::before { content: ''; position: absolute; inset: 0; background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(217, 32, 39, 0.08), transparent 40%); opacity: 0; transition: opacity 0.3s; z-index: -1; pointer-events: none; } .bento-item:hover { background: rgba(255,255,255,0.04); border-color: rgba(217, 32, 39, 0.3); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); } .bento-item:hover::before { opacity: 1; } .bento-item:nth-child(1), .bento-item:nth-child(2) { grid-column: span 3; } .bento-item:nth-child(3), .bento-item:nth-child(4), .bento-item:nth-child(5) { grid-column: span 2; } .bento-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; } .bento-num { width: 48px; height: 48px; border-radius: 12px; background: rgba(217, 32, 39, 0.1); color: var(--red); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 900; border: 1px solid rgba(217, 32, 39, 0.2); } .bento-time { font-size: 11px; font-weight: 800; color: var(--text3); letter-spacing: 0.15em; text-transform: uppercase; background: rgba(255,255,255,0.05); padding: 6px 12px; border-radius: 100px; } .bento-item h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; color: var(--text0); } .bento-item p { font-size: 15px; color: var(--text2); line-height: 1.7; margin-bottom: 0; } .bento-item.featured { background: linear-gradient(135deg, rgba(217, 32, 39, 0.08) 0%, transparent 100%); border-color: rgba(217, 32, 39, 0.3); } .bento-item.featured .bento-num { background: var(--red); color: #fff; border-color: var(--red); } .process-cta-container { display: flex; justify-content: center; margin-top: 60px; } @media (max-width: 900px) { .bento-item:nth-child(n) { grid-column: span 6; } } .about-bento { display: grid; grid-template-columns: minmax(280px, 32%) repeat(3, 1fr); gap: 24px; align-items: stretch; } .about-photo-card { grid-column: 1 / 2; grid-row: 1 / 3; position: relative; border-radius: 24px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 30px 60px rgba(0,0,0,0.5); } .about-photo-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; } .about-photo-card:hover img { transform: scale(1.05); } .experience-badge { position: absolute; bottom: 24px; right: 24px; left: 24px; background: rgba(15,15,15,0.85); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.1); padding: 16px 20px; border-radius: 16px; display: flex; align-items: center; gap: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); } .experience-badge svg { color: var(--red); flex-shrink: 0; } .about-card { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 24px; padding: 40px; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); position: relative; overflow: hidden; } .about-card:hover { background: rgba(255,255,255,0.04); border-color: rgba(217, 32, 39, 0.3); transform: translateY(-4px); } .about-bio-card { grid-column: 2 / 5; grid-row: 1 / 2; } .about-bio-card h2 { font-size: 32px; font-weight: 800; line-height: 1.2; margin-bottom: 24px; letter-spacing: -0.02em; } .about-bio-card p { font-size: 15px; color: var(--text2); line-height: 1.8; margin-bottom: 16px; } .about-bio-card p:last-child { margin-bottom: 0; } .about-benefit { grid-row: 2 / 3; padding: 32px 24px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; text-align: left; } .about-benefit-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(217, 32, 39, 0.1); color: var(--red); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; border: 1px solid rgba(217, 32, 39, 0.2); transition: all 0.3s; } .about-card:hover .about-benefit-icon { background: var(--red); color: #fff; transform: scale(1.1); } .about-benefit h4 { font-size: 15px; font-weight: 800; margin-bottom: 8px; color: var(--text0); } .about-benefit p { font-size: 13.5px; color: var(--text3); line-height: 1.5; margin: 0; } @media (max-width: 1024px) { .about-bento { grid-template-columns: 1fr; grid-template-rows: auto; } .about-photo-card { grid-column: 1 / 2; grid-row: 1 / 2; aspect-ratio: 4/3; } .about-bio-card { grid-column: 1 / 2; grid-row: 2 / 3; } .about-benefit { grid-column: 1 / 2 !important; grid-row: auto !important; display: grid; grid-template-columns: 48px 1fr; grid-template-rows: auto auto; column-gap: 20px; row-gap: 4px; padding: 24px; text-align: left; align-items: center; justify-items: flex-start; } .about-benefit-icon { grid-column: 1 / 2; grid-row: 1 / 3; margin-bottom: 0; } .about-benefit h4 { grid-column: 2 / 3; grid-row: 1 / 2; margin-bottom: 0; align-self: end; } .about-benefit p { grid-column: 2 / 3; grid-row: 2 / 3; align-self: start; } } .faq-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; } .faq-sticky { position: sticky; top: 120px; } .faq-accordion { display: flex; flex-direction: column; gap: 16px; } .faq-item { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; overflow: hidden; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); } .faq-item:hover { background: rgba(255,255,255,0.04); border-color: rgba(217, 32, 39, 0.3); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); } .faq-item.active { background: rgba(217, 32, 39, 0.04); border-color: rgba(217, 32, 39, 0.4); box-shadow: 0 10px 30px rgba(217, 32, 39, 0.1); } .faq-btn { width: 100%; text-align: left; background: none; border: none; padding: 24px; font-size: 17px; font-weight: 700; color: var(--text0); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: inherit; transition: color 0.2s; } .faq-btn:hover { color: var(--red); } .faq-icon { transition: all 0.3s; color: var(--text2); background: rgba(255,255,255,0.05); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid transparent; } .faq-item:hover .faq-icon { color: var(--red); background: rgba(217, 32, 39, 0.1); border-color: rgba(217, 32, 39, 0.2); } .faq-item.active .faq-icon { transform: rotate(45deg); background: var(--red); color: #fff; border-color: var(--red); } .faq-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; } .faq-item.active .faq-content { max-height: 200px; } .faq-text { padding: 0 24px 24px; font-size: 15px; color: var(--text2); line-height: 1.7; } .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; } .contact-form-card { background: rgba(15,15,15,0.6); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.6); } .form-tabs { display: flex; border-bottom: 1px solid rgba(255,255,255,0.1); } .form-tab { flex: 1; padding: 18px; background: none; border: none; color: var(--text3); font-weight: 700; font-size: 14px; cursor: pointer; font-family: inherit; transition: all 0.3s; position: relative; } .form-tab.active { color: var(--text0); background: rgba(255,255,255,0.02); } .form-tab::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--red); transform: scaleX(0); transition: transform 0.3s; } .form-tab.active::after { transform: scaleX(1); } .tab-content { display: none; padding: 32px; } .tab-content.active { display: block; animation: heroFadeIn 0.4s ease; } .chat-header { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--border2); margin-bottom: 24px; } .chat-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; } .chat-bubble { background: rgba(255,255,255,0.08); padding: 14px 18px; border-radius: 0 16px 16px 16px; font-size: 14.5px; color: var(--text1); line-height: 1.6; margin-bottom: 24px; width: fit-content; max-width: 90%; position: relative; } .chat-bubble::before { content: ''; position: absolute; top: 0; left: -8px; width: 0; height: 0; border-style: solid; border-width: 0 8px 10px 0; border-color: transparent rgba(255,255,255,0.08) transparent transparent; } .input-group { margin-bottom: 20px; } .input-label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text3); margin-bottom: 8px; } .input-field { width: 100%; background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; color: var(--text0); font-family: inherit; font-size: 14.5px; transition: all 0.3s; outline: none; } .input-field:focus { border-color: var(--red); background: rgba(255,255,255,0.05); box-shadow: 0 0 0 4px rgba(217, 32, 39, 0.15); } textarea.input-field { resize: vertical; min-height: 110px; } .floating-wa { position: fixed; bottom: 32px; right: 32px; width: 64px; height: 64px; border-radius: 50%; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(217, 32, 39, 0.4); z-index: 900; transition: all 0.3s; transform: scale(0); opacity: 0; pointer-events: none; } .floating-wa.visible { transform: scale(1); opacity: 1; pointer-events: auto; } .floating-wa:hover { transform: scale(1.1); box-shadow: 0 15px 40px rgba(217, 32, 39, 0.6); } footer { padding: 80px 0 40px; border-top: 1px solid var(--border2); text-align: center; } .footer-logo { height: 28px; width: auto; filter: brightness(0) invert(1); margin-bottom: 24px; opacity: 0.8; } .footer-text { font-size: 14.5px; color: var(--text2); max-width: 450px; margin: 0 auto 40px; line-height: 1.8; } .footer-socials { display: flex; justify-content: center; gap: 32px; margin-bottom: 60px; } .footer-social-link { color: var(--text2); font-size: 14px; text-decoration: none; font-weight: 500; transition: color 0.3s; text-transform: uppercase; letter-spacing: 0.1em; } .footer-social-link:hover { color: #fff; } .footer-bottom { border-top: 1px solid var(--border2); padding-top: 24px; font-size: 13.5px; color: var(--text3); display: flex; justify-content: space-between; align-items: center; } @media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); align-items: stretch; } .about-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 64px; } .hero h1 { font-size: clamp(36px, 8vw, 64px); white-space: normal; } } @media (max-width: 768px) { .reveal-delay-1, .reveal-delay-2, .reveal-delay-3 { transition-delay: 0s !important; } .section { padding: 80px 0; } .nav-links { display: none; } .navbar .btn-sm { display: none; } .mobile-menu-btn { display: block; } .hero { padding-top: 100px; min-height: 100svh; } .hero h1 { font-size: clamp(32px, 8.5vw, 64px); line-height: 1.15; } .hero p { font-size: 16px; margin-bottom: 32px; } .hero-cta { flex-direction: column; width: 100%; gap: 12px; } .hero-cta .btn { width: 100%; justify-content: center; padding: 14px; } .ticker-wrapper { padding: 16px 0; } .services-grid { grid-template-columns: 1fr; } .benefits-grid { grid-template-columns: 1fr; } .benefit-item { padding: 24px; border-right: none; padding-left: 0; } .footer-grid { flex-direction: column; } .footer-links { flex-direction: column; gap: 40px; } .footer-bottom { flex-direction: column-reverse; gap: 16px; text-align: center; } .floating-wa { bottom: 24px; right: 24px; width: 56px; height: 56px; } }