/* ==============================
   THEME TOKENS + COLOR MODES
   ============================== */

:root{
  /* Brand colors (keep your format) */
  --p:#6c63ff;
  --s:#00e0ff;

  /* Mode tokens (default: dark) */
  --bg: #020617;
  --bg2:#0b1224;
  --text:#ffffff;
  --muted: rgba(255,255,255,.78);
  --muted2: rgba(255,255,255,.62);

  --surface: rgba(255,255,255,.08);
  --surface2: rgba(255,255,255,.06);
  --border: rgba(255,255,255,.14);

  --shadow: 0 20px 60px rgba(211, 25, 25, 0.35);

  --radius: 26px;
  --radius-sm: 16px;

  --container: 1200px;

  --nav-h: 72px;
}

/* Light mode overrides */
[data-theme="light"]{
  --bg:#f7f9ff;
  --bg2:#eef2ff;
  --text:#0b1224;
  --muted: rgba(11,18,36,.78);
  --muted2: rgba(11,18,36,.62);

  --surface: rgba(11,18,36,.06);
  --surface2: rgba(11,18,36,.04);
  --border: rgba(11,18,36,.12);

  --shadow: 0 18px 50px rgba(11,18,36,.12);
}

/* Respect OS preference if user hasn't picked manually */
@media (prefers-color-scheme: light) {
  :root:not([data-theme]) {
    --bg:#f7f9ff;
    --bg2:#eef2ff;
    --text:#0b1224;
    --muted: rgba(11,18,36,.78);
    --muted2: rgba(11,18,36,.62);
    --surface: rgba(11,18,36,.06);
    --surface2: rgba(11,18,36,.04);
    --border: rgba(11,18,36,.12);
    --shadow: 0 18px 50px rgba(11,18,36,.12);
  }
}

/* ==============================
   GLOBAL RESET + BASE
   ============================== */

*{margin:0;padding:0;box-sizing:border-box}
html { 
  scroll-behavior:smooth;
  -webkit-text-size-adjust: 100%;
   width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(circle at top, var(--bg2), var(--bg) 60%);
  color: var(--text);
  overflow-x:hidden;
   width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Better default readability */
p, li{
  color: var(--muted);
  line-height: 1.8;
  font-size: clamp(1rem, 0.6vw + 0.95rem, 1.1rem);
}

h1,h2,h3{
  letter-spacing:-0.03em;
  color: var(--text);
}

a{ color: inherit; }
img{ max-width:100%; height:auto; display:block; }

/* Accessible focus */
:focus-visible{
  outline: 3px solid rgba(0,224,255,.35);
  outline-offset: 3px;
  border-radius: 10px;
}

/* ==============================
   LAYOUT UTILITIES
   ============================== */

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 80px);
}

section{
  padding-block: clamp(56px, 7vw, 110px);
}

/* Your spacing utilities (kept but made safe) */
.py-n { padding: 0 !important; }
.px-n { padding: 0 !important; }
.pt-n{ padding-top: 0 !important; }

.pt-sm { padding-top: 40px !important; }
.pb-sm { padding-bottom: 40px !important; }

/* ==============================
   FLOATING GLOWS
   ============================== */

.glow{
  position:absolute;
  width:380px;height:380px;
  background:radial-gradient(circle,var(--s),transparent 60%);
  filter:blur(80px);
  opacity:.22;
  animation:float 12s infinite alternate;
  pointer-events:none;
}
.glow.one{top:-100px;left:-100px}
.glow.two{bottom:-120px;right:-120px;animation-delay:4s}

@keyframes float{
  from{transform:translateY(0)}
  to{transform:translateY(-60px)}
}

/* ==============================
   NAVIGATION (DESKTOP + MOBILE)
   ============================== */

