@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

/* ===== DESIGN SYSTEM ===== */
:root {
  --bg-primary: #060810;
  --bg-secondary: #0d1117;
  --bg-card: #111827;
  --bg-glass: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
  --border-active: rgba(99,202,183,0.4);
  --gold: #F5C842;
  --gold-light: #FFE17A;
  --teal: #63CAB7;
  --teal2: #3AADA0;
  --electric: #4DFFC3;
  --red-accent: #FF5A5A;
  --text: #F0F4FF;
  --muted: #8B9AB5;
  --text-muted: #4A5568;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glow-teal: 0 0 40px rgba(99,202,183,0.3);
  --glow-gold: 0 0 40px rgba(245,200,66,0.3);
  /* v4 compat */
  --bg: #060810; --bg2: #0d1117; --bg3: #111827;
  --card: #111827; --card2: #141c2b; --white: #F0F4FF;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { font-family: var(--font-body); background: var(--bg-primary); color: var(--text); overflow-x: hidden; cursor: none; }

/* ===== CUSTOM CURSOR ===== */
.cursor { position: fixed; width: 12px; height: 12px; background: var(--teal); border-radius: 50%; pointer-events: none; z-index: 99999; transition: transform 0.1s ease; mix-blend-mode: exclusion; }
.cursor-follower { position: fixed; width: 36px; height: 36px; border: 1.5px solid rgba(99,202,183,0.5); border-radius: 50%; pointer-events: none; z-index: 99998; transition: transform 0.3s ease, opacity 0.3s; }

/* ===== LOADER ===== */
#pageLoader { position: fixed; inset: 0; background: var(--bg-primary); z-index: 9997; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px; transition: opacity 0.6s ease, visibility 0.6s; }
#pageLoader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; letter-spacing: -2px; background: linear-gradient(135deg, var(--teal), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: loaderPulse 1.5s ease-in-out infinite; }
.loader-bar-wrap { width: 200px; height: 2px; background: var(--border); border-radius: 2px; overflow: hidden; }
.loader-bar { height: 100%; background: linear-gradient(90deg, var(--teal), var(--gold)); border-radius: 2px; animation: loaderBar 2s ease forwards; }
@keyframes loaderBar { from { width: 0; } to { width: 100%; } }
@keyframes loaderPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 20px 60px; display: flex; align-items: center; justify-content: space-between; transition: var(--transition); }
.navbar.scrolled { background: rgba(6,8,16,0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 14px 60px; border-bottom: 1px solid var(--border); }
.nav-inner { width: 100%; display: flex; align-items: center; gap: 2rem; justify-content: space-between; }
.nav-logo { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; letter-spacing: -1px; text-decoration: none; display: flex; align-items: center; gap: 8px; color: var(--text); white-space: nowrap; flex-shrink: 0; }
.nav-logo svg path { fill: var(--teal); stroke: var(--teal); }
.nav-logo .trio { color: var(--teal); }
.nav-logo .spark { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; flex: 1; justify-content: center; }
.nav-links a, .nl { text-decoration: none; color: var(--muted); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.5px; transition: var(--transition); position: relative; }
.nav-links a::after, .nl::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--teal); transition: width 0.3s ease; }
.nav-links a:hover, .nl:hover { color: var(--text); }
.nav-links a:hover::after, .nl:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 12px; }

