/* =============================================
   NIKAH.CC — Homepage Styles
   style.css
============================================= */

/* =============================================
   RESET & VARIABLES
============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --gold:        #C9A96E;
    --gold-light:  #E8D5A3;
    --gold-dark:   #A07840;
    --brown:       #6B4F3A;
    --cream:       #FDF8F3;
    --cream-dark:  #F5EDE0;
    --rose:        #C9899C;
    --rose-light:  #F0D8E0;
    --sage:        #8A9B8E;
    --dark:        #1F150D;
    --text:        #4A3728;
    --text-light:  #7A6558;
    --white:       #FFFFFF;
}

html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* =============================================
   NAVIGATION
============================================= */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 22px 48px;
    display: flex; align-items: center; justify-content: space-between;
    transition: all 0.4s ease;
}
nav.scrolled {
    background: rgba(253, 248, 243, 0.96);
    backdrop-filter: blur(12px);
    padding: 14px 48px;
    box-shadow: 0 2px 24px rgba(201, 169, 110, 0.12);
}
.nav-logo {
    font-family: 'Great Vibes', cursive;
    font-size: 2.2rem; color: var(--gold);
    text-decoration: none; letter-spacing: 1px;
}
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
    text-decoration: none; color: var(--text);
    font-size: 0.78rem; font-weight: 500;
    letter-spacing: 1.8px; text-transform: uppercase;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
    background: var(--gold) !important;
    color: var(--white) !important;
    padding: 10px 26px !important;
    border-radius: 30px !important;
    transition: background 0.3s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

/* Mobile Menu */
.mobile-menu {
    display: none; position: fixed; inset: 0;
    background: var(--white); z-index: 999;
    flex-direction: column; align-items: center; justify-content: center; gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-close { position: absolute; top: 22px; right: 28px; font-size: 1.6rem; cursor: pointer; background: none; border: none; color: var(--text); }
.mobile-menu a { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; color: var(--dark); text-decoration: none; transition: color 0.3s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .m-wa { color: #25D366 !important; }

/* =============================================
   HERO
============================================= */
.hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    background: linear-gradient(150deg, #FDF8F3 0%, #F5EDE0 55%, #EAD9CC 100%);
}

/* Decorative rings */
.ring {
    position: absolute; border-radius: 50%;
    border: 1px solid var(--gold-light);
    pointer-events: none;
    animation: spin 25s linear infinite;
}
.ring-1 { width: 180px; height: 180px; top: 12%; right: 8%; opacity: 0.35; }
.ring-2 { width: 110px; height: 110px; bottom: 18%; left: 6%; opacity: 0.25; animation-direction: reverse; animation-duration: 18s; }
.ring-3 { width: 70px; height: 70px; top: 42%; right: 4%; opacity: 0.45; animation-duration: 12s; }
.ring-4 { width: 260px; height: 260px; top: -80px; left: -60px; opacity: 0.08; }

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Petal dots */
.petal {
    position: absolute; border-radius: 50%;
    background: var(--gold); pointer-events: none;
    animation: petaldrift 6s ease-in-out infinite;
}
.petal-1 { width: 6px; height: 6px; top: 25%; right: 15%; opacity: 0.3; animation-delay: 0s; }
.petal-2 { width: 4px; height: 4px; top: 60%; left: 12%; opacity: 0.2; animation-delay: 1.5s; }
.petal-3 { width: 5px; height: 5px; top: 35%; right: 25%; opacity: 0.25; animation-delay: 3s; }

@keyframes petaldrift {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    50% { transform: translate(6px, -12px) scale(1.2); opacity: 0.6; }
}

.hero-content {
    text-align: center; z-index: 10;
    padding: 130px 24px 90px;
    max-width: 820px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--white); border: 1px solid var(--gold-light);
    padding: 8px 22px; border-radius: 30px;
    font-size: 0.7rem; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--gold-dark); margin-bottom: 28px;
    animation: fadeInDown 0.8s ease;
}
.badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: 0.5; } }