.main-nav{
  position: sticky;
  top: 0;
  z-index: 999;
  height: var(--nav-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;

  padding-inline: clamp(16px, 4vw, 80px);
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.site-title{
  font-size: clamp(1.25rem, 1vw + 1rem, 1.7rem);
  font-weight: 800;
  margin: 0;
}

/* WP menu ul */
.nav-links{
  list-style:none;
  display:flex;
  align-items:center;
  gap: clamp(12px, 2vw, 28px);
  margin:0;
  padding:0;
}

.nav-links a{
  text-decoration:none;
  color: var(--text);
  font-weight: 600;
  padding: 10px 10px;
  border-radius: 12px;
  transition: .2s ease;
}
.nav-links a:hover{
  color: var(--s);
  background: var(--surface2);
}

/* Right-side buttons (theme + hamburger) */
.nav-actions{
  display:flex;
  align-items:center;
  gap: 10px;
}

.icon-btn{
  border: 1px solid var(--border);
  background: var(--surface2);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 14px;
  cursor: pointer;
  transition: .2s ease;
}
.icon-btn:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* Mobile behavior */
.nav-toggle{ display:none; }

@media (max-width: 900px){
  .nav-toggle{ display:inline-flex; }

  /* Menu collapses into dropdown */
  .nav-links{
    position: absolute;
    left: 0;
    right: 0;
    top: var(--nav-h);
    padding: 12px clamp(16px, 4vw, 80px) 16px;

    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;

    background: color-mix(in srgb, var(--bg) 78%, transparent);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
  }

  body.nav-open .nav-links{
    display:flex;
  }

  .nav-links a{
    width: 100%;
    padding: 12px 12px;
  }
}

/* ==============================
   HERO
   ============================== */

.hero{
  padding-top: clamp(64px, 7vw, 110px);
}

.herodiv{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items:center;
  gap: clamp(24px, 5vw, 64px);
}

.hero h2{
  font-size: clamp(2rem, 3.2vw + 1rem, 3.5rem);
  line-height: 1.08;
  max-width: 18ch;
}
.hero h2 span{
  background:linear-gradient(to right,var(--s),var(--p));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero p{
  margin-top: 18px;
  max-width: 62ch;
  color: var(--muted);
}

.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;

  margin-top: 26px;
  padding: 14px 26px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--p), var(--s));
  color:#fff;
  text-decoration:none;
  font-weight: 800;
  box-shadow: 0 0 38px rgba(108,99,255,.35);
  transition: .2s ease;
}
.cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 0 55px rgba(0,224,255,.25);
}

.hero-image{
  position:relative;
  display:flex;
  justify-content:center;
}
.hero-image img,
.elementor-widget-image img{
  width:100%;
  max-width: 520px;
  border-radius: 28px;
  object-fit: cover;
  z-index: 2;
  box-shadow: var(--shadow);
  animation: floatImg 6s ease-in-out infinite;
}

/* Glow behind image */
.hero-image::before{
  content:'';
  position:absolute;
  width:min(420px, 70vw);
  height:min(420px, 70vw);
  background:radial-gradient(circle,var(--p),transparent 65%);
  filter:blur(80px);
  opacity:.40;
  z-index:1;
}

@keyframes floatImg{
  0%{transform:translateY(0)}
  50%{transform:translateY(-14px)}
  100%{transform:translateY(0)}
}

@media (max-width: 900px){
  .herodiv{
    grid-template-columns: 1fr;
    text-align:center;
  }
  .hero h2{ margin-inline:auto; }
  .hero p{ margin-inline:auto; }
}

/* ==============================
   SECTION TITLES + GRID + CARDS
   ============================== */

.title{
  font-size: clamp(1.7rem, 2vw + 1.2rem, 2.6rem);
  text-align:center;
  margin-bottom: clamp(28px, 4vw, 64px);
}

.grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(16px, 2.5vw, 36px);
}

.card{
  background: var(--surface);
  border: 1px solid var(--border);
  padding: clamp(20px, 2.5vw, 36px);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  box-shadow: none;
  transition: .35s ease;

  opacity: 0;
  transform: translateY(24px);
}
.card:hover{
  transform: translateY(-8px);
  box-shadow: 0 0 50px rgba(0,224,255,.16);
}

.card h3{
  margin-bottom: 10px;
  color: var(--s);
  font-size: 1.15rem;
}
.card p{
  color: var(--muted);
}

/* Steps + Pricing */
.step{
  font-size: 2rem;
  font-weight: 900;
  color: var(--p);
  margin-bottom: 10px;
}
.price{
  font-size: 2.2rem;
  font-weight: 900;
  margin: 10px 0;
  color: var(--s);
}
.card ul{ margin-top: 12px; padding-left: 18px; }
.card li{ margin: 6px 0; color: var(--muted); }

/* Reduce motion: don't hide content */
@media (prefers-reduced-motion: reduce){
  .card{ opacity: 1 !important; transform: none !important; }
  .hero-image img{ animation: none !important; }
  .glow{ animation: none !important; }
}

