/* ============================================
   DHANI MARKETING SERVICES — MAIN STYLESHEET
   ============================================ */

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

/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:       #6C3EFF;
  --primary-light: #8B5FFF;
  --primary-dark:  #4A1FCC;
  --accent:        #FF6B35;
  --accent2:       #00D4AA;
  --dark:          #0A0A0F;
  --dark2:         #13131C;
  --dark3:         #1C1C2E;
  --text:          #E8E8F0;
  --text-muted:    #8888AA;
  --glass:         rgba(255,255,255,0.04);
  --glass-border:  rgba(255,255,255,0.08);
  --radius:        20px;
  --radius-sm:     12px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* ── FLOATING ORBS ── */
.orb {
  position: fixed; border-radius: 50%; filter: blur(80px);
  pointer-events: none; z-index: 0; opacity: .3;
  animation: float 8s ease-in-out infinite;
}
.orb-1 { width:400px; height:400px; background:var(--primary); top:-100px; left:-100px; animation-delay:0s; }
.orb-2 { width:300px; height:300px; background:var(--accent); bottom:10%; right:-80px; animation-delay:3s; }
.orb-3 { width:250px; height:250px; background:var(--accent2); bottom:40%; left:20%; animation-delay:5s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-28px)} }

/* ── LAYOUT ── */
.container { max-width:1180px; margin:0 auto; padding:0 24px; }
.section-pad { padding: 96px 0; }