.hero-script {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    color: var(--rose); display: block; margin-bottom: 6px;
    animation: fadeInUp 0.8s ease 0.2s both;
}
h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 6.5vw, 5.2rem);
    font-weight: 600; color: var(--dark);
    line-height: 1.08; margin-bottom: 22px;
    animation: fadeInUp 0.8s ease 0.3s both;
}
h1 em { color: var(--gold); font-style: italic; }

.hero-desc {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: var(--text-light); line-height: 1.85;
    max-width: 560px; margin: 0 auto 36px;
    font-weight: 300;
    animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-desc strong { color: var(--brown); font-weight: 600; }

.hero-price-pill {
    display: inline-flex; align-items: baseline; gap: 7px;
    background: var(--gold); color: var(--white);
    padding: 13px 32px; border-radius: 40px;
    margin-bottom: 38px;
    animation: fadeInUp 0.8s ease 0.5s both;
}
.hp-label  { font-size: 0.72rem; letter-spacing: 1px; opacity: 0.85; }
.hp-amount { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 700; }
.hp-period { font-size: 0.72rem; opacity: 0.85; }

.hero-btns {
    display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}
.btn-wa {
    display: inline-flex; align-items: center; gap: 10px;
    background: #25D366; color: var(--white);
    padding: 15px 36px; border-radius: 50px;
    text-decoration: none; font-size: 0.88rem; font-weight: 600;
    letter-spacing: 0.3px; transition: all 0.3s;
    box-shadow: 0 8px 28px rgba(37,211,102,0.32);
}
.btn-wa:hover { background: #1db954; transform: translateY(-2px); box-shadow: 0 14px 36px rgba(37,211,102,0.4); }
.btn-outline {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; color: var(--text);
    padding: 15px 36px; border-radius: 50px;
    text-decoration: none; font-size: 0.88rem; font-weight: 500;
    border: 1.5px solid var(--gold-light); transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-dark); transform: translateY(-2px); }

.scroll-hint {
    position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    color: var(--text-light); font-size: 0.65rem; letter-spacing: 2.5px;
    text-transform: uppercase;
    animation: bounce-hint 2.4s ease-in-out infinite;
}
.scroll-line { width: 1px; height: 38px; background: linear-gradient(to bottom, var(--gold), transparent); }
@keyframes bounce-hint {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(9px); }
}

/* =============================================
   SHARED SECTION LAYOUT
============================================= */
section { padding: 100px 24px; }
.container { max-width: 1160px; margin: 0 auto; }

.section-head { text-align: center; margin-bottom: 68px; }
.s-label { display: inline-block; font-size: 0.68rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.s-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.9rem, 3.8vw, 3rem); font-weight: 600; color: var(--dark); line-height: 1.18; margin-bottom: 14px; }
.s-title span { color: var(--gold); font-style: italic; }
.s-divider { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 16px 0; }
.s-line { width: 55px; height: 1px; background: var(--gold-light); }
.s-icon { color: var(--gold); font-size: 0.9rem; }
.s-desc { color: var(--text-light); font-size: 0.97rem; max-width: 520px; margin: 0 auto; line-height: 1.85; font-weight: 300; }

/* =============================================
   FEATURES
============================================= */
#features { background: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.feature-card {
    background: var(--cream);
    border-radius: 22px; padding: 38px 28px;
    text-align: center; border: 1px solid transparent;
    transition: all 0.4s ease; position: relative; overflow: hidden;
}
.feature-card::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
    opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover { border-color: var(--gold-light); transform: translateY(-7px); box-shadow: 0 22px 56px rgba(201,169,110,0.15); }