/* ==============================
   FINAL CTA + FOOTER
   ============================== */

.final{
  text-align:center;
  padding-block: clamp(64px, 7vw, 120px);
}

.final h2{
  font-size: clamp(1.9rem, 2.5vw + 1rem, 3rem);
  margin-bottom: 14px;
  background: linear-gradient(to right, var(--s), var(--p));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.final p{
  margin-inline:auto;
  max-width: 70ch;
  font-size: clamp(1rem, 0.7vw + 0.9rem, 1.15rem);
}

footer{
  text-align:center;
  padding: 32px 16px;
  color: var(--muted2);
}

/* ==============================
   ABOUT + CONTENT SAFETY (kept)
   ============================== */

.entry-content img{
  max-width: 100%;
  height: auto;
  border-radius: 24px;
}

/* CONTACT FORM */
.contact-form{
  max-width: 760px;
  padding: clamp(18px, 2.5vw, 44px);
}

.form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 768px){
  .form-grid{ grid-template-columns: 1fr; }
}

form{
  display:grid;
  gap: 18px;
}

form label{
  font-size: .9rem;
  font-weight: 700;
  opacity: .9;
  color: var(--text);
}

form input,
form textarea{
  width:100%;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface2);
  backdrop-filter: blur(10px);
  color: var(--text);
  font-size: 1rem;
  outline:none;
  transition: .25s ease;
}

form input::placeholder,
form textarea::placeholder{
  color: color-mix(in srgb, var(--text) 40%, transparent);
}

form input:focus,
form textarea:focus{
  border-color: color-mix(in srgb, var(--s) 70%, var(--border));
  box-shadow: 0 0 0 3px rgba(0,224,255,.14);
}

form textarea{
  resize: vertical;
  min-height: 140px;
}

form button.cta{
  margin-top: 6px;
  border:none;
  cursor:pointer;
}

@media (max-width: 768px){
  form button.cta{ width: 100%; }
}
/* PRICING: force grid to be centered and not stretch left */
.pricing-center .grid{
  /* shrink-to-fit behavior and center the whole grid block */
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;

  /* keep your responsive columns but avoid left-stretch look */
  justify-content: center;
}

.pricing-center .card{
  /* make cards equal width so grid looks centered */
  width: 320px;
  max-width: 100%;
}
.card { opacity: 1; transform: none; }
/* ==============================
   ABOUT PAGE – BIGGER TYPOGRAPHY
   ============================== */

/* If your About page body class is different, this still works
   because it targets the classes you use on the About HTML */
.about-wrap,
.about-intro,
.about-text{
  font-size: 1.12em; /* overall bump */
}
.textcen{
  text-align: center;
  font-size: large;
}
.textcol{
  color: #fff;
}
/* About hero title */
.hero h2.wf,
.hero h2{
  font-size: clamp(2.4rem, 3.8vw + 1.1rem, 4.2rem);
}

/* Section titles on About */
.about-wrap .title{
  font-size: clamp(2.2rem, 2.4vw + 1.4rem, 3.3rem);
}

/* Subtitle */
.about-subtitle{
  font-size: clamp(1.6rem, 1.3vw + 1.1rem, 2.2rem);
}

/* Paragraphs */
.about-intro{
  font-size: clamp(1.15rem, 0.9vw + 1rem, 1.35rem);
}

.about-text{
  font-size: clamp(1.1rem, 0.8vw + 0.98rem, 1.3rem);
}

/* Solution cards text */
.about-solutions .card h3{
  font-size: 1.35rem;
}
.about-solutions .card p{
  font-size: 1.12rem;
}

/* Optional: make lists bigger if you add any later */
.about-wrap li{
  font-size: 1.1rem;
}
/* ==============================
   BLOG LISTING PAGE CARDS
   ============================== */
.blog-grid .blog-card{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-thumb{
  display: block;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface2);
}

.blog-thumb img{
  width: 100%;
  height: 190px;      /* consistent card heights */
  object-fit: cover;
  display: block;
}

.blog-thumb-fallback{
  height: 190px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--p) 30%, transparent), color-mix(in srgb, var(--s) 25%, transparent));
}

