/* Core styles */
:root{
  --brand:#715ca7;        /* primary purple */
  --accent:#f59496;       /* secondary pink */
  --brand-50:#efeaf7;     /* light purple */
  --accent-50:#fff2f3;    /* light pink */
  --ink:#0f172a;          /* slate-900 */
  --muted:#475569;        /* slate-600 */
  --bg:#ffffff;
  --card:#f8fafc;
  --ring:rgba(245,148,150,.4);
  --shadow:0 10px 25px rgba(2,6,23,.08);
  --radius:18px;
  --kyber-navy:#14213d;
  --kyber-orange:#ff7a00;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
img,svg,video,iframe{max-width:100%;height:auto}
body{
  display:flex;
  flex-direction:column;
  min-height:100vh;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, "Helvetica Neue", Arial, "Noto Sans";
  color:var(--ink); background:var(--bg); line-height:1.6;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
}
.container{max-width:1100px;margin-inline:auto;padding:0 1rem}
.container.upload-page{max-width:100%}
.upload-page .form{max-width:100%}
.btn{display:inline-flex;align-items:center;gap:.5rem;padding:.8rem 1.1rem;border-radius:999px;border:0;background:var(--brand);color:#fff;font-weight:700;font-size:1.05rem;text-decoration:none;box-shadow:var(--shadow);transition:transform .06s ease, box-shadow .2s ease;text-transform:capitalize}
.btn:hover{transform:translateY(-1px); box-shadow:0 14px 30px rgba(113,92,167,.25)}
.btn.secondary{background:transparent;border:2px solid var(--accent);color:var(--accent)}
.btn.btn-lg{padding:1rem 1.6rem;font-size:1.05rem}
.btn.btn-sm{padding:.35rem .65rem;font-weight:700;box-shadow:none}
.btn.btn-sm:hover{transform:none;box-shadow:none}
.badge{display:inline-block;background:#e2e8f0;color:#0f172a;padding:.25rem .6rem;border-radius:999px;font-size:.8rem;font-weight:600}


.brand-accent{color:var(--brand)}
.page{padding:2rem 0 3rem;flex:1}
.photo{width:100%;border-radius:18px;box-shadow:var(--shadow);border:1px solid #e2e8f0;display:block}
.photo-sm{width:100%;height:clamp(140px,18vw,190px);object-fit:cover;border-radius:12px;margin-bottom:.6rem;border:1px solid #e2e8f0;display:block}
.hero-actions{margin:.8rem 0 1.2rem}
.icon svg{width:22px;height:22px}
.bullets{margin:.4rem 0 0 1.1rem;color:var(--muted)}
.table-wrap{overflow:auto;border-radius:14px}
.table{width:100%;border-collapse:collapse;margin-top:.7rem;background:white;border:1px solid #e2e8f0;border-radius:14px;overflow:hidden}
.table th,.table td{padding:.75rem .8rem;text-align:left;border-bottom:1px solid #e2e8f0;vertical-align:top}
.table thead th{background:#f1f5f9;color:#0f172a;font-size:.9rem}
.table tbody tr:last-child td{border-bottom:0}
.kyber-banner{display:flex;align-items:center;justify-content:center;gap:.6rem;padding:.55rem .9rem;border-top:1px solid #ddd;background:#f2f2f2;color:#333;font-size:.9rem}
.kyber-banner img{height:14px}
.kyber-banner .flag{height:14px;border-radius:2px;box-shadow:0 0 0 1px #0001}
.kyber-banner .kyber-right{margin-left:auto;display:inline-flex;align-items:center;gap:.35rem}


/* NAV */
nav.site{position:sticky;top:0;z-index:50;background:rgba(255,255,255,.9);backdrop-filter: blur(6px);border-bottom:1px solid rgba(2,6,23,.06)}
.nav-wrap{display:flex;align-items:center;justify-content:space-between;padding:.8rem 0}
.brand{display:flex;align-items:center;gap:.75rem;text-decoration:none;color:var(--brand);font-weight:900}
.brand .logo{width:40px;height:40px;border-radius:11px;display:grid;place-items:center;background:linear-gradient(135deg,var(--brand),#9f86d1)}
.brand .logo svg{width:26px;height:26px;color:white}
.brand .brand-logo{height:52px;display:block;object-fit:contain}
.menu{display:flex;gap:1rem;align-items:center}
.menu a{color:var(--ink);text-decoration:none;font-weight:600;padding:.5rem .7rem;border-radius:12px}
.menu a:hover{background:#f1f5f9}

/* Ensure header/mobile secure-upload buttons display white text */
.menu a.btn, .mobile-panel .mobile-cta .btn { color: #fff; }
.hamburger{display:none;background:none;border:0;padding:.5rem}
.hamburger svg{width:26px;height:26px}

/* MOBILE MENU */
.mobile-panel{display:none;padding:0 0 1rem}
.mobile-panel a{display:block;padding:.75rem 1rem;margin:.25rem 0;color:var(--ink);text-decoration:none;border-radius:12px}
.mobile-panel a:hover{background:#f1f5f9}
.mobile-cta{margin: .25rem 1rem}

/* HERO */
.hero{position:relative;overflow:hidden;background: radial-gradient(1000px 400px at 10% -20%, var(--brand-50) 20%, transparent 50%), radial-gradient(800px 300px at 90% 0%, var(--accent-50) 10%, transparent 40%)}
.hero .inner{padding:3.2rem 0 2.2rem; display:grid; gap:2rem}
h1{font-size:clamp(1.8rem,3.5vw,3rem);line-height:1.2;margin:0 0 .6rem}
.lead{font-size:1.05rem;color:var(--muted);max-width:60ch}

/* Countdown timer */
.timer{display:flex; gap:.6rem; flex-wrap:wrap; align-items:center}
.timer .tile{background:linear-gradient(135deg,var(--brand),#9f86d1); color:white; border-radius:14px; padding:.8rem .9rem; min-width:90px; text-align:center; box-shadow:var(--shadow); border:0}
.timer .big{font-size:1.8rem;font-weight:900;letter-spacing:.02em}
.timer .label{font-size:.75rem;opacity:.9}
.deadline-card{background:transparent; border:0}
.deadline-card h3{margin:.1rem 0 .4rem}
#tax-countdown{display:flex;gap:.6rem;flex-wrap:wrap}
.deadline-line{margin-top:.5rem;font-weight:700;color:var(--brand)}

/* CARDS */
.cards{display:grid;grid-template-columns:1fr;gap:1rem}
.card{background:var(--card);border:1px solid #e2e8f0;border-radius:var(--radius);padding:1.1rem;box-shadow:var(--shadow);color:var(--ink);text-decoration:none}
.card h3{margin:.2rem 0 .5rem}
.card p{color:var(--muted)}
.card .icon{width:40px;height:40px;border-radius:12px;display:grid;place-items:center;background:var(--brand-50);color:var(--brand);margin-bottom:.4rem}

/* SECTIONS */
section{padding:2.2rem 0}
.section-title{display:flex;align-items:center;justify-content:space-between;gap:1rem;margin-bottom:1rem}
.section-title h2{margin:0;font-size:1.6rem}
.grid-2{display:grid;grid-template-columns:1fr;gap:1rem}
.grid-3{display:grid;grid-template-columns:1fr;gap:1rem}

/* FAQ */
.faq{border:1px solid #e2e8f0;border-radius:16px;overflow:hidden}
.faq details{border-bottom:1px solid #e2e8f0;background:white}
.faq details[open]{background:#f8fafc}
.faq summary{cursor:pointer;padding:1rem;font-weight:700;list-style:none}
.faq p{padding:0 1rem 1rem;color:var(--muted)}

/* Testimonials carousel */
.testimonials{margin-top:3.2rem;margin-bottom:3.2rem}
.carousel{display:flex;gap:1rem;align-items:stretch;justify-content:center;overflow:visible}
.testimonial-card{flex:0 0 320px;display:flex;flex-direction:column;align-items:center;background:var(--card);border:1px solid #e2e8f0;border-radius:16px;padding:1.2rem;text-align:center;box-shadow:var(--shadow);transition:transform .28s ease,opacity .28s ease;transform:none;opacity:1}
.testimonial-card.active{transform:none;opacity:1}
.testimonial-photo{width:88px;height:88px;border-radius:999px;overflow:hidden;margin:0 auto .8rem;border:1px solid rgba(0,0,0,.06)}
.testimonial-photo img{width:100%;height:100%;display:block;object-fit:cover;object-position:center 20%;transform-origin:center}
.testimonial-photo img.morgan-photo{object-position:center 10%;transform:scale(1.1)}
.testimonial-photo img.cheryl-photo{transform:scale(1.2)}
.testimonial-quote{font-size:1rem;margin:.6rem 0 0.6rem;font-weight:700;min-height:150px}
.testimonial-name{margin-top:.6rem;font-weight:900}
.testimonial-meta{font-size:.9rem;color:var(--muted)}

/* Contact-us CTA section */
.contact-cta{position:relative;display:grid;place-items:center;padding:3.2rem 1rem;margin-bottom:0}
.contact-cta::before{content:"";position:absolute;inset:0;background-image:url('/assets/img/contact-us-background.jpg');background-size:cover;background-position:center;opacity:.25;border-radius:0}
.contact-cta .inner{position:relative;z-index:1;text-align:center}
.contact-cta h2{font-size:clamp(2.2rem,4vw,3rem)}
.contact-cta .btn{min-width:220px;padding:1rem 1.6rem;font-size:1.1rem;justify-content:center;text-align:center}

/* Services */
.pricing-note{margin-top:.5rem}
.rate-tag{display:inline-block;background:var(--brand-50);color:var(--brand);border:1px solid rgba(113,92,167,.2);padding:.3rem .7rem;border-radius:999px;font-weight:700}

/* Embeds */
.embed-iframe{width:100%;height:640px;border:0;border-radius:12px;box-shadow:var(--shadow);display:block}
@media(max-width:759px){.embed-iframe{height:520px}}

/* Contact page full background with white overlay */
body.contact-page{background-image:url('/assets/img/contact-us-background.jpg');background-size:cover;background-position:center;background-repeat:no-repeat;min-height:100vh;position:relative}
body.contact-page::before{content:"";position:absolute;inset:0;background:rgba(255,255,255,0.86);z-index:0;pointer-events:none}
body.contact-page .site,body.contact-page main,body.contact-page footer{position:relative;z-index:1}
body.contact-page main.container.page{max-width:1500px;width:100%}
body.contact-page .page .grid-2{max-width:1100px;width:100%;margin:0 auto;justify-items:center;justify-content:center}
body.contact-page .page .grid-2{grid-template-columns:minmax(0,1fr)}
body.contact-page .page .grid-2 > section{width:100%}
body.contact-page .page .card{text-align:center}
body.contact-page .page .card .btn{justify-content:center}
body.contact-page .page .form h3{text-align:center}

.schedule-split{display:grid;grid-template-columns:1fr 1fr;gap:0;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);border:1px solid #e2e8f0;background:#fff;min-height:360px}
.schedule-content{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:2rem;text-align:center}
.schedule-content h3{margin:0 0 .9rem}
.schedule-image{position:relative;min-height:360px;background:url('/assets/img/consultation.jpg') center/cover no-repeat}
.schedule-image::after{content:"";position:absolute;inset:0;background:rgba(15,23,42,0.25)}
@media(max-width:759px){
  .schedule-split{grid-template-columns:1fr;min-height:auto}
  .schedule-image{min-height:240px}
}

/* Host banner (placeholder styling until exact provided) */
.host-banner{background:linear-gradient(90deg,var(--kyber-navy),#1f2937);color:#fff}
.host-banner .inner{display:flex;align-items:center;justify-content:center;gap:.6rem;padding:.7rem 1rem}
.host-banner strong{color:var(--kyber-orange)}

/* FOOTER */
footer{background:#0f172a;color:#e2e8f0}
footer a{color:#94a3b8;text-decoration:none}
.footer-grid{display:grid;grid-template-columns:1fr;gap:1rem;padding:2rem 0}
.footer-brand{display:flex;gap:.8rem;align-items:center}
.small{font-size:.9rem;color:#94a3b8}
.about-credentials{margin:.75rem 0 0 1.1rem;color:var(--muted)}
.about-credentials li{margin:.25rem 0}

/* CONTACT / FORMS */
.form{background:var(--card);padding:1rem;border:1px solid #e2e8f0;border-radius:var(--radius);box-shadow:var(--shadow)}
label{display:block;font-weight:700;margin:.6rem 0 .25rem}
input,textarea,select{width:100%;padding:.8rem;border:1px solid #cbd5e1;border-radius:12px;background:white;outline-color:var(--ring);font:inherit}
input:focus,textarea:focus,select:focus{box-shadow:0 0 0 4px var(--ring);border-color:var(--accent)}
.inline{display:flex;gap:.6rem;flex-wrap:wrap}
.notice{background:var(--accent-50);color:var(--brand);padding:.8rem;border-radius:12px;border:1px solid rgba(245,148,150,.25)}

/* UPLOAD */
.dropzone{display:grid;place-items:center;gap:.6rem;text-align:center;border:2px dashed var(--brand);padding:1.5rem;border-radius:16px;background:#f8fafc}
.dropzone.dragover{background:#eff6ff;border-color:var(--brand)}
.file-list{margin:.8rem 0 0;display:grid;gap:.5rem}
.file-item{display:flex;justify-content:space-between;align-items:center;background:white;border:1px solid #e2e8f0;padding:.6rem;border-radius:12px}

/* MEDIA QUERIES */
@media(min-width:760px){
  .hero .inner{grid-template-columns:1.15fr .85fr;align-items:center;padding:4rem 0 3rem}
  .cards.grid-3{grid-template-columns:repeat(3,1fr)}
  .grid-2{grid-template-columns:1.2fr .8fr}
  .footer-grid{grid-template-columns:2fr 1.3fr 1fr 1fr}
  .footer-contact p.small{white-space:normal;overflow-wrap:normal}
  .footer-grid > div{display:flex;flex-direction:column;justify-content:flex-start;gap:.35rem}

  /* Tighten footer spacing and align column headers */
  .footer-grid > div > p.small{margin:0}
  .footer-grid > div > strong{margin:0 0 .25rem}
  .hamburger{display:none}
  .mobile-panel{display:none !important}
}
@media(max-width:759px){
  .menu{display:none}
  .hamburger{display:inline-grid}
  .mobile-panel.show{display:block}
  .container{padding-left:calc(clamp(1.8rem,6vw,2.6rem) + 10px);padding-right:calc(clamp(1.8rem,6vw,2.6rem) + 10px)}
  nav.site .container{padding-left:calc(clamp(1.4rem,5vw,2.1rem) + 10px);padding-right:calc(clamp(1.4rem,5vw,2.1rem) + 10px)}
  html,body{width:100%;overflow-x:hidden}
  nav.site,header,main,section,footer{max-width:100%;width:100%;overflow-x:clip}
  .hero .inner,.footer-grid,.cards,.grid-2,.grid-3{width:100%;min-width:0}

  .carousel{overflow-x:auto;scroll-snap-type:x mandatory;justify-content:flex-start;padding:0 1.5rem;scroll-padding:0 1.5rem}
  .testimonial-card{flex:0 0 85%;scroll-snap-align:center}

  .kyber-banner{flex-wrap:wrap;justify-content:center;text-align:center;font-size:.68rem}
  .kyber-banner-right{margin-left:0}

  .hero .inner{text-align:center}
  .hero .inner .lead{max-width:34ch;margin-left:auto;margin-right:auto;text-align:left}
  .hero .inner .badge{margin-left:auto;margin-right:auto}
  .hero-actions{justify-content:center}
}


/* v5 countdown refinements */
.deadline-card{ text-align:center }
.deadline-card h3.deadline-title{ font-size:1.2rem; letter-spacing:.02em; color:var(--brand); margin:.2rem 0 .6rem; font-weight:900 }
.timer{ justify-content:center }
.timer .tile{ min-width:92px; padding:1rem 1rem }
.timer .big{ font-size:2rem; font-weight:900; line-height:1; }
.deadline-line{ font-size:.95rem }


/* v5 host banner refinements */
.host-banner{background:#0b1220;color:#e5e7eb;border-top:1px solid #111827}
.host-banner .inner{display:flex;align-items:center;justify-content:center;gap:.5rem;padding:.55rem 1rem}
.host-banner strong{color:#ff7a00;font-weight:800;letter-spacing:.01em}

/* Kyber Hosting Banner */
/* Kyber Hosting Banner */
.kyber-banner {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 10px 14px;
  margin-top: 12px;

  font-size: 0.6rem;
  text-decoration: none;
  color: #ffffff;

  background: #0b1530;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.kyber-banner img {
  height: 20px;
  width: auto;
}

.kyber-banner-right {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto; /* 👈 pushes this block to the right */
}

.kyber-banner .flag {
  height: 14px;
}
