:root {
  --cream: #FAF6EC;
  --cream-dark: #F1EADA;
  --white: #FFFFFF;
  --green-dark: #234634;
  --green: #3F7A5D;
  --green-mid: #5C9A78;
  --green-light: #E7F0E5;
  --terracotta: #D98E5D;
  --terracotta-dark: #C97A47;
  --text-dark: #26332C;
  --text-muted: #5C6B62;
  --border: #E1D9C4;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow: 0 10px 30px rgba(35, 70, 52, 0.08);
  --shadow-lg: 0 20px 50px rgba(35, 70, 52, 0.14);
  --transition: all 0.25s ease;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito Sans', 'Segoe UI', sans-serif; background: var(--cream); color: var(--text-dark); line-height: 1.65; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Poppins', 'Segoe UI', sans-serif; color: var(--green-dark); line-height: 1.25; font-weight: 600; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; }
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-alt { background: var(--cream-dark); }
.section-tag { display: inline-block; color: var(--terracotta-dark); background: rgba(217, 142, 93, 0.14); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 16px; border-radius: 50px; margin-bottom: 16px; }
.section-header { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-header h2 { font-size: 2.2rem; margin-bottom: 14px; }
.section-header p { color: var(--text-muted); font-size: 1.08rem; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 30px; border-radius: 50px; font-weight: 700; font-size: 0.98rem; transition: var(--transition); white-space: nowrap; }
.btn-primary { background: var(--green); color: var(--white); box-shadow: 0 8px 20px rgba(63, 122, 93, 0.3); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(63, 122, 93, 0.38); }
.btn-outline { background: transparent; color: var(--green-dark); border: 2px solid var(--green-dark); }
.btn-outline:hover { background: var(--green-dark); color: var(--white); transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--green-dark); }
.btn-light:hover { background: var(--cream-dark); transform: translateY(-2px); }
.btn-block { width: 100%; }
.site-header { position: sticky; top: 0; width: 100%; z-index: 1000; background: rgba(250, 246, 236, 0.92); backdrop-filter: blur(8px); border-bottom: 1px solid transparent; transition: var(--transition); }
.site-header.scrolled { border-bottom: 1px solid var(--border); box-shadow: 0 4px 20px rgba(35, 70, 52, 0.06); }
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; max-width: 1160px; margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.18rem; color: var(--green-dark); }
.logo-mark { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 12px; background: var(--green); color: var(--white); flex-shrink: 0; }
.logo-mark svg { width: 22px; height: 22px; }
.logo-text span { display: block; font-family: 'Nunito Sans', sans-serif; font-weight: 600; font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.03em; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-weight: 600; font-size: 0.96rem; color: var(--text-dark); position: relative; padding: 6px 0; transition: var(--transition); }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--terracotta); transition: var(--transition); }
.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--green-dark); }
.nav-cta { display: flex; align-items: center; gap: 22px; }
.nav-phone { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.92rem; color: var(--green-dark); transition: var(--transition); }
.nav-phone svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }
.nav-phone:hover { color: var(--green); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: transparent; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--green-dark); border-radius: 3px; transition: var(--transition); }
.hero { position: relative; padding: 80px 0 100px; overflow: hidden; }
.hero .container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--green-light); color: var(--green-dark); font-weight: 700; font-size: 0.85rem; padding: 8px 18px; border-radius: 50px; margin-bottom: 22px; }
.hero h1 { font-size: 3rem; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--green); }
.hero p { font-size: 1.12rem; color: var(--text-muted); max-width: 520px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stats div strong { display: block; font-family: 'Poppins', sans-serif; font-size: 1.6rem; color: var(--green-dark); }
.hero-stats div span { font-size: 0.88rem; color: var(--text-muted); }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-card { position: relative; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 34px; width: 100%; max-width: 380px; z-index: 2; }
.hero-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.hero-card-top span { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }
.hero-card-amount { font-family: 'Poppins', sans-serif; font-size: 2rem; color: var(--green-dark); margin-bottom: 6px; }
.hero-card-sub { color: var(--green); font-weight: 700; font-size: 0.92rem; margin-bottom: 26px; }
.hero-bars { display: flex; align-items: flex-end; gap: 10px; height: 90px; margin-bottom: 20px; }
.hero-bars span { flex: 1; background: var(--green-light); border-radius: 6px 6px 0 0; }
.hero-bars span:nth-child(1) { height: 40%; }
.hero-bars span:nth-child(2) { height: 65%; }
.hero-bars span:nth-child(3) { height: 50%; }
.hero-bars span:nth-child(4) { height: 85%; background: var(--green); }
.hero-bars span:nth-child(5) { height: 60%; }
.hero-bars span:nth-child(6) { height: 95%; background: var(--terracotta); }
.hero-card-foot { display: flex; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 18px; font-size: 0.85rem; color: var(--text-muted); }
.hero-blob { position: absolute; width: 460px; height: 460px; background: radial-gradient(circle, var(--green-light) 0%, transparent 70%); border-radius: 50%; top: -80px; right: -100px; z-index: 1; }
.hero-chip { position: absolute; background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow); padding: 14px 18px; display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 0.85rem; color: var(--green-dark); z-index: 3; }
.hero-chip-1 { top: -18px; left: -18px; }
.hero-chip-2 { bottom: -18px; right: -18px; }
.hero-chip .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--terracotta); }
.trust-bar { padding: 34px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.trust-stat { text-align: center; }
.trust-stat strong { display: block; font-family: 'Poppins', sans-serif; font-size: 1.7rem; color: var(--green-dark); }
.trust-stat span { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.card { background: var(--white); border-radius: var(--radius-md); padding: 38px 32px; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid transparent; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border); }
.card-icon { display: flex; align-items: center; justify-content: center; width: 58px; height: 58px; border-radius: 16px; background: var(--green-light); color: var(--green-dark); margin-bottom: 22px; }
.card-icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.card p { color: var(--text-muted); margin-bottom: 18px; }
.card-link { font-weight: 700; color: var(--green); font-size: 0.92rem; display: inline-flex; align-items: center; gap: 6px; }
.card-link svg { width: 16px; height: 16px; transition: var(--transition); }
.card-link:hover svg { transform: translateX(4px); }
.service-card-lg { background: var(--white); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow); }
.service-card-lg .card-icon { width: 66px; height: 66px; }
.service-card-lg h3 { font-size: 1.5rem; margin-bottom: 14px; }
.check-list { margin: 22px 0; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; color: var(--text-dark); }
.check-list li svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--green); margin-top: 2px; }
.feature-item { display: flex; gap: 18px; }
.feature-item .card-icon { margin-bottom: 0; flex-shrink: 0; }
.feature-item h4 { font-size: 1.1rem; margin-bottom: 8px; }
.feature-item p { color: var(--text-muted); font-size: 0.96rem; }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; position: relative; }
.process-step { text-align: center; position: relative; padding: 0 10px; }
.process-num { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: var(--green-dark); color: var(--white); font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.2rem; margin: 0 auto 22px; }
.process-step h4 { font-size: 1.15rem; margin-bottom: 10px; }
.process-step p { color: var(--text-muted); font-size: 0.95rem; }
.testimonial-card { background: var(--white); border-radius: var(--radius-md); padding: 34px; box-shadow: var(--shadow); }
.stars { color: var(--terracotta); margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { color: var(--text-dark); font-size: 1.02rem; margin-bottom: 22px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--green-light); color: var(--green-dark); display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: 'Poppins', sans-serif; }
.testimonial-author strong { display: block; font-size: 0.95rem; color: var(--green-dark); }
.testimonial-author span { font-size: 0.82rem; color: var(--text-muted); }
.cta-banner { background: var(--green-dark); border-radius: var(--radius-lg); padding: 60px; display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; width: 300px; height: 300px; background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%); top: -100px; right: -60px; }
.cta-banner h2 { color: var(--white); font-size: 1.9rem; margin-bottom: 10px; }
.cta-banner p { color: rgba(255,255,255,0.75); max-width: 460px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; position: relative; z-index: 2; }
.site-footer { background: var(--green-dark); color: rgba(255,255,255,0.8); padding: 70px 0 24px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--white); margin-bottom: 18px; }
.footer-logo .logo-mark { background: rgba(255,255,255,0.12); }
.footer-col p { font-size: 0.92rem; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 0.93rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--terracotta); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; }
.footer-contact li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; color: var(--terracotta); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-social a:hover { background: var(--terracotta); }
.footer-social svg { width: 17px; height: 17px; color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.14); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; }
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--white); }
.page-hero { padding: 70px 0 60px; text-align: center; position: relative; }
.page-hero .breadcrumb { color: var(--text-muted); font-weight: 600; font-size: 0.9rem; margin-bottom: 18px; }
.page-hero .breadcrumb a { color: var(--green); }
.page-hero h1 { font-size: 2.6rem; max-width: 700px; margin: 0 auto 18px; }
.page-hero p { color: var(--text-muted); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.about-visual { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 40px; position: relative; }
.about-visual-inner { background: var(--green-light); border-radius: var(--radius-md); padding: 40px; text-align: center; }
.about-visual-inner .card-icon { margin: 0 auto 18px; width: 74px; height: 74px; background: var(--white); }
.about-visual-inner h3 { font-size: 1.3rem; margin-bottom: 8px; }
.about-visual-inner p { color: var(--text-muted); font-size: 0.92rem; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.profile-header { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 26px; padding-bottom: 26px; border-bottom: 1px solid var(--border); }
.profile-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--green-light); color: var(--green-dark); display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: 'Poppins', sans-serif; font-size: 1.4rem; margin-bottom: 16px; }
.profile-header strong { display: block; font-family: 'Poppins', sans-serif; font-size: 1.15rem; color: var(--green-dark); margin-bottom: 4px; }
.profile-header span { font-size: 0.85rem; color: var(--text-muted); }
.credential-row { display: flex; align-items: center; gap: 20px; background: var(--white); border-radius: var(--radius-md); padding: 24px 30px; box-shadow: var(--shadow); }
.credential-row .card-icon { margin-bottom: 0; }
.credential-row h4 { font-size: 1.02rem; margin-bottom: 4px; }
.credential-row p { color: var(--text-muted); font-size: 0.88rem; }
.pricing-toggle-note { text-align: center; color: var(--text-muted); margin-bottom: 40px; }
.pricing-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px 34px; box-shadow: var(--shadow); position: relative; display: flex; flex-direction: column; transition: var(--transition); }
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.featured { background: var(--green-dark); color: var(--white); transform: scale(1.05); }
.pricing-card.featured:hover { transform: scale(1.05) translateY(-6px); }
.pricing-card.featured h3, .pricing-card.featured .price { color: var(--white); }
.pricing-card.featured p, .pricing-card.featured .check-list li { color: rgba(255,255,255,0.82); }
.pricing-card.featured .check-list li svg { color: var(--terracotta); }
.badge-popular { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--terracotta); color: var(--white); font-size: 0.78rem; font-weight: 700; padding: 6px 18px; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.04em; }
.pricing-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.pricing-card .price { font-family: 'Poppins', sans-serif; font-size: 2.4rem; color: var(--green-dark); margin: 14px 0 4px; }
.pricing-card .price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.pricing-card .plan-desc { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 10px; }
.pricing-card .check-list { flex-grow: 1; }
.faq-item { background: var(--white); border-radius: var(--radius-md); margin-bottom: 16px; box-shadow: var(--shadow); overflow: hidden; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 22px 28px; background: transparent; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1.02rem; color: var(--green-dark); text-align: left; }
.faq-question .plus { flex-shrink: 0; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; color: var(--green); transition: var(--transition); }
.faq-item.active .faq-question .plus { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 28px 24px; color: var(--text-muted); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.3fr; gap: 44px; align-items: start; }
.contact-info-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.contact-info-card h3 { font-size: 1.3rem; margin-bottom: 24px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-info-item .card-icon { margin-bottom: 0; flex-shrink: 0; width: 48px; height: 48px; }
.contact-info-item h4 { font-size: 0.98rem; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { color: var(--text-muted); font-size: 0.93rem; }
.map-placeholder { margin-top: 30px; border-radius: var(--radius-md); background: var(--green-light); height: 180px; display: flex; align-items: center; justify-content: center; color: var(--green-dark); font-weight: 600; font-size: 0.9rem; text-align: center; padding: 20px; }
.contact-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow); }
.contact-form-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.contact-form-card > p { color: var(--text-muted); margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-weight: 700; font-size: 0.88rem; color: var(--green-dark); }
.form-group input, .form-group select, .form-group textarea { padding: 14px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); background: var(--cream); font-family: inherit; font-size: 0.95rem; color: var(--text-dark); transition: var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--green); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-error { color: #C0392B; font-size: 0.8rem; min-height: 16px; }
.form-group.has-error input, .form-group.has-error select, .form-group.has-error textarea { border-color: #C0392B; }
.form-success { display: none; background: var(--green-light); color: var(--green-dark); border-radius: var(--radius-sm); padding: 18px 20px; font-weight: 600; margin-bottom: 20px; align-items: center; gap: 10px; }
.form-success.show { display: flex; }
.form-success svg { width: 22px; height: 22px; flex-shrink: 0; }
.legal-content { max-width: 760px; margin: 0 auto; color: var(--text-muted); }
.legal-content h2 { color: var(--green-dark); font-size: 1.4rem; margin: 40px 0 14px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { margin-bottom: 14px; line-height: 1.7; }
.legal-content ul { padding-left: 22px; }
.legal-content .legal-updated { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 36px; }
.form-error-banner { display: none; background: #FBEAE8; color: #C0392B; border-radius: var(--radius-sm); padding: 14px 18px; font-weight: 600; font-size: 0.92rem; margin-bottom: 20px; }
.form-error-banner.show { display: block; }
.form-error-banner a { color: inherit; text-decoration: underline; }
.btn .btn-loading { display: none; }
.btn.is-loading .btn-label { display: none; }
.btn.is-loading .btn-loading { display: inline; }
.btn.is-loading { opacity: 0.8; pointer-events: none; }
@media (max-width: 980px) {
  .hero .container, .about-grid, .contact-wrap { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .grid-2, .grid-3, .grid-4, .value-grid, .process-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-6px); }
}
@media (max-width: 768px) {
  .nav-links { position: fixed; top: 78px; left: 0; right: 0; background: var(--cream); flex-direction: column; align-items: flex-start; gap: 0; padding: 10px 24px 20px; border-bottom: 1px solid var(--border); transform: translateY(-140%); opacity: 0; transition: var(--transition); z-index: 999; }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-links a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--border); }
  .nav-cta .btn-primary { display: none; }
  .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .logo-text { font-size: 0.92rem; }
  .logo-text span { font-size: 0.66rem; }
  .hero h1 { font-size: 2.2rem; }
  .section { padding: 60px 0; }
  .grid-2, .grid-3, .grid-4, .value-grid, .process-steps { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 28px; text-align: center; justify-content: center; }
  .cta-banner .cta-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar .container { justify-content: center; text-align: center; }
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (max-width: 480px) {
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
}