.blog-meta{
  font-size: 0.95rem;
  color: var(--muted2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-title a{
  text-decoration: none;
}
.blog-title{
  font-size: 1.25rem;
  line-height: 1.25;
}

.blog-excerpt{
  margin-top: 0;
}

/* Ensure CTA doesn't stretch weirdly */
.blog-card .cta{
  width: fit-content;
}
/* ==============================
   BLOG PAGE – BIGGER TYPOGRAPHY
   ============================== */

/* Page heading + intro */
.blog-grid{
  font-size: 1.12em; /* bumps everything inside the grid */
}

.about-wrap .title{
  font-size: clamp(2.4rem, 2.8vw + 1.4rem, 3.6rem);
}

.about-wrap .about-intro{
  font-size: clamp(1.15rem, 0.9vw + 1rem, 1.4rem);
}

/* Blog cards */
.blog-title{
  font-size: clamp(1.35rem, 0.9vw + 1.15rem, 1.7rem);
}

.blog-excerpt{
  font-size: clamp(1.12rem, 0.7vw + 1rem, 1.3rem);
  line-height: 1.85;
}

/* Meta line (date/category) */
.blog-meta{
  font-size: 1.02rem;
}

/* CTA button text */
.blog-card .cta{
  font-size: 1.05rem;
  padding: 16px 30px; /* slightly bigger button */
}
/* ==============================
   SINGLE BLOG POST (PER BLOG)
   ============================== */

.single-wrap{
  padding-top: clamp(70px, 7vw, 120px);
}

/* Header spacing + typography */
.single-header{
  text-align: center;
  margin-bottom: 26px;
}

.single-meta{
  color: var(--muted2);
  font-size: 1.05rem;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.single-title{
  font-size: clamp(2.2rem, 3vw + 1.2rem, 4rem);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.single-subtitle{
  font-size: clamp(1.15rem, 0.9vw + 1rem, 1.4rem);
  max-width: 75ch;
  margin: 0 auto;
  color: var(--muted);
}

/* Featured image block with “space” */
.single-hero{
  margin: 30px auto 34px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface2);
  box-shadow: var(--shadow);
  max-width: 980px;     /* nice readable width */
}

.single-hero-img{
  width: 100%;
  height: clamp(220px, 36vw, 460px);  /* gives a strong hero image area */
  object-fit: cover;
  display: block;
}

/* Fallback if no featured image */
.single-hero--fallback{
  height: clamp(220px, 36vw, 460px);
  background: radial-gradient(circle at 20% 20%, color-mix(in srgb, var(--s) 30%, transparent), transparent 55%),
              radial-gradient(circle at 70% 30%, color-mix(in srgb, var(--p) 35%, transparent), transparent 60%),
              var(--surface2);
}

/* Content area */
.single-content{
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(22px, 3vw, 46px);
}

/* Make post text bigger + cleaner */
.single-content p,
.single-content li{
  font-size: clamp(1.12rem, 0.75vw + 1rem, 1.28rem);
  line-height: 1.9;
}

.single-content h2{
  font-size: clamp(1.5rem, 1.4vw + 1.2rem, 2.2rem);
  margin: 28px 0 12px;
}

.single-content h3{
  font-size: clamp(1.25rem, 1vw + 1.1rem, 1.7rem);
  margin: 22px 0 10px;
}

.single-content a{
  color: var(--s);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.single-content img{
  border-radius: 22px;
  margin: 22px auto;
  box-shadow: var(--shadow);
}

/* Mobile refinement */
@media (max-width: 768px){
  .single-header{ text-align: left; }
  .single-meta{ justify-content: flex-start; }
}
/* ==============================
   CONTACT PAGE – BIGGER TYPOGRAPHY
   ============================== */
.contact-scale{
  font-size: 1.15em;
}

.contact-scale .hero h2{
  font-size: clamp(2.4rem, 3.6vw + 1.1rem, 4.1rem);
}

.contact-scale .about-intro{
  font-size: clamp(1.15rem, 0.9vw + 1rem, 1.4rem);
}

.contact-scale label{
  font-size: 1rem;
}

.contact-scale input,
.contact-scale textarea{
  font-size: 1.05rem;
}

@media (max-width: 900px){
  .contact-scale .grid{
    grid-template-columns: 1fr !important;
  }
}
.site-footer {
  text-align: center;
  padding: 20px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.footer-socials img {
  width: 24px;
  height: 24px;
  filter: var(--footer-icon-filter, none); /* optional: can adjust for dark/light mode */
  transition: transform .2s ease;
}

.footer-socials a:hover img {
  transform: scale(1.1);
}