/* ===== BUTTONS ===== */
.btn { padding: 10px 24px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: var(--transition); border: none; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; letter-spacing: 0.5px; font-family: var(--font-body); }
.btn-outline { background: transparent; border: 1px solid var(--border-active); color: var(--teal); }
.btn-outline:hover { background: rgba(99,202,183,0.1); box-shadow: var(--glow-teal); }
.btn-primary, .btn-book { background: linear-gradient(135deg, var(--teal2), var(--teal)); color: var(--bg-primary); font-weight: 700; padding: 0.7rem 1.8rem; border-radius: 50px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; font-family: var(--font-body); border: none; cursor: pointer; transition: var(--transition); }
.btn-primary:hover, .btn-book:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(99,202,183,0.4); }
.btn-gold { background: linear-gradient(135deg, #D4A017, var(--gold)); color: var(--bg-primary); font-weight: 700; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--glow-gold); }
.btn-get-started { background: linear-gradient(135deg, var(--teal2), var(--teal)); color: var(--bg-primary); padding: 0.55rem 1.25rem; border-radius: 50px; font-size: 0.9rem; font-weight: 700; text-decoration: none; transition: var(--transition); white-space: nowrap; display: inline-flex; align-items: center; }
.btn-get-started:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(99,202,183,0.4); }
.btn-admin-login { display: flex; align-items: center; gap: 6px; background: rgba(245,200,66,0.08); border: 1.5px solid rgba(245,200,66,0.35); color: var(--gold); padding: 0.48rem 1rem; border-radius: 50px; font-size: 0.85rem; font-weight: 700; cursor: pointer; transition: var(--transition); font-family: var(--font-body); }
.btn-admin-login:hover { background: var(--gold); color: #000; box-shadow: var(--glow-gold); }
.btn-client-login { background: transparent; border: 1.5px solid var(--border-active); color: var(--teal); padding: 0.5rem 1.1rem; border-radius: 50px; font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: var(--transition); white-space: nowrap; font-family: var(--font-body); }
.btn-client-login:hover { background: rgba(99,202,183,0.1); box-shadow: var(--glow-teal); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; width: 38px; height: 38px; align-items: center; justify-content: center; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s cubic-bezier(0.4,0,0.2,1); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu { display: none; flex-direction: column; background: rgba(6,8,16,0.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-top: 1px solid var(--border); padding: 0; overflow: hidden; max-height: 0; transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease; }
.mobile-menu.open { max-height: 500px; padding: 0.5rem 0 1.25rem; }
.mobile-menu a { color: rgba(255,255,255,0.7); text-decoration: none; padding: 0.85rem 1.75rem; font-size: 1rem; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.06); transition: color 0.2s, background 0.2s, padding-left 0.2s; display: flex; align-items: center; gap: 0.5rem; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--teal); background: rgba(99,202,183,0.06); padding-left: 2.1rem; }
.mobile-menu .mob-gs { margin: 1rem 1.75rem 0; background: linear-gradient(135deg, var(--teal2), var(--teal)); color: #000; padding: 0.75rem; border-radius: 50px; text-align: center; font-weight: 700; border: none; cursor: pointer; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: flex-start; padding: 8rem 5rem 4rem; text-align: left; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(99,202,183,0.12) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(245,200,66,0.08) 0%, transparent 50%), radial-gradient(ellipse at 60% 80%, rgba(77,255,195,0.06) 0%, transparent 50%); animation: heroBgPulse 8s ease-in-out infinite alternate; }
@keyframes heroBgPulse { from { opacity: 0.7; } to { opacity: 1; } }
.hero-grid-overlay { position: absolute; inset: 0; background-image: linear-gradient(rgba(99,202,183,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(99,202,183,0.04) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%); -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%); }
.hero-content { position: relative; z-index: 2; max-width: 900px; margin: 0; }

.hero-badge, .trusted-tag { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: rgba(99,202,183,0.1); border: 1px solid rgba(99,202,183,0.3); border-radius: 50px; font-size: 0.75rem; font-family: var(--font-mono); color: var(--teal); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 28px; opacity: 0; animation: slideUpFade 0.8s 0.5s forwards; }
.hero-badge .dot { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.2; } }

.hero-title { font-family: var(--font-display); font-size: clamp(1.4rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.25; letter-spacing: -1px; color: var(--text); margin-bottom: 2rem; opacity: 0; animation: slideUpFade 0.8s 0.7s forwards; }
.hero-title .highlight-teal { color: var(--teal); }
.hero-title .highlight-gold { color: var(--gold); }
/* Styled multi-line hero title (image style) */
.hero-title-styled { display: flex; flex-direction: column; align-items: flex-start; text-align: left; font-size: clamp(3rem, 8vw, 7rem); line-height: 1.0; letter-spacing: -2px; margin-bottom: 2rem; gap: 0; font-family: var(--font-display); }
.hero-title-styled .ht-white { color: #ffffff; font-weight: 800; }
.hero-title-styled .ht-teal { color: var(--teal); font-weight: 800; }
.hero-title-styled .ht-gold { color: var(--gold); font-weight: 800; }

.hero-btns { display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap; margin-bottom: 1.5rem; opacity: 0; animation: slideUpFade 0.8s 0.9s forwards; }
.btn-case { display: flex; align-items: center; gap: 0.5rem; background: transparent; border: 1.5px solid rgba(255,255,255,0.2); color: var(--text); padding: 0.9rem 2rem; border-radius: 50px; font-size: 1rem; font-weight: 600; text-decoration: none; transition: var(--transition); font-family: var(--font-body); }
.btn-case:hover { border-color: var(--teal); color: var(--teal); }
.no-contract { display: flex; align-items: center; justify-content: center; gap: 0.5rem; color: var(--muted); font-size: 0.88rem; opacity: 0; animation: slideUpFade 0.8s 1.1s forwards; }

@keyframes slideUpFade { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInAnim { from { opacity: 0; } to { opacity: 1; } }

.scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0; animation: fadeInAnim 1s 2s forwards; }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--teal), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%,100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(0.5); opacity: 0.3; } }

/* ===== STATS ===== */
.stats { background: var(--bg-secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 3rem 2rem; }
.stats-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; background: linear-gradient(135deg, var(--teal), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 0.4rem; }
.stat-item p { color: var(--muted); font-size: 0.7rem; letter-spacing: 2px; font-weight: 600; font-family: var(--font-mono); }

/* ===== TRUSTED BAR ===== */
.trusted-bar { padding: 2rem; text-align: center; border-bottom: 1px solid var(--border); overflow: hidden; }
.trusted-bar > p { color: var(--muted); font-size: 0.7rem; letter-spacing: 3px; margin-bottom: 1.5rem; font-family: var(--font-mono); }
.brands-scroll { display: flex; gap: 4rem; animation: scrollBrands 20s linear infinite; width: max-content; }
.brands-scroll span { color: rgba(255,255,255,0.2); font-size: 1.1rem; font-weight: 700; letter-spacing: 0.05em; white-space: nowrap; font-family: var(--font-display); }
@keyframes scrollBrands { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SECTIONS COMMON ===== */
section { padding: 6rem 60px; }
.sec-header { text-align: center; margin-bottom: 3.5rem; }
.sec-header h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; color: var(--white); letter-spacing: -1.5px; margin-bottom: 0.75rem; }
.sec-header p { color: var(--muted); font-size: 1rem; line-height: 1.7; }
.section-label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 4px; color: var(--teal); text-transform: uppercase; margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.section-label::before { content: ''; width: 30px; height: 1px; background: var(--teal); }
.services-section, .work-section, .about-section, .testimonials-section, .contact-section { max-width: 100%; }

/* ===== SERVICES ===== */
.services-section { background: var(--bg-secondary); position: relative; overflow: hidden; }
.services-section::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(99,202,183,0.05) 0%, transparent 70%); pointer-events: none; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; max-width: 1280px; margin: 0 auto; }
.svc-card, .service-card { background: var(--bg-glass); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; transition: var(--transition); position: relative; overflow: hidden; cursor: default; }
.svc-card::before, .service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--teal), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.svc-card:hover, .service-card:hover { border-color: var(--border-active); background: rgba(99,202,183,0.04); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--glow-teal); }
.svc-card:hover::before, .service-card:hover::before { transform: scaleX(1); }
.svc-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.svc-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--white); }
.svc-card p { color: var(--muted); font-size: 0.875rem; line-height: 1.65; }

