:root { --green: #FF7A18; --green-dark: #E65C00; --bg-light: #FFF6EF; --text-dark: #1F2937; --text-light: #6B7280; } * { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text-dark); background: #fff; line-height: 1.6; } /* ====== GLOBAL ====== */ .container { max-width: 1200px; margin: auto; padding: 80px 24px; } h1, h2, h3 { font-weight: 700; letter-spacing: -0.02em; } h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); line-height: 1.2; } h2 { font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: 16px; } p { color: var(--text-light); font-size: 1.05rem; } .btn { display: inline-block; padding: 14px 28px; border-radius: 10px; font-weight: 600; text-decoration: none; transition: 0.25s ease; } .btn-primary { background: var(--green); color: #fff; } .btn-primary:hover { background: var(--green-dark); } .btn-outline { border: 2px solid var(--green); color: var(--green); margin-left: 12px; } .btn-outline:hover { background: var(--green); color: #fff; } /* ====== SECTIONS ====== */ .section-light { background: var(--bg-light); } .center { text-align: center; } /* ====== FOOTER ====== */ footer { padding: 40px 24px; text-align: center; font-size: 0.9rem; color: var(--text-light); } /* ====== FOOTER ====== */ .site-footer { background: #0F1F1A; color: #cfeee1; } .footer-container { max-width: 1200px; margin: auto; padding: 70px 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; } .footer-col h3, .footer-col h4 { font-size: 17px; color: #fff; margin-bottom: 16px; text-align: left; } .footer-col p, .footer-col a { font-size: 17px; color: #cfeee1; display: block; margin-bottom: 8px; text-align: left; text-decoration: none; } .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); text-align: center; padding: 20px; font-size: 0.85rem; color: #9bd8c2; } .footer-whatsapp { display: inline-flex; text-align: center; padding: 10px 10px 10px 35px; background: rgba(37, 211, 102, 0.15); /* soft green */ border: 1px solid rgba(37, 211, 102, 0.35); border-radius: 999px; color: #ffffff; font-size: 14px; font-weight: 500; text-decoration: none; max-width: 200px; transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease; margin-top: 20px; } .footer-whatsapp i { font-size: 18px; color: #25D366; } .footer-whatsapp:hover { background: rgba(37, 211, 102, 0.25); box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35); transform: translateY(-1px); text-decoration: none; } .footer-whatsapp i { font-size: 18px; color: #25D366; text-decoration: none; } .footer-whatsapp:hover { color: #ffffff; transform: translateX(2px); text-decoration: none; } .logo { padding: 5px 17px 5px 14px!important; border-radius: 8px; background: var(--green); border: 0; position: fixed; top: 17px; left: 10px; z-index: 999; } .logo img { height: 30px; } .footer-logo img { height: 40px; /* adjust if needed */ width: auto; margin-bottom: 15px; } /* ===== NAVBAR (WHITE) ===== */ .navbar { position: fixed; top: 0; width: 100%; background: #ffffff; z-index: 1000; border-bottom: 1px solid #f0f0f0; } .nav-container { max-width: 1200px; margin: auto; padding: 24px 24px; display: flex; align-items: center; justify-content: space-between; } .nav-links a { margin-left: 28px; text-decoration: none; font-weight: 500; color: #1F2937; transition: color .2s ease; } .nav-links a:hover { color: var(--green); } /* Login button style */ .nav-login { padding: 8px 16px; border-radius: 8px; border: 1.5px solid var(--green); color: var(--green) !important; margin: 2px; } /* Mobile Menu Icon */ .menu-toggle { display: none; font-size: 30px; color: #1F2937; cursor: pointer; } /* Mobile Dropdown */ .mobile-menu { display: none; background: #ffffff; border-top: 1px solid #f0f0f0; box-shadow: 0 10px 30px rgba(0,0,0,0.06); } .mobile-menu a { display: block; padding: 16px 24px; text-decoration: none; color: #1F2937; font-size: 1.05rem; border-bottom: 1px solid #f3f3f3; } /* Responsive */ @media (max-width: 600px) { .nav-links { display: none; } .menu-toggle { display: block; } .nav-container { padding: 12px 16px; } } /* Footer responsive */ @media (max-width: 900px) { .footer-container { grid-template-columns: 1fr; text-align: center; } } /* ====== ANIMATION ====== */ @keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } } /* ====== RESPONSIVE ====== */ @media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } .steps, .features { grid-template-columns: 1fr; } }