/* ── TYPOGRAPHY HELPERS ── */
.tag {
  display:inline-block;
  font-size:.72rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  color:var(--primary-light); margin-bottom:12px;
}
.section-title {
  font-size: clamp(1.9rem,4vw,3rem); font-weight:800;
  line-height:1.12; letter-spacing:-1.5px;
}
.section-sub { color:var(--text-muted); font-size:1rem; line-height:1.7; margin-top:14px; max-width:540px; }
.grad-text {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* ── BUTTONS ── */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 32px; border-radius:50px;
  font-size:.95rem; font-weight:700; border:none; cursor:pointer;
  transition: transform .18s, box-shadow .18s, background .18s;
}
.btn:hover { transform:translateY(-2px); }
.btn-primary {
  background: var(--primary); color:#fff;
  box-shadow: 0 0 28px rgba(108,62,255,.4);
}
.btn-primary:hover { background:var(--primary-light); box-shadow:0 0 44px rgba(108,62,255,.6); }
.btn-outline {
  background: transparent; color:#fff;
  border: 1px solid var(--glass-border);
}
.btn-outline:hover { background:var(--glass); border-color:rgba(255,255,255,.2); }
.btn-accent {
  background: var(--accent); color:#fff;
  box-shadow: 0 0 24px rgba(255,107,53,.35);
}
.btn-accent:hover { background:#FF8A5C; }

/* ── NAVBAR ── */
#site-header {
  position: fixed; top:0; width:100%; z-index:999;
  padding:16px 0;
  background: rgba(10,10,15,.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: padding .3s;
}
#site-header.scrolled { padding:10px 0; }
.header-inner {
  display:flex; align-items:center; justify-content:space-between; gap:24px;
}
.site-logo {
  font-size:1.5rem; font-weight:900; letter-spacing:-.5px;
  background: linear-gradient(135deg,#fff 30%,var(--primary-light));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
}
.site-logo img { height:44px; width:auto; -webkit-text-fill-color:unset; }

.main-nav ul { display:flex; gap:32px; }
.main-nav a { font-size:.9rem; font-weight:500; color:var(--text-muted); transition:color .2s; }
.main-nav a:hover, .main-nav a.active { color:#fff; }

.header-actions { display:flex; align-items:center; gap:12px; }
.cart-link {
  position:relative; display:flex; align-items:center; gap:6px;
  font-size:.88rem; font-weight:600; color:var(--text-muted);
  transition:color .2s;
}
.cart-link:hover { color:#fff; }
.cart-count {
  position:absolute; top:-6px; right:-8px;
  background:var(--accent); color:#fff;
  width:18px; height:18px; border-radius:50%;
  font-size:.65rem; font-weight:800;
  display:flex; align-items:center; justify-content:center;
}
.hamburger {
  display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px;
}
.hamburger span { width:24px; height:2px; background:#fff; border-radius:2px; transition:.3s; }

/* ── HERO ── */
.hero {
  min-height:100vh; display:flex; align-items:center;
  padding:120px 0 80px; position:relative; overflow:hidden;
  text-align:center;
}
.hero-bg {
  position:absolute; inset:0; z-index:0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(108,62,255,.28) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 60%, rgba(255,107,53,.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(0,212,170,.10) 0%, transparent 60%);
}
.hero .container { position:relative; z-index:1; }
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--glass); border:1px solid var(--glass-border);
  border-radius:50px; padding:7px 18px; margin-bottom:28px;
  font-size:.75rem; font-weight:600; letter-spacing:.06em; text-transform:uppercase;
  color:var(--primary-light);
}
.hero-badge::before {
  content:''; width:6px; height:6px; border-radius:50%;
  background:var(--accent2); box-shadow:0 0 6px var(--accent2);
  animation:pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero h1 {
  font-size:clamp(2.6rem,6vw,5.4rem); font-weight:900;
  line-height:1.05; letter-spacing:-2px; margin-bottom:24px;
}
.hero-sub { font-size:1.15rem; color:var(--text-muted); max-width:560px; margin:0 auto 40px; line-height:1.75; }
.hero-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.hero-stats {
  display:flex; gap:48px; justify-content:center; flex-wrap:wrap;
  margin-top:72px; padding-top:40px;
  border-top: 1px solid var(--glass-border);
}
.stat-num { font-size:2.4rem; font-weight:900; }
.stat-label { font-size:.78rem; color:var(--text-muted); text-transform:uppercase; letter-spacing:.06em; margin-top:4px; }

/* ── SERVICES GRID ── */
.services-section { background:var(--dark2); }
.services-header { text-align:center; margin-bottom:60px; }
.services-header .section-sub { margin:14px auto 0; }
.services-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(300px,1fr));
  gap:22px;
}
.service-card {
  background:var(--glass); border:1px solid var(--glass-border);
  border-radius:var(--radius); padding:30px 26px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  position:relative; overflow:hidden;
  display:flex; flex-direction:column;
}
.service-card:hover {
  transform:translateY(-6px);
  border-color:rgba(255,255,255,.15);
  box-shadow:0 20px 60px rgba(0,0,0,.45);
}
.service-icon {
  width:50px; height:50px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem; margin-bottom:18px; flex-shrink:0;
}
.service-card h3 { font-size:1.05rem; font-weight:700; margin-bottom:10px; }
.service-card p { font-size:.87rem; color:var(--text-muted); line-height:1.65; flex:1; }
.service-price {
  margin-top:18px; padding-top:14px; border-top:1px solid var(--glass-border);
  display:flex; align-items:center; justify-content:space-between;
}
.price-label { font-size:.8rem; color:var(--text-muted); }
.price-value { font-size:1.1rem; font-weight:800; color:var(--primary-light); }
.service-card .btn { margin-top:14px; width:100%; justify-content:center; font-size:.88rem; padding:10px 20px; }

/* ── WOOCOMMERCE PRODUCTS (services catalog) ── */
.woocommerce ul.products { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:22px; margin:0; padding:0; }
.woocommerce ul.products li.product {
  background:var(--glass); border:1px solid var(--glass-border);
  border-radius:var(--radius); padding:28px 24px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  position:relative;
  display:flex; flex-direction:column;
}
.woocommerce ul.products li.product:hover {
  transform:translateY(-6px);
  border-color:rgba(255,255,255,.15);
  box-shadow:0 20px 60px rgba(0,0,0,.45);
}
.woocommerce ul.products li.product img { border-radius:12px; margin-bottom:18px; }
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size:1.05rem; font-weight:700; margin-bottom:10px; color:var(--text);
}
.woocommerce ul.products li.product .price {
  font-size:1.15rem; font-weight:800; color:var(--primary-light); margin:12px 0;
}
.woocommerce ul.products li.product .price del { color:var(--text-muted); font-size:.9rem; font-weight:500; }
.woocommerce ul.products li.product .button {
  background:var(--primary); color:#fff; border:none;
  padding:11px 22px; border-radius:50px;
  font-size:.88rem; font-weight:700; cursor:pointer;
  margin-top:auto; text-align:center;
  transition:background .2s, transform .15s;
}
.woocommerce ul.products li.product .button:hover { background:var(--primary-light); transform:translateY(-1px); }
.woocommerce .woocommerce-result-count { color:var(--text-muted); font-size:.88rem; }
.woocommerce .woocommerce-ordering select {
  background:var(--dark3); color:var(--text); border:1px solid var(--glass-border);
  padding:8px 14px; border-radius:8px; font-size:.88rem;
}

/* ── SINGLE PRODUCT PAGE ── */
.woocommerce div.product { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; }
.woocommerce div.product .woocommerce-product-gallery { position:sticky; top:100px; }
.woocommerce div.product .woocommerce-product-gallery img { border-radius:var(--radius); }
.woocommerce div.product .product_title {
  font-size:clamp(1.6rem,3vw,2.4rem); font-weight:800; letter-spacing:-1px;
  line-height:1.15; margin-bottom:12px;
}
.woocommerce div.product .woocommerce-product-rating { margin-bottom:16px; }
.woocommerce div.product .price {
  font-size:1.9rem; font-weight:900; color:var(--primary-light);
  margin:18px 0;
}
.woocommerce div.product .woocommerce-product-details__short-description {
  color:var(--text-muted); font-size:.95rem; line-height:1.75; margin-bottom:24px;
}
.woocommerce div.product form.cart { display:flex; gap:14px; flex-wrap:wrap; align-items:center; }
.woocommerce div.product form.cart .qty {
  background:var(--dark3); color:var(--text); border:1px solid var(--glass-border);
  padding:12px 16px; border-radius:12px; width:80px; font-size:1rem; text-align:center;
}
.woocommerce div.product form.cart .single_add_to_cart_button {
  background:var(--primary); color:#fff; border:none;
  padding:14px 36px; border-radius:50px;
  font-size:1rem; font-weight:700; cursor:pointer;
  box-shadow:0 0 28px rgba(108,62,255,.4);
  transition:background .2s, transform .15s;
}
.woocommerce div.product form.cart .single_add_to_cart_button:hover { background:var(--primary-light); transform:translateY(-2px); }
.woocommerce div.product .woocommerce-tabs { margin-top:48px; grid-column:1/-1; }
.woocommerce div.product .woocommerce-tabs ul.tabs {
  display:flex; gap:0; border-bottom:1px solid var(--glass-border); margin-bottom:28px; padding:0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  padding:12px 24px; font-size:.9rem; font-weight:600; cursor:pointer;
  color:var(--text-muted); border-bottom:2px solid transparent; transition:all .2s;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { color:#fff; border-bottom-color:var(--primary-light); }
.woocommerce div.product .woocommerce-tabs .panel { color:var(--text-muted); line-height:1.75; font-size:.95rem; }

/* ── HOW IT WORKS ── */
.how-section { background:var(--dark3); }
.how-inner { display:flex; gap:80px; align-items:center; flex-wrap:wrap; }
.how-text { flex:1; min-width:280px; }
.how-steps { flex:1.2; min-width:300px; }
.step-item {
  display:flex; gap:20px; padding:22px 0;
  border-bottom:1px solid var(--glass-border);
}
.step-item:last-child { border-bottom:none; }
.step-num {
  width:42px; height:42px; flex-shrink:0; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  font-size:.85rem; font-weight:900;
  background:linear-gradient(135deg,var(--primary),var(--primary-light));
  color:#fff; box-shadow:0 4px 16px rgba(108,62,255,.35);
}
.step-body h4 { font-size:1rem; font-weight:700; margin-bottom:6px; }
.step-body p { font-size:.87rem; color:var(--text-muted); line-height:1.65; }

/* ── METRICS ── */
.metrics-section { background:var(--dark2); }
.metrics-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:20px; }
.metric-card {
  background:var(--glass); border:1px solid var(--glass-border);
  border-radius:18px; padding:28px 22px; text-align:center;
}
.metric-val { font-size:2.5rem; font-weight:900; line-height:1; }
.metric-label { font-size:.82rem; color:var(--text-muted); margin-top:8px; line-height:1.4; }

/* ── TESTIMONIALS ── */
.testi-section { background:var(--dark); }
.testi-header { text-align:center; margin-bottom:52px; }
.testi-header .section-sub { margin:12px auto 0; }
.testi-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:22px; }
.testi-card {
  background:var(--dark3); border:1px solid var(--glass-border);
  border-radius:var(--radius); padding:28px 24px;
}
.testi-stars { color:#FFB800; letter-spacing:2px; margin-bottom:14px; }
.testi-text { font-size:.92rem; color:var(--text-muted); line-height:1.75; margin-bottom:20px; font-style:italic; }
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-avatar {
  width:42px; height:42px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-weight:800; font-size:.9rem; color:#fff; flex-shrink:0;
}
.testi-name { font-size:.9rem; font-weight:700; }
.testi-role { font-size:.78rem; color:var(--text-muted); }

/* ── CTA BAND ── */
.cta-section {
  background:linear-gradient(135deg,var(--primary-dark),var(--dark3));
  text-align:center; padding:100px 0; position:relative; overflow:hidden;
}
.cta-section::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 60% 80% at 50% 50%,rgba(108,62,255,.3) 0%,transparent 70%);
}
.cta-section .container { position:relative; z-index:1; }
.cta-section .section-title { max-width:700px; margin:0 auto 14px; }
.cta-section .section-sub { max-width:480px; margin:0 auto 38px; }
.cta-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ── FOOTER ── */
#site-footer {
  background:var(--dark2);
  border-top:1px solid var(--glass-border);
  padding:60px 0 36px;
}
.footer-top { display:flex; gap:56px; flex-wrap:wrap; margin-bottom:48px; }
.footer-brand { flex:2; min-width:220px; }
.footer-brand .site-logo { display:block; margin-bottom:14px; font-size:1.4rem; }
.footer-brand p { font-size:.88rem; color:var(--text-muted); line-height:1.7; max-width:280px; }
.footer-col { flex:1; min-width:140px; }
.footer-col h5 {
  font-size:.78rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  color:var(--text-muted); margin-bottom:16px;
}
.footer-col li { margin-bottom:9px; }
.footer-col a { font-size:.88rem; color:var(--text-muted); transition:color .2s; }
.footer-col a:hover { color:#fff; }
.footer-bottom {
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:12px; padding-top:28px;
  border-top:1px solid var(--glass-border);
}
.footer-bottom p { font-size:.8rem; color:var(--text-muted); }
.social-links { display:flex; gap:10px; }
.social-btn {
  width:36px; height:36px; border-radius:10px;
  background:var(--glass); border:1px solid var(--glass-border);
  display:flex; align-items:center; justify-content:center;
  font-size:.88rem; transition:background .2s;
}
.social-btn:hover { background:var(--primary); }

/* ── WOOCOMMERCE CART ── */
.woocommerce-cart table.cart { border-collapse:collapse; width:100%; }
.woocommerce-cart table.cart th { color:var(--text-muted); font-size:.8rem; text-transform:uppercase; letter-spacing:.08em; padding:12px 16px; border-bottom:1px solid var(--glass-border); }
.woocommerce-cart table.cart td { padding:16px; border-bottom:1px solid var(--glass-border); vertical-align:middle; }
.woocommerce-cart table.cart .product-name a { font-weight:600; color:var(--text); }
.woocommerce-cart table.cart .product-price, .woocommerce-cart table.cart .product-subtotal { color:var(--primary-light); font-weight:700; }
.woocommerce .cart-collaterals { margin-top:36px; }
.woocommerce .cart_totals { background:var(--dark3); border:1px solid var(--glass-border); border-radius:var(--radius); padding:28px; }
.woocommerce .cart_totals h2 { font-size:1.2rem; font-weight:700; margin-bottom:20px; }
.woocommerce .cart_totals table { width:100%; border-collapse:collapse; }
.woocommerce .cart_totals table th, .woocommerce .cart_totals table td { padding:12px 0; border-bottom:1px solid var(--glass-border); font-size:.92rem; }
.woocommerce .cart_totals table .order-total td { font-size:1.2rem; font-weight:800; color:var(--primary-light); }
.woocommerce a.checkout-button {
  background:var(--primary); color:#fff; border:none; border-radius:50px;
  padding:14px 36px; font-size:1rem; font-weight:700;
  display:inline-block; margin-top:20px; width:100%; text-align:center;
  box-shadow:0 0 28px rgba(108,62,255,.4);
  transition:background .2s, transform .15s;
}
.woocommerce a.checkout-button:hover { background:var(--primary-light); transform:translateY(-2px); }

/* ── WOOCOMMERCE CHECKOUT ── */
.woocommerce-checkout { }
.woocommerce-checkout h3 { font-size:1.2rem; font-weight:700; margin-bottom:20px; padding-bottom:12px; border-bottom:1px solid var(--glass-border); }
.woocommerce-checkout .col2-set { display:grid; grid-template-columns:1fr 1fr; gap:40px; }
.woocommerce form .form-row { margin-bottom:18px; }
.woocommerce form .form-row label { display:block; font-size:.85rem; font-weight:600; color:var(--text-muted); margin-bottom:7px; }
.woocommerce form .form-row input,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  width:100%; background:var(--dark3); color:var(--text);
  border:1px solid var(--glass-border); border-radius:12px;
  padding:13px 16px; font-size:.92rem;
  transition:border-color .2s;
}
.woocommerce form .form-row input:focus,
.woocommerce form .form-row textarea:focus { outline:none; border-color:var(--primary-light); }
.woocommerce form .form-row textarea { min-height:100px; resize:vertical; }
#order_review { background:var(--dark3); border:1px solid var(--glass-border); border-radius:var(--radius); padding:28px; }
#order_review h3 { border-bottom:1px solid var(--glass-border); }
.woocommerce-checkout-review-order-table { width:100%; border-collapse:collapse; margin-bottom:20px; }
.woocommerce-checkout-review-order-table th { font-size:.8rem; text-transform:uppercase; letter-spacing:.08em; color:var(--text-muted); padding:10px 0; border-bottom:1px solid var(--glass-border); }
.woocommerce-checkout-review-order-table td { padding:12px 0; border-bottom:1px solid var(--glass-border); font-size:.92rem; }
.woocommerce-checkout-review-order-table .order-total td { font-size:1.15rem; font-weight:800; color:var(--primary-light); }
#place_order {
  background:var(--primary); color:#fff; border:none; border-radius:50px;
  padding:16px 40px; font-size:1rem; font-weight:700; cursor:pointer; width:100%;
  box-shadow:0 0 28px rgba(108,62,255,.4);
  transition:background .2s, transform .15s; margin-top:16px;
}
#place_order:hover { background:var(--primary-light); transform:translateY(-2px); }