/* ===== WHY DIFFERENT ===== */
.work-section { background: var(--bg-primary); }
.diff-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; max-width: 1280px; margin: 0 auto; }
.diff-card { background: var(--bg-glass); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; transition: var(--transition); position: relative; overflow: hidden; }
.diff-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold), var(--teal)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.diff-card:hover { border-color: rgba(245,200,66,0.3); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.diff-card:hover::before { transform: scaleX(1); }
.diff-icon { font-size: 1.8rem; color: var(--teal); margin-bottom: 1rem; display: block; }
.diff-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--white); }
.diff-card p { color: var(--muted); font-size: 0.875rem; line-height: 1.65; }

/* ===== ABOUT ===== */
.about-section { background: var(--bg-secondary); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; max-width: 1280px; margin: 0 auto; }
.about-tag { color: var(--teal); font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 4px; font-weight: 600; display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.about-tag::before { content: ''; width: 30px; height: 1px; background: var(--teal); }
.about-text h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; color: var(--white); margin-bottom: 1.5rem; line-height: 1.1; letter-spacing: -1.5px; }
.about-text p { color: var(--muted); line-height: 1.7; margin-bottom: 1rem; font-size: 0.95rem; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.as-card { background: var(--bg-glass); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; text-align: center; transition: var(--transition); }
.as-card:hover { border-color: var(--border-active); transform: translateY(-4px); box-shadow: var(--glow-teal); }
.as-card h3 { font-family: var(--font-display); font-size: 2rem; font-weight: 800; background: linear-gradient(135deg, var(--teal), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 0.3rem; }
.as-card p { color: var(--muted); font-size: 0.75rem; letter-spacing: 1px; font-family: var(--font-mono); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--bg-primary); position: relative; overflow: hidden; }
.test-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 20px; max-width: 1280px; margin: 0 auto; }
.test-card { background: var(--bg-glass); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; transition: var(--transition); }
.test-card:hover { border-color: var(--border-active); transform: translateY(-4px); box-shadow: var(--glow-teal); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.test-card > p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; font-style: italic; margin-bottom: 1.5rem; }
.test-card > p::before { content: '"'; color: var(--teal); font-size: 2rem; line-height: 0; vertical-align: -0.5rem; margin-right: 4px; }
.test-author { display: flex; align-items: center; gap: 14px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--gold)); display: flex; align-items: center; justify-content: center; color: var(--bg-primary); font-weight: 700; font-size: 1rem; font-family: var(--font-display); flex-shrink: 0; }
.test-author div { display: flex; flex-direction: column; }
.test-author strong { color: var(--white); font-size: 0.95rem; font-weight: 600; }
.test-author span { color: var(--muted); font-size: 0.8rem; margin-top: 2px; }