.feature-card:hover::after { opacity: 1; }
.f-icon {
    width: 68px; height: 68px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 18px; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 22px; font-size: 1.55rem; color: var(--white);
    box-shadow: 0 8px 22px rgba(201,169,110,0.3);
}
.f-title { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.f-desc { color: var(--text-light); font-size: 0.88rem; line-height: 1.78; font-weight: 300; }
.f-desc strong { color: var(--brown); font-weight: 600; }

/* =============================================
   HOW IT WORKS
============================================= */
#how { background: var(--cream-dark); }
.steps { display: flex; flex-direction: column; gap: 22px; max-width: 700px; margin: 0 auto; }
.step {
    display: flex; align-items: flex-start; gap: 22px;
    background: var(--white); border-radius: 20px; padding: 28px;
    border: 1px solid var(--gold-light); transition: all 0.3s ease;
}
.step:hover { box-shadow: 0 12px 40px rgba(201,169,110,0.15); transform: translateX(5px); }
.step-num {
    flex-shrink: 0; width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: var(--white);
    box-shadow: 0 4px 14px rgba(201,169,110,0.3);
}
.step-title { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.step-desc { color: var(--text-light); font-size: 0.87rem; line-height: 1.75; font-weight: 300; }
.step-desc strong { color: var(--brown); font-weight: 600; }

/* =============================================
   TEMPLATES / PORTFOLIO
============================================= */
#templates { background: var(--white); }
.templates-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 32px; margin-bottom: 50px; }

.tpl-card {
    border-radius: 22px; overflow: hidden;
    border: 1px solid var(--gold-light); background: var(--white);
    transition: all 0.4s ease;
}
.tpl-card:hover { transform: translateY(-9px); box-shadow: 0 28px 64px rgba(201,169,110,0.22); border-color: var(--gold); }

.tpl-preview {
    height: 360px; display: flex; align-items: center;
    justify-content: center; position: relative; overflow: hidden;
}

/* --- Template 1: Elegant Ivory --- */
.tpl-ivory { background: linear-gradient(160deg, #FEF9F0 0%, #EEE0CF 100%); }
.tpl-ivory .mini { background: #FFFDF9; border: 1px solid rgba(201,169,110,0.3); }
.tpl-ivory .mini::before,
.tpl-ivory .mini::after { content: '✦'; position: absolute; font-size: 0.55rem; color: var(--gold); opacity: 0.5; }
.tpl-ivory .mini::before { top: 9px; left: 9px; }
.tpl-ivory .mini::after  { bottom: 9px; right: 9px; }

/* --- Template 2: Rustic Garden --- */
.tpl-garden { background: linear-gradient(160deg, #EDF2EA 0%, #CDD9CA 100%); }
.tpl-garden .mini { background: rgba(255,255,255,0.92); border-top: 4px solid #7A9170; }
.tpl-garden .m-name { color: #3D5E38 !important; }
.tpl-garden .m-and  { color: #8A9B8E !important; }
.tpl-garden .m-date { border-top-color: #8A9B8E !important; color: #6B8065 !important; }

/* --- Template 3: Midnight Romance --- */
.tpl-midnight { background: linear-gradient(160deg, #18162A 0%, #2A1530 100%); }
.tpl-midnight .mini { background: rgba(255,255,255,0.05); border: 1px solid rgba(201,169,110,0.35); }
.tpl-midnight .m-name { color: #FFFFFF !important; }
.tpl-midnight .m-and  { color: rgba(255,255,255,0.4) !important; }
.tpl-midnight .m-date { border-top-color: rgba(201,169,110,0.3) !important; color: rgba(255,255,255,0.45) !important; }

/* Mini invite card */
.mini {
    width: 72%; border-radius: 10px; padding: 26px 20px;
    text-align: center; box-shadow: 0 10px 32px rgba(0,0,0,0.1);
    position: relative;
}
.m-script { font-family: 'Great Vibes', cursive; font-size: 0.82rem; color: var(--gold); margin-bottom: 3px; }
.m-name   { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 600; color: var(--dark); }
.m-and    { font-family: 'Great Vibes', cursive; font-size: 0.68rem; color: var(--text-light); display: block; margin: 1px 0; }
.m-div    { display: flex; align-items: center; justify-content: center; gap: 6px; margin: 7px 0; font-size: 0.45rem; color: var(--gold); letter-spacing: 4px; }
.m-date   { font-size: 0.59rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); padding-top: 9px; border-top: 1px solid var(--gold-light); }

/* Template badge */
.tpl-badge {
    position: absolute; top: 14px; right: 14px;
    background: var(--gold); color: var(--white);
    font-size: 0.62rem; letter-spacing: 1px; text-transform: uppercase;
    padding: 5px 12px; border-radius: 20px;
}

.tpl-info { padding: 20px 22px 24px; }
.tpl-name { font-family: 'Cormorant Garamond', serif; font-size: 1.18rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.tpl-desc { color: var(--text-light); font-size: 0.82rem; line-height: 1.65; font-weight: 300; }
.tpl-tags { display: flex; gap: 7px; margin-top: 13px; flex-wrap: wrap; }
.tpl-tag  { background: var(--cream); color: var(--gold-dark); font-size: 0.67rem; padding: 4px 11px; border-radius: 20px; border: 1px solid var(--gold-light); }

/* =============================================
   SAMPLE / DEMO BANNER
============================================= */
#demo {
    background: linear-gradient(130deg, var(--dark) 0%, #3A2015 100%);
    text-align: center; position: relative; overflow: hidden;
}
#demo::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(201,169,110,0.07) 0%, transparent 70%);
}
#demo .s-title { color: var(--white); }
#demo .s-label { color: var(--gold-light); }
#demo .s-desc  { color: rgba(255,255,255,0.6); }
.demo-url {
    display: inline-flex; align-items: center; gap: 12px;
    background: rgba(201,169,110,0.13); border: 1px solid rgba(201,169,110,0.3);
    padding: 14px 28px; border-radius: 12px;
    font-size: 1.05rem; color: var(--gold-light); letter-spacing: 0.5px;
    margin: 26px 0 32px;
}
.btn-demo {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gold); color: var(--white);
    padding: 15px 38px; border-radius: 50px; text-decoration: none;
    font-size: 0.9rem; font-weight: 600; letter-spacing: 0.3px;
    transition: all 0.3s; box-shadow: 0 8px 28px rgba(201,169,110,0.3);
}
.btn-demo:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 14px 38px rgba(201,169,110,0.4); }

/* =============================================
   PRICING
============================================= */
#pricing { background: var(--cream); }
.pricing-wrap { max-width: 480px; margin: 0 auto; }
.pricing-card {
    background: var(--white); border-radius: 30px;
    padding: 52px 40px; text-align: center;
    border: 2px solid var(--gold); position: relative;
    box-shadow: 0 28px 80px rgba(201,169,110,0.2);
}
.pricing-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--gold); color: var(--white);
    font-size: 0.68rem; letter-spacing: 1.8px; text-transform: uppercase;
    padding: 6px 22px; border-radius: 20px; white-space: nowrap;
}
.p-name    { font-family: 'Great Vibes', cursive; font-size: 2rem; color: var(--gold); margin-bottom: 4px; }
.p-tagline { color: var(--text-light); font-size: 0.82rem; margin-bottom: 28px; font-weight: 300; }
.p-price   { margin-bottom: 4px; }
.p-cur     { font-size: 0.88rem; color: var(--text-light); vertical-align: top; line-height: 3.2; }
.p-amt     { font-family: 'Cormorant Garamond', serif; font-size: 3.6rem; font-weight: 700; color: var(--dark); }
.p-per     { display: block; color: var(--text-light); font-size: 0.82rem; margin-bottom: 4px; }
.p-divider { height: 1px; background: var(--gold-light); margin: 28px 0; }
.p-list    { list-style: none; text-align: left; margin-bottom: 34px; }
.p-list li {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 0; font-size: 0.89rem; color: var(--text);
    border-bottom: 1px solid var(--cream-dark);
}
.p-list li:last-child { border: none; }
.p-list li i { color: var(--gold); width: 16px; text-align: center; }
.btn-order {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: #25D366; color: var(--white);
    padding: 16px 30px; border-radius: 50px; text-decoration: none;
    font-size: 0.9rem; font-weight: 600;
    transition: all 0.3s; box-shadow: 0 8px 24px rgba(37,211,102,0.3);
    margin-bottom: 12px;
}
.btn-order:hover { background: #1db954; transform: translateY(-2px); box-shadow: 0 14px 32px rgba(37,211,102,0.4); }
.p-note { font-size: 0.77rem; color: var(--text-light); }

/* =============================================
   CTA STRIP
============================================= */
#cta {
    background: linear-gradient(135deg, var(--rose-light) 0%, #F8EDE5 50%, #EED9B8 100%);
    text-align: center;
}
.cta-script { font-family: 'Great Vibes', cursive; font-size: 1.9rem; color: var(--rose); margin-bottom: 8px; }
.cta-title  { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; color: var(--dark); margin-bottom: 14px; }
.cta-desc   { color: var(--text-light); font-size: 0.97rem; line-height: 1.85; margin-bottom: 38px; font-weight: 300; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-desc + .btn-wa { display: inline-flex; }

/* =============================================
   FOOTER
============================================= */
footer { background: var(--dark); color: rgba(255,255,255,0.6); padding: 64px 48px 32px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; max-width: 1100px; margin: 0 auto; padding-bottom: 40px; border-bottom: 1px solid rgba(201,169,110,0.18); }
.foot-logo    { font-family: 'Great Vibes', cursive; font-size: 2.3rem; color: var(--gold); display: block; margin-bottom: 14px; }
.foot-tagline { font-size: 0.83rem; line-height: 1.85; color: rgba(255,255,255,0.45); font-weight: 300; max-width: 270px; }
.foot-head    { font-size: 0.7rem; letter-spacing: 2.4px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.foot-links   { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-links a { text-decoration: none; color: rgba(255,255,255,0.5); font-size: 0.84rem; transition: color 0.3s; }
.foot-links a:hover { color: var(--gold); }
.foot-contact { display: flex; flex-direction: column; gap: 12px; }
.foot-item    { display: flex; align-items: center; gap: 10px; font-size: 0.84rem; color: rgba(255,255,255,0.5); }
.foot-item i  { color: var(--gold); width: 15px; }
.foot-wa {
    display: inline-flex; align-items: center; gap: 8px;
    background: #25D366; color: var(--white);
    padding: 10px 20px; border-radius: 30px;
    text-decoration: none; font-size: 0.82rem; font-weight: 500;
    transition: all 0.3s; margin-top: 6px;
}
.foot-wa:hover { background: #1db954; transform: translateY(-1px); }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding-top: 26px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.foot-copy   { font-size: 0.77rem; color: rgba(255,255,255,0.3); }
.foot-copy a { color: var(--gold); text-decoration: none; }
.foot-copy i { color: var(--rose); }

/* =============================================
   WHATSAPP FLOATING BUTTON
============================================= */
.wa-fab {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 58px; height: 58px; background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.45rem; text-decoration: none;
    box-shadow: 0 6px 22px rgba(37,211,102,0.4);
    animation: wa-pulse 3s ease-in-out infinite;
    transition: transform 0.3s;
}
.wa-fab:hover { transform: scale(1.1); }
.wa-fab-tip {
    position: absolute; right: 68px;
    background: var(--dark); color: var(--white);
    font-size: 0.76rem; padding: 6px 13px; border-radius: 6px;
    white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.wa-fab-tip::after { content: ''; position: absolute; right: -5px; top: 50%; transform: translateY(-50%); border: 5px solid transparent; border-right: none; border-left-color: var(--dark); }
.wa-fab:hover .wa-fab-tip { opacity: 1; }
@keyframes wa-pulse {
    0%,100% { box-shadow: 0 6px 22px rgba(37,211,102,0.4); }
    50%      { box-shadow: 0 6px 34px rgba(37,211,102,0.7); }
}

/* =============================================
   ANIMATIONS
============================================= */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp   { from { opacity: 0; transform: translateY(32px);  } to { opacity: 1; transform: translateY(0); } }

.fade-up         { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 900px) {
    .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    nav         { padding: 16px 20px; }
    nav.scrolled { padding: 12px 20px; }
    .nav-links  { display: none; }
    .hamburger  { display: flex; }
    section     { padding: 72px 20px; }
    footer      { padding: 56px 24px 28px; }
    .footer-inner  { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .pricing-card  { padding: 38px 24px; }
}
@media (max-width: 480px) {
    .hero-btns { flex-direction: column; align-items: center; }
    .hero-btns .btn-wa,
    .hero-btns .btn-outline { width: 100%; justify-content: center; }
}