/* ── WOO NOTICES ── */
.woocommerce-error, .woocommerce-info, .woocommerce-message {
  background:var(--dark3); border:1px solid var(--glass-border); border-left:4px solid;
  border-radius:12px; padding:16px 20px; margin-bottom:24px;
  font-size:.92rem; list-style:none;
}
.woocommerce-error { border-left-color:var(--accent); }
.woocommerce-info { border-left-color:var(--accent2); }
.woocommerce-message { border-left-color:var(--primary-light); }

/* ── MY ACCOUNT ── */
.woocommerce-account .woocommerce-MyAccount-navigation { width:220px; flex-shrink:0; }
.woocommerce-account .woocommerce-MyAccount-navigation ul { background:var(--dark3); border:1px solid var(--glass-border); border-radius:var(--radius); padding:12px; }
.woocommerce-account .woocommerce-MyAccount-navigation li a { display:block; padding:10px 16px; border-radius:10px; font-size:.9rem; color:var(--text-muted); font-weight:500; transition:all .2s; }
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation li a:hover { background:var(--primary); color:#fff; }
.woocommerce-account .woocommerce-MyAccount-content { flex:1; }
.woocommerce-account .woocommerce { display:flex; gap:32px; align-items:start; }

/* ── GENERAL PAGE ── */
.page-content { padding:120px 0 80px; min-height:60vh; }
.page-content h1 { font-size:clamp(2rem,4vw,3rem); font-weight:800; letter-spacing:-1px; margin-bottom:24px; }
.page-content p { color:var(--text-muted); line-height:1.75; margin-bottom:16px; }

/* ── CUSTOM CHECKOUT FIELDS (Project Brief) ── */
.dhani-brief-box {
  background:var(--dark3); border:1px solid var(--glass-border);
  border-radius:var(--radius); padding:28px; margin-top:28px;
}
.dhani-brief-box h3 {
  font-size:1.1rem; font-weight:700; margin-bottom:6px; color:#fff;
}
.dhani-brief-box p { font-size:.85rem; color:var(--text-muted); margin-bottom:20px; }
.dhani-brief-box .form-row { margin-bottom:16px; }

/* ── BREADCRUMBS ── */
.woocommerce-breadcrumb {
  font-size:.82rem; color:var(--text-muted); margin-bottom:24px;
}
.woocommerce-breadcrumb a { color:var(--text-muted); transition:color .2s; }
.woocommerce-breadcrumb a:hover { color:#fff; }

/* ── RESPONSIVE ── */
@media(max-width:960px) {
  .woocommerce div.product { grid-template-columns:1fr; }
  .woocommerce-checkout .col2-set { grid-template-columns:1fr; }
  .how-inner { flex-direction:column; gap:40px; }
}
@media(max-width:768px) {
  .section-pad { padding:64px 0; }
  .main-nav { display:none; }
  .main-nav.open { display:flex; position:fixed; inset:0; flex-direction:column; align-items:center; justify-content:center; background:rgba(10,10,15,.97); z-index:998; }
  .main-nav.open ul { flex-direction:column; gap:28px; text-align:center; }
  .main-nav.open a { font-size:1.4rem; }
  .hamburger { display:flex; }
  .hero h1 { letter-spacing:-1px; }
  .hero-stats { gap:28px; }
  #site-footer { padding:48px 0 28px; }
  .footer-top { gap:28px; }
  .woocommerce-account .woocommerce { flex-direction:column; }
  .woocommerce-account .woocommerce-MyAccount-navigation { width:100%; }
}

/* ═══════════════════════════════════════
   PRICING SECTION
═══════════════════════════════════════ */
.pricing-section { background: var(--dark3); }
.pricing-header { text-align: center; margin-bottom: 60px; }
.pricing-header .section-sub { margin: 14px auto 0; }

.pricing-toggle {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-top: 28px;
}
.pricing-toggle span { font-size: .88rem; color: var(--text-muted); font-weight: 600; }
.pricing-toggle span.active { color: #fff; }
.toggle-switch {
  width: 48px; height: 26px; background: var(--primary); border-radius: 50px;
  position: relative; cursor: pointer; transition: background .2s;
  border: none;
}
.toggle-switch::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px; background: #fff; border-radius: 50%;
  transition: transform .25s;
}
.toggle-switch.yearly::after { transform: translateX(22px); }
.save-badge {
  background: var(--accent2); color: var(--dark); font-size: .68rem;
  font-weight: 800; padding: 3px 8px; border-radius: 50px; letter-spacing: .04em;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; max-width: 1100px; margin: 0 auto;
}
.pricing-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 36px 30px;
  display: flex; flex-direction: column;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,.45);
}
.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary), 0 24px 64px rgba(108,62,255,.25);
}
.popular-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--primary); color: #fff;
  font-size: .7rem; font-weight: 800; letter-spacing: .06em;
  padding: 4px 12px; border-radius: 50px; text-transform: uppercase;
}
.plan-name { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.plan-price {
  display: flex; align-items: flex-end; gap: 4px; margin-bottom: 6px; flex-wrap: wrap;
}
.plan-price .amount { font-size: 3rem; font-weight: 900; line-height: 1; color: #fff; }
.plan-price .currency { font-size: 1.3rem; font-weight: 700; color: var(--text-muted); margin-bottom: 6px; }
.plan-price .period { font-size: .85rem; color: var(--text-muted); margin-bottom: 8px; }
.plan-desc { font-size: .88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--glass-border); }
.plan-features { list-style: none; margin-bottom: 32px; flex: 1; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; color: var(--text-muted); margin-bottom: 12px; line-height: 1.5;
}
.plan-features li::before {
  content: '✓'; color: var(--accent2); font-weight: 800; font-size: .85rem; flex-shrink: 0; margin-top: 1px;
}
.plan-features li.no::before { content: '✕'; color: rgba(255,255,255,.2); }
.plan-features li.no { opacity: .45; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════ */
.faq-section { background: var(--dark2); }
.faq-inner { max-width: 860px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 52px; }
.faq-header .section-sub { margin: 12px auto 0; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: rgba(108,62,255,.4); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px; cursor: pointer; user-select: none;
}
.faq-question h4 { font-size: .97rem; font-weight: 600; line-height: 1.4; }
.faq-icon {
  width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
  background: var(--glass); border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; transition: transform .25s, background .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary); border-color: var(--primary); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px;
}
.faq-answer p { font-size: .92rem; color: var(--text-muted); line-height: 1.75; padding-bottom: 20px; }
.faq-item.open .faq-answer { max-height: 400px; padding-top: 0; }

/* ═══════════════════════════════════════
   ENHANCED TESTIMONIALS
═══════════════════════════════════════ */
.testi-grid-large {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
}
.testi-card-featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(108,62,255,.12), rgba(0,212,170,.08));
  border: 1px solid rgba(108,62,255,.3);
  border-radius: var(--radius); padding: 36px 32px;
  position: relative; overflow: hidden;
}
.testi-card-featured::before {
  content: '"'; position: absolute; top: -10px; right: 24px;
  font-size: 10rem; line-height: 1; color: rgba(108,62,255,.1);
  font-family: Georgia, serif; pointer-events: none;
}
.testi-card-featured .testi-text { font-size: 1.05rem; color: var(--text); font-style: italic; line-height: 1.75; margin-bottom: 24px; }
.testi-platform {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 14px;
}
.testi-platform-dot { width: 6px; height: 6px; border-radius: 50%; }
.testi-result {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,212,170,.1); border: 1px solid rgba(0,212,170,.2);
  border-radius: 50px; padding: 5px 14px; margin-top: 14px;
  font-size: .8rem; font-weight: 700; color: var(--accent2);
}