/* ===== CONTACT ===== */
.contact-section { background: var(--bg-secondary); }
.contact-section .sec-header, .contact-inner { max-width: 1280px; margin-left: auto; margin-right: auto; }
.contact-section .sec-header { margin-bottom: 3.5rem; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; }
.contact-info h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 1.5rem; letter-spacing: -0.5px; }
.contact-info p { color: var(--muted); margin-bottom: 0.75rem; font-size: 0.9rem; line-height: 1.6; }
.socials { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
.socials a { color: var(--teal); text-decoration: none; font-size: 0.85rem; font-weight: 600; border: 1px solid rgba(99,202,183,0.35); padding: 0.45rem 1rem; border-radius: 50px; transition: var(--transition); }
.socials a:hover { background: rgba(99,202,183,0.1); box-shadow: var(--glow-teal); }
.contact-form-wrap { display: flex; flex-direction: column; gap: 1rem; }
.cf-input { width: 100%; background: var(--bg-glass); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0.85rem 1rem; color: var(--text); font-size: 0.925rem; font-family: var(--font-body); transition: var(--transition); outline: none; appearance: none; }
.cf-input:focus { border-color: var(--teal); background: rgba(99,202,183,0.04); box-shadow: 0 0 0 3px rgba(99,202,183,0.1); }
.cf-input option { background: var(--bg-card); }
.cf-textarea { height: 120px; resize: vertical; }

/* ===== CLIENT PORTAL ===== */
.portal-section { background: var(--bg-primary); border-top: 1px solid var(--border); padding: 6rem 2rem; min-height: 100vh; position: relative; }
.portal-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(245,200,66,0.04) 0%, transparent 60%), radial-gradient(ellipse at 70% 50%, rgba(99,202,183,0.04) 0%, transparent 60%); pointer-events: none; }
.portal-header { text-align: center; margin-bottom: 2.5rem; position: relative; z-index: 2; }
.portal-header h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; color: var(--white); letter-spacing: -2px; margin-bottom: 0.5rem; }
.portal-header p { color: var(--muted); font-size: 0.95rem; }
.portal-tabs { display: flex; max-width: 520px; margin: 0 auto 2rem; background: var(--bg-glass); border: 1px solid var(--border); border-radius: 50px; padding: 0.4rem; position: relative; z-index: 2; }
.ptab { flex: 1; padding: 0.8rem 1rem; border: none; border-radius: 50px; background: transparent; color: var(--muted); font-size: 0.8rem; font-weight: 700; cursor: pointer; letter-spacing: 0.08em; transition: all 0.25s; font-family: var(--font-mono); }
.ptab.active { background: linear-gradient(135deg, var(--teal2), var(--teal)); color: var(--bg-primary); }
.portal-form-wrap { max-width: 560px; margin: 0 auto; background: var(--bg-card); border: 1px solid var(--border); border-radius: 24px; padding: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; position: relative; z-index: 2; }
.hidden { display: none !important; }
.pf-group { display: flex; flex-direction: column; gap: 0.5rem; }
.pf-group label { color: var(--muted); font-size: 0.72rem; letter-spacing: 1.5px; font-weight: 700; font-family: var(--font-mono); }
.pf-input { background: var(--bg-glass); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0.85rem 1rem; color: var(--text); font-size: 0.925rem; font-family: var(--font-body); width: 100%; outline: none; transition: var(--transition); }
.pf-input:focus { border-color: var(--teal); background: rgba(99,202,183,0.04); box-shadow: 0 0 0 3px rgba(99,202,183,0.1); }
.pf-input option { background: var(--bg-card); }
.pf-input-wrap { position: relative; }
.pf-input-wrap .pf-input { padding-left: 2.5rem; }
.pf-icon { position: absolute; left: 0.85rem; top: 50%; transform: translateY(-50%); font-size: 1rem; }
.pf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-portal-action { background: linear-gradient(135deg, var(--teal2), var(--teal)); color: var(--bg-primary); border: none; border-radius: 50px; padding: 1rem; font-size: 0.9rem; font-weight: 800; cursor: pointer; letter-spacing: 0.08em; transition: var(--transition); margin-top: 0.5rem; font-family: var(--font-mono); width: 100%; }
.btn-portal-action:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(99,202,183,0.4); }
.btn-access { background: linear-gradient(135deg, var(--teal2), var(--teal)) !important; color: var(--bg-primary) !important; }
.portal-msg { text-align: center; font-size: 0.85rem; font-weight: 600; min-height: 1.2rem; font-family: var(--font-mono); }
.portal-msg.success { color: var(--electric); }
.portal-msg.error { color: var(--red-accent); }

/* ===== CLIENT DASHBOARD ===== */
.client-dashboard { max-width: 600px; margin: 0 auto; position: relative; z-index: 2; }
.dash-welcome { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; background: linear-gradient(135deg, var(--teal), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-align: center; margin-bottom: 2rem; letter-spacing: -1px; }
.dash-progress-wrap { margin-bottom: 2rem; }
.dash-progress-bar { background: var(--border); border-radius: 100px; height: 6px; margin-bottom: 0.6rem; overflow: hidden; }
.dash-progress-fill { height: 100%; background: linear-gradient(90deg, var(--teal), var(--gold)); border-radius: 100px; transition: width 1.2s ease; }
#statusText { color: var(--muted); font-size: 0.82rem; text-align: center; font-family: var(--font-mono); }
.dash-info-cards { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.dic { background: var(--bg-glass); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem 1.6rem; display: flex; flex-direction: column; gap: 0.5rem; position: relative; overflow: hidden; transition: var(--transition); }
.dic::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--teal), var(--gold)); }
.dic:hover { border-color: rgba(99,202,183,0.3); }
.dic-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px; color: var(--muted); font-family: var(--font-mono); }
.dic-val { font-size: 1.15rem; font-weight: 700; color: var(--white); }
.btn-logout-big { width: 100%; background: rgba(255,90,90,0.1); border: 1px solid rgba(255,90,90,0.3); border-radius: 50px; color: var(--red-accent); font-size: 0.9rem; font-weight: 800; letter-spacing: 0.08em; padding: 1rem; cursor: pointer; transition: var(--transition); font-family: var(--font-mono); }
.btn-logout-big:hover { background: var(--red-accent); color: #fff; box-shadow: 0 8px 30px rgba(255,90,90,0.3); }

/* ===== MODAL ===== */
.modal-overlay { position: fixed; inset: 0; z-index: 9990; background: rgba(6,8,16,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); display: flex; align-items: center; justify-content: center; padding: 1rem; animation: fadeInAnim .2s ease; }
.modal-overlay.hidden { display: none !important; }
.modal-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 24px; width: 100%; max-width: 480px; position: relative; animation: modalSlideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); max-height: 90vh; overflow-y: auto; }
.modal-wide { max-width: 1100px; }
@keyframes modalSlideUp { from { opacity: 0; transform: scale(0.9) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal-header { padding: 2rem 2rem 1rem; border-bottom: 1px solid var(--border); position: relative; }
.modal-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.modal-header h2 { font-family: var(--font-display); color: var(--white); font-size: 1.4rem; font-weight: 800; margin-bottom: 0.25rem; letter-spacing: -0.5px; }
.modal-header p { color: var(--muted); font-size: 0.9rem; }
.modal-close { position: absolute; top: 1.25rem; right: 1.25rem; background: var(--bg-glass); border: 1px solid var(--border); color: var(--muted); width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.modal-close:hover { border-color: var(--red-accent); color: var(--red-accent); }
.modal-body { padding: 1.5rem 2rem 2rem; display: flex; flex-direction: column; gap: 1rem; }

/* ===== ADMIN TABLE ===== */
.admin-toolbar { display: flex; gap: 0.75rem; margin-bottom: 1rem; flex-wrap: wrap; }
.admin-search { flex: 1; min-width: 200px; }
.admin-filter { width: 200px; }
.admin-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); max-height: 55vh; overflow-y: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.admin-table thead { background: rgba(99,202,183,0.06); position: sticky; top: 0; z-index: 1; }
.admin-table th { padding: 0.85rem 1rem; text-align: left; color: var(--teal); font-weight: 700; font-size: 0.7rem; letter-spacing: 1.5px; border-bottom: 1px solid var(--border); white-space: nowrap; font-family: var(--font-mono); vertical-align: middle; }
.admin-table td { padding: 0.8rem 1rem; color: var(--text); font-size: 0.85rem; border-bottom: 1px solid rgba(255,255,255,0.04); white-space: nowrap; vertical-align: middle; }
.admin-table tr:hover td { background: var(--bg-glass); }
.admin-table tr:last-child td { border-bottom: none; }
.table-loading { text-align: center; color: var(--muted); padding: 2rem !important; }
.status-badge { display: inline-block; padding: 0.2rem 0.65rem; border-radius: 50px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-mono); }
.status-active { background: rgba(99,202,183,0.12); color: var(--teal); border: 1px solid rgba(99,202,183,0.25); }
.status-paused { background: rgba(245,200,66,0.1); color: var(--gold); border: 1px solid rgba(245,200,66,0.2); }
.status-completed { background: rgba(148,163,184,0.1); color: #94a3b8; border: 1px solid rgba(148,163,184,0.2); }
.btn-del { background: rgba(255,90,90,0.1); border: 1px solid rgba(255,90,90,0.25); color: var(--red-accent); padding: 0.3rem 0.7rem; border-radius: 8px; cursor: pointer; font-size: 0.78rem; font-weight: 600; transition: var(--transition); }
.btn-del:hover { background: var(--red-accent); color: #fff; }
.admin-footer-row { display: flex; justify-content: space-between; align-items: center; margin-top: 1rem; flex-wrap: wrap; gap: 0.5rem; }
.btn-admin-logout { background: rgba(255,90,90,0.1); border: 1px solid rgba(255,90,90,0.25); color: var(--red-accent); padding: 0.5rem 1.1rem; border-radius: 50px; cursor: pointer; font-size: 0.88rem; font-weight: 600; transition: var(--transition); font-family: var(--font-body); }
.btn-admin-logout:hover { background: var(--red-accent); color: #fff; }

/* ===== REVENUE STATS ===== */
.revenue-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
.rev-card { background: var(--bg-glass); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: 0.35rem; transition: var(--transition); }
.rev-card:hover { border-color: var(--border-active); }
.rev-label { font-size: 0.72rem; color: var(--muted); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; font-family: var(--font-mono); }
.rev-val { font-size: 1.35rem; font-weight: 800; color: var(--white); }
.rev-val.green { color: var(--electric); }
.rev-val.yellow { color: var(--gold); }
.rev-val.cyan { color: var(--teal); }

/* ===== PAID EDIT ===== */
.paid-edit-wrap { min-width: 110px; }
.paid-edit-row { display: flex; align-items: center; gap: 0.3rem; }
.paid-edit-row.hidden, .paid-display.hidden { display: none; }
.paid-input { width: 80px; background: rgba(255,255,255,0.08); border: 1px solid rgba(99,202,183,0.4); color: var(--white); border-radius: 6px; padding: 0.25rem 0.4rem; font-size: 0.82rem; outline: none; }
.btn-save-paid { background: var(--teal); color: var(--bg-primary); border: none; border-radius: 5px; padding: 0.25rem 0.45rem; font-size: 0.8rem; font-weight: 700; cursor: pointer; }
.btn-cancel-paid { background: var(--bg-glass); color: var(--white); border: none; border-radius: 5px; padding: 0.25rem 0.45rem; font-size: 0.8rem; cursor: pointer; }

/* ===== FOOTER ===== */
.footer { background: var(--bg-secondary); border-top: 1px solid var(--border); padding: 60px; }
.footer-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem; }
.footer-brand p { color: var(--muted); font-size: 0.875rem; margin-top: 1rem; line-height: 1.7; max-width: 280px; }
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links h4 { font-family: var(--font-display); color: var(--white); font-weight: 700; margin-bottom: 0.5rem; font-size: 0.9rem; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--teal); }
.footer-bottom { max-width: 1280px; margin: 0 auto; border-top: 1px solid var(--border); padding-top: 1.5rem; text-align: center; }
.footer-bottom p { color: var(--muted); font-size: 0.85rem; }

/* ===== UTILITY ===== */
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); }
.text-teal { color: var(--teal); }
.text-gold { color: var(--gold); }
.teal { color: var(--teal) !important; }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .navbar { padding: 20px 30px; }
  .navbar.scrolled { padding: 14px 30px; }
  section { padding: 5rem 30px; }
  .services-section, .work-section, .about-section, .testimonials-section, .contact-section { padding: 5rem 30px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer { padding: 60px 30px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .revenue-stats { grid-template-columns: 1fr 1fr; }
  .hero-title-styled { font-size: clamp(2.5rem, 7vw, 5rem); }
}

@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
  .navbar { padding: 16px 16px; display: flex; align-items: center; box-sizing: border-box; width: 100%; }
  .navbar.scrolled { padding: 12px 16px; }
  .nav-links { display: none !important; }
  .nav-actions { display: none !important; }
  .nav-inner { display: flex !important; align-items: center !important; justify-content: flex-start !important; width: 100% !important; gap: 0 !important; }
  .hamburger { display: flex !important; position: fixed !important; top: 14px !important; right: 16px !important; margin: 0 !important; z-index: 1100 !important; }
  .mobile-menu { display: flex; }
  section { padding: 4rem 1.25rem; }
  .services-section, .work-section, .about-section, .testimonials-section, .contact-section { padding: 4rem 1.25rem; }
  .hero { padding: 7rem 1.25rem 4rem; min-height: auto; text-align: left; }
  .hero-content { text-align: left; }
  .hero-title-styled { font-size: clamp(2.4rem, 11vw, 4rem); letter-spacing: -1px; }
  .hero-btns { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .btn-book, .btn-case { width: 100%; justify-content: center; text-align: center; }
  .trusted-tag { font-size: 0.65rem; }
  .no-contract { justify-content: flex-start; font-size: 0.82rem; }
  .services-grid, .diff-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .svc-card, .diff-card { padding: 1.5rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .modal-overlay { padding: 0.75rem; }
  .modal-wide { max-width: 98vw; border-radius: 16px; }
  .admin-table th, .admin-table td { white-space: nowrap; font-size: 0.75rem; padding: 0.5rem 0.6rem; }
  .admin-toolbar { flex-direction: column; gap: 0.6rem; }
  .admin-search, .admin-filter { width: 100%; }
  .pf-row { grid-template-columns: 1fr; }
  .footer { padding: 48px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .portal-tabs { max-width: 95%; }
  .revenue-stats { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .portal-form-wrap { padding: 1.75rem 1.25rem; }
  .sec-header h2 { font-size: clamp(1.6rem, 6vw, 2.5rem); }
  .about-inner { flex-direction: column; }
  .contact-inner { flex-direction: column; }
  .dash-info-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .modal-overlay { padding: 0.5rem; align-items: flex-end; }
  .modal-box { border-radius: 24px 24px 0 0; max-height: 92vh; }
  .modal-header { padding: 1.25rem 1.25rem 0.75rem; }
  .modal-body { padding: 0 1.25rem 1.5rem; }
  .hero-title-styled { font-size: clamp(2.4rem, 14vw, 4rem); letter-spacing: -1px; }
  .btn-book, .btn-case { font-size: 0.9rem; padding: 0.8rem 1.4rem; }
  .portal-form-wrap { padding: 1.25rem 1rem; border-radius: 16px; }
  .modal-wide .modal-body { padding: 0 0.75rem 1rem; }
  .revenue-stats { grid-template-columns: 1fr 1fr; }
  .rev-card { padding: 0.75rem; }
  .rev-label { font-size: 0.7rem; }
  .rev-val { font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; padding: 2rem 1.25rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .footer { padding: 3rem 1.25rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .revenue-stats { grid-template-columns: 1fr 1fr; }
  section { padding-left: 1rem; padding-right: 1rem; }
  .test-grid { grid-template-columns: 1fr; }
  .hero-title-styled { font-size: clamp(2.2rem, 15vw, 3.5rem); }
  .nav-logo { font-size: 1rem; }
  .as-card h3 { font-size: 1.5rem; }
  .dash-info-cards { grid-template-columns: 1fr; }
}
.refund-policy-section {
  margin-top: 40px;
  padding: 25px;
  background: #0b0f1a;
  border-radius: 12px;
  color: #ccc;
}

.refund-policy-section h3 {
  color: #00ffd5;
  margin-bottom: 15px;
}

.refund-policy-section ul {
  padding-left: 18px;
}

.refund-policy-section ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}
.nav-logo svg {
  height: 38px;
  width: auto;
  display: block;
}
.loader-logo svg {
  height: 70px;
  width: auto;
}
/* COLUMN 1 STRICT CONTROL */
.footer-inner > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: none;   /* ✅ REMOVE LIMIT */
}
/* LOGO */
.footer-inner .loader-logo {
  margin-bottom: 12px;
}

.footer-inner .logo-svg {
  height: 38px;
  display: block;
}

/* TEXT */
.footer-inner > div:first-child p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 260px;
}

/* REMOVE ANY INLINE/GAP ISSUES */
.footer-inner > div:first-child * {
  text-align: left;
}
.refund-policy-section {
  max-width: 1280px;
  margin: 40px auto 0;
  padding: 0 60px;
}

/* improve readability */
.refund-policy-section li {
  font-size: 14px;
  line-height: 1.8;
}
.contact-section {
  padding: 80px 60px;
  background: #050816;
  color: #fff;
}

.contact-header span {
  color: #00ffd5;
  font-size: 12px;
  letter-spacing: 2px;
}

.contact-header h2 {
  font-size: 48px;
  margin: 10px 0;
}

.contact-header .highlight {
  color: #00ffd5;
}

.contact-header p {
  color: #9aa4b2;
  max-width: 500px;
}

.contact-container {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* MAP */
.map-box {
  flex: 1;
  min-width: 320px;
  border-radius: 20px;
  overflow: hidden;
}

.map-box iframe {
  width: 100%;
  height: 350px;
  border: none;
}

/* DETAILS */
.contact-details {
  flex: 1;
  min-width: 320px;
}

.contact-item {
  margin-bottom: 20px;
}

.contact-item h4 {
  color: #00ffd5;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.contact-item p {
  color: #9aa4b2;
}

/* INSTAGRAM BUTTON */
.insta-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  background: #00ffd5;
  color: #000;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
}
.campaign-section {
  padding: 80px 60px;
  background: var(--bg-secondary);
  color: #fff;
}

.campaign-header span {
  color: #00ffd5;
  font-size: 12px;
  letter-spacing: 2px;
}

.campaign-header h2 {
  font-size: 48px;
  margin: 10px 0;
}

.campaign-header h2 span {
  color: #f5c842;
}

.campaign-header p {
  color: #9aa4b2;
  max-width: 500px;
}

/* GRID */
.campaign-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* CARD */
.campaign-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #0b0f1a;
  cursor: pointer;
  transition: 0.3s;
}

.campaign-card video {
  width: 100%;
  height: 180px;
  object-fit: cover;
  opacity: 0.7;
}

/* PLAY BUTTON */
.play-btn {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #00ffd5;
  color: #000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* CONTENT */
.card-content {
  padding: 15px;
}

.card-content h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.card-content p {
  color: #9aa4b2;
  font-size: 13px;
}

/* HOVER */
.campaign-card:hover {
  transform: translateY(-5px);
}

.campaign-card:hover video {
  opacity: 1;
}

.campaign-card video {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block; /* 🔥 important */
}
.play-btn {
  pointer-events: none; /* click card pe lage */
}

.campaign-card video {
  cursor: pointer;
}
/* CARD VIDEO AREA FIX */
.campaign-card video {
  width: 100%;
  height: 260px;        /* 🔥 fix height */
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* OPTIONAL: make more reel-like */
@media (min-width: 768px) {
  .campaign-card video {
    height: 300px;
  }
}

/* CARD HEIGHT FIX */
.campaign-card {
  overflow: hidden;
  border-radius: 20px;
}

/* PLAY BUTTON CENTER */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55px;
  height: 55px;
  background: #00ffd5;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  pointer-events: none;
}
/* MATCH FOOTER BACKGROUND + ALIGNMENT */
.refund-policy-section {
  background: transparent; /* footer same */
  max-width: 1280px;
  margin: 40px auto 0;
  padding: 0 60px;   /* 🔥 SAME as footer-inner */
  margin-left: 57px;
}

/* HEADING */
.refund-policy-section h3 {
  color: #00ffd5;
  margin-bottom: 15px;
}

/* LIST ALIGN */
.refund-policy-section ul {
  padding-left: 18px;
  margin: 0;
}

/* TEXT */
.refund-policy-section li {
  color: #9aa4b2;
  line-height: 1.8;
}
/* DEFAULT DESKTOP (already ok, just ensure grid) */
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding: 60px;
}

/* REFUND ALIGN */
.refund-policy-section {
  max-width: 1280px;
  margin: 40px auto 0;
  padding: 0 60px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  /* STACK COLUMNS */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 20px;
  }

  /* LOGO SIZE */
  .logo-svg {
    height: 32px;
  }

  /* TEXT WIDTH FIX */
  .footer-inner > div:first-child p {
    max-width: 100%;
  }

  /* LINKS */
  .footer-links h4 {
    margin-bottom: 10px;
  }

  .footer-links a {
    display: block;
    margin-bottom: 6px;
  }

  /* REFUND SECTION */
  .refund-policy-section {
    padding: 0 20px;   /* match mobile padding */
    margin-top: 30px;
  }

  .refund-policy-section h3 {
    font-size: 16px;
  }

  .refund-policy-section li {
    font-size: 14px;
    line-height: 1.7;
  }

  /* FOOTER BOTTOM */
  .footer-bottom {
    padding: 20px;
    text-align: center;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {

  .footer-inner {
    padding: 30px 15px;
  }

  .refund-policy-section {
    padding: 0 15px;
  }

  .refund-policy-section li {
    font-size: 13px;
  }

}