@media(max-width: 768px) {
  .testi-card-featured { grid-column: span 1; }
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   CLIENT PORTAL — MY ACCOUNT
═══════════════════════════════════════ */
.client-portal-wrap { display:flex; gap:32px; align-items:flex-start; flex-wrap:wrap; padding-top:32px; }

/* Nav sidebar */
.woocommerce-MyAccount-navigation {
  width:240px; flex-shrink:0;
}
.woocommerce-MyAccount-navigation ul {
  background:var(--dark3); border:1px solid var(--glass-border);
  border-radius:var(--radius); padding:10px; list-style:none;
}
.woocommerce-MyAccount-navigation ul li a {
  display:flex; align-items:center; gap:10px;
  padding:12px 16px; border-radius:10px;
  font-size:.9rem; font-weight:500; color:var(--text-muted);
  transition:all .2s;
}
.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li a:hover {
  background:var(--primary); color:#fff;
}

/* Content area */
.woocommerce-MyAccount-content { flex:1; min-width:0; }
.woocommerce-MyAccount-content h2 {
  font-size:1.4rem; font-weight:800; margin-bottom:24px;
  padding-bottom:16px; border-bottom:1px solid var(--glass-border);
}
.woocommerce-MyAccount-content p { color:var(--text-muted); font-size:.92rem; line-height:1.7; }

/* Orders table */
.woocommerce-orders-table {
  width:100%; border-collapse:collapse;
  background:var(--dark3); border:1px solid var(--glass-border);
  border-radius:var(--radius); overflow:hidden;
}
.woocommerce-orders-table thead th {
  background:rgba(108,62,255,.1); padding:14px 18px;
  font-size:.78rem; font-weight:700; text-transform:uppercase;
  letter-spacing:.08em; color:var(--text-muted); text-align:left;
}
.woocommerce-orders-table tbody td {
  padding:16px 18px; border-top:1px solid var(--glass-border);
  font-size:.9rem; vertical-align:middle;
}
.woocommerce-orders-table .woocommerce-orders-table__cell-order-number a { font-weight:700; color:var(--primary-light); }
.order-status {
  display:inline-flex; align-items:center; gap:6px;
  padding:4px 12px; border-radius:50px; font-size:.75rem; font-weight:700;
}
.order-status.processing { background:rgba(0,168,255,.12); color:#60CFFF; }
.order-status.completed  { background:rgba(0,212,170,.12); color:var(--accent2); }
.order-status.on-hold    { background:rgba(255,184,0,.12);  color:#FFB800; }
.order-status.pending    { background:rgba(255,255,255,.06);color:var(--text-muted); }
.woocommerce-button.button {
  background:var(--primary); color:#fff; padding:8px 18px;
  border-radius:50px; font-size:.82rem; font-weight:700;
  border:none; cursor:pointer; transition:background .2s;
}
.woocommerce-button.button:hover { background:var(--primary-light); }

/* ── PROJECT PROGRESS ── */
.progress-card {
  background:var(--dark3); border:1px solid var(--glass-border);
  border-radius:var(--radius); padding:28px; margin-bottom:20px;
}
.progress-card h4 { font-size:1rem; font-weight:700; margin-bottom:6px; }
.progress-card .order-ref { font-size:.8rem; color:var(--text-muted); margin-bottom:20px; }
.progress-steps { display:flex; gap:0; flex-wrap:wrap; }
.progress-step {
  display:flex; flex-direction:column; align-items:center; flex:1; min-width:80px;
  position:relative; text-align:center;
}
.progress-step::before {
  content:''; position:absolute; top:16px; left:50%; width:100%; height:2px;
  background:var(--glass-border); z-index:0;
}
.progress-step:last-child::before { display:none; }
.step-dot {
  width:32px; height:32px; border-radius:50%; z-index:1;
  display:flex; align-items:center; justify-content:center;
  font-size:.75rem; font-weight:800; margin-bottom:8px;
  border:2px solid var(--glass-border); background:var(--dark2); color:var(--text-muted);
  transition:all .3s;
}
.progress-step.done .step-dot   { background:var(--accent2); border-color:var(--accent2); color:var(--dark); }
.progress-step.active .step-dot { background:var(--primary);  border-color:var(--primary);  color:#fff; box-shadow:0 0 14px rgba(108,62,255,.5); }
.step-label { font-size:.72rem; color:var(--text-muted); line-height:1.3; max-width:70px; }
.progress-step.done .step-label,
.progress-step.active .step-label { color:var(--text); }

/* ── SUPPORT TICKETS ── */
.ticket-form {
  background:var(--dark3); border:1px solid var(--glass-border);
  border-radius:var(--radius); padding:28px; margin-bottom:32px;
}
.ticket-form h3 { font-size:1.1rem; font-weight:700; margin-bottom:18px; }
.ticket-form .form-group { margin-bottom:16px; }
.ticket-form label { display:block; font-size:.84rem; font-weight:600; color:var(--text-muted); margin-bottom:7px; }
.ticket-form input,
.ticket-form select,
.ticket-form textarea {
  width:100%; background:var(--dark2); color:var(--text);
  border:1px solid var(--glass-border); border-radius:12px;
  padding:12px 16px; font-size:.92rem; transition:border-color .2s;
}
.ticket-form input:focus,
.ticket-form textarea:focus { outline:none; border-color:var(--primary-light); }
.ticket-form textarea { min-height:110px; resize:vertical; }
.ticket-form .btn { margin-top:8px; }

.tickets-list { display:flex; flex-direction:column; gap:14px; }
.ticket-item {
  background:var(--dark3); border:1px solid var(--glass-border);
  border-radius:var(--radius-sm); padding:20px 22px;
  display:flex; justify-content:space-between; align-items:flex-start; gap:16px;
  flex-wrap:wrap;
}
.ticket-item h5 { font-size:.95rem; font-weight:700; margin-bottom:4px; }
.ticket-item p  { font-size:.84rem; color:var(--text-muted); line-height:1.55; }
.ticket-badge {
  padding:4px 12px; border-radius:50px; font-size:.72rem; font-weight:700;
  white-space:nowrap; flex-shrink:0;
}
.ticket-badge.open     { background:rgba(255,107,53,.12); color:var(--accent); }
.ticket-badge.progress { background:rgba(108,62,255,.12);  color:var(--primary-light); }
.ticket-badge.resolved { background:rgba(0,212,170,.12);   color:var(--accent2); }

/* ── WHATSAPP FLOAT BUTTON ── */
.wa-float {
  position:fixed; bottom:28px; right:28px; z-index:998;
  width:56px; height:56px; border-radius:50%;
  background:#25D366; display:flex; align-items:center; justify-content:center;
  font-size:1.6rem; box-shadow:0 4px 24px rgba(37,211,102,.45);
  transition:transform .2s, box-shadow .2s; cursor:pointer;
  text-decoration:none;
}
.wa-float:hover { transform:scale(1.08); box-shadow:0 6px 32px rgba(37,211,102,.6); }
.wa-float-pulse {
  position:absolute; width:100%; height:100%; border-radius:50%;
  background:#25D366; opacity:.4; animation:wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse { 0%{transform:scale(1);opacity:.4} 100%{transform:scale(1.7);opacity:0} }

@media(max-width:768px) {
  .client-portal-wrap { flex-direction:column; }
  .woocommerce-MyAccount-navigation { width:100%; }
  .progress-steps { gap:8px; }
  .progress-step::before { display:none; }
}
