:root{
  --primary:#2563eb;
  --primary-dark:#1d4ed8;
  --primary-soft:#eff6ff;
  --bg:#f7faff;
  --white:#ffffff;
  --text:#0f172a;
  --muted:#64748b;
  --border:#e2e8f0;
  --line:#dbeafe;
  --shadow:0 12px 40px rgba(37,99,235,0.10);
  --radius:20px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
}

.site-pattern{
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:
    radial-gradient(circle at 10% 10%, rgba(37,99,235,0.08), transparent 18%),
    radial-gradient(circle at 90% 10%, rgba(96,165,250,0.08), transparent 18%);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:14px;
  font-weight:700;
  border:1px solid transparent;
  cursor:pointer;
}

.btntry{ 
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:14px;
  font-weight:600;
  border:1px solid black;
  cursor:pointer;
  font-size: 15px;
}

@media (max-width:425px){
    .btntry{
        display: none;
    }
    
}

.btn-lg{
  padding:15px 22px;
}

.btn-lg2{
  padding:15px 22px;
  font-size: 20px;
}
.btn-primary{
  background:linear-gradient(135deg,var(--primary),#3b82f6);
  color:#fff;
  box-shadow:var(--shadow);
}

.btn-primary2{

  box-shadow:var(--shadow);
} 
.btn-light{
  background:#fff;
  color:var(--text);
  border-color:var(--border);
}

.full-btn{
  width:100%;
}

.hero-badge,
.section-tag,
.tag-soft{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:var(--primary-soft);
  border:1px solid #bfdbfe;
  color:var(--primary-dark);
  font-size:13px;
  font-weight:700;
}

/* ===== HEADER / NAVBAR ===== */
.main-header{
  position:sticky;
  top:0;
  z-index:99;
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}

.nav-wrap{
  min-height:78px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:20px;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  font-size:24px;
  flex-shrink:0;
}

.logo-mark{
  width:38px;
  height:38px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--primary),#60a5fa);
  color:#fff;
}

.logo-text{
  color:var(--text);
}

.main-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
}

.main-nav a{
  color:#334155;
  font-weight:600;
  white-space:nowrap;
}

.main-nav a:hover{
  color:var(--primary);
}

.header-right{
  display:flex;
  align-items:center;
  gap:10px;
  justify-self:end;
  flex-shrink:0;
}

.mobile-only-nav-block{
  display:none;
}

.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  border:none;
  border-radius:12px;
  background:#fff;
  border:1px solid var(--border);
  color:#1e293b;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  font-size:18px;
  flex-shrink:0;
}

/* cart icon */
.cart-icon-link{
  position:relative;
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  border:1px solid var(--border);
  border-radius:50%;
  color:#1e293b;
  transition:all .2s ease;
  flex-shrink:0;
}

.cart-icon-link:hover{
  background:#f8fafc;
  transform:translateY(-1px);
}

.cart-svg{
  line-height:1;
}

.cart-svg i{
  font-size:18px;
}

.cart-badge{
  position:absolute;
  top:-6px;
  right:-2px;
  width:22px;
  height:22px;
  border-radius:50%;
  background:#2563eb;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  font-weight:800;
  box-shadow:0 6px 16px rgba(37,99,235,0.25);
}

/* profile dropdown */
.profile-dropdown{
  position:relative;
}

.profile-icon-btn{
  width:44px;
  height:44px;
  border:none;
  border-radius:50%;
  background:linear-gradient(135deg,#2563eb,#60a5fa);
  color:#fff;
  font-weight:800;
  font-size:16px;
  cursor:pointer;
  box-shadow:var(--shadow);
}

.profile-dropdown-menu{
  position:absolute;
  right:0;
  top:54px;
  min-width:220px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:10px;
  display:none;
  z-index:1000;
}

.profile-dropdown-menu.show{
  display:block;
}

.profile-dropdown-menu a{
  display:block;
  padding:12px 14px;
  border-radius:12px;
  color:#334155;
  font-weight:600;
}

.profile-dropdown-menu a:hover{
  background:#f8fbff;
  color:#2563eb;
}

.profile-dropdown-menu a i,
.mobile-only-nav-block a i{
  width:20px;
  margin-right:8px;
  text-align:center;
}

/* ===== HERO ===== */
.hero-section{
  padding:80px 0 50px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:34px;
  align-items:center;
}

.hero-left h1{
  margin:18px 0 16px;
  font-size:56px;
  line-height:1.06;
}

.hero-left p{
  color:var(--muted);
  font-size:18px;
}

.hero-actions{
  display:flex;
  gap:14px;
  margin-top:28px;
}

.hero-mini-stats{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}

.stat-box{
  flex:1 1 180px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px 18px;
  box-shadow:var(--shadow);
}

.stat-box strong{
  display:block;
  margin-bottom:4px;
}

.stat-box span{
  color:var(--muted);
  font-size:14px;
}

.dashboard-preview{
  background:#fff;
  border:1px solid var(--line);
  border-radius:30px;
  padding:24px;
  box-shadow:0 20px 60px rgba(37,99,235,0.12);
}

.dash-top{
  display:flex;
  gap:8px;
  margin-bottom:18px;
}

.dash-top span{
  width:12px;
  height:12px;
  border-radius:50%;
  background:#cbd5e1;
}

.dash-banner{
  padding:18px;
  border-radius:20px;
  background:linear-gradient(135deg,#eff6ff,#dbeafe);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:18px;
}

.dash-banner small{
  color:#1e40af;
  display:block;
  margin-bottom:4px;
}

.dash-banner h3{
  font-size:28px;
}

.dash-pill{
  background:#fff;
  border-radius:999px;
  padding:10px 14px;
  font-weight:700;
  color:var(--primary-dark);
}

.dash-cards{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.mini-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
}

.mini-card h4{
  margin-bottom:8px;
  font-size:17px;
}

.mini-card p{
  color:var(--muted);
}

.brand-strip{
  padding:10px 0 0;
}

.brand-strip-inner{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:14px;
}

.brand-strip-inner div{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:14px 18px;
  text-align:center;
  font-weight:700;
}

/* ===== COMMON SECTIONS ===== */
.section{
  padding:76px 0;
}

.soft-bg{
  background:linear-gradient(180deg,rgba(255,255,255,0.55),rgba(239,246,255,0.65));
}

.section-heading{
  margin-bottom:34px;
}

.section-heading.center{
  text-align:center;
}

.section-heading h2{
  font-size:38px;
  margin:14px 0 10px;
}

.section-heading p{
  color:var(--muted);
  max-width:760px;
}

/* ===== GENERAL CARDS ===== */
.tool-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.tool-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:22px;
  box-shadow:var(--shadow);
}

.tool-icon{
  width:60px;
  height:60px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  font-weight:800;
  color:#fff;
  margin-bottom:18px;
}

.tool-icon.blue{ background:linear-gradient(135deg,#2563eb,#3b82f6); }
.tool-icon.sky{ background:linear-gradient(135deg,#0ea5e9,#38bdf8); }
.tool-icon.navy{ background:linear-gradient(135deg,#1e3a8a,#2563eb); }
.tool-icon.purple{ background:linear-gradient(135deg,#7c3aed,#a78bfa); }
.tool-icon.teal{ background:linear-gradient(135deg,#0f766e,#2dd4bf); }
.tool-icon.orange{ background:linear-gradient(135deg,#ea580c,#fb923c); }

.tool-card-top{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
  margin-bottom:14px;
}

.price-text{
  font-weight:700;
  color:var(--primary-dark);
}

.tool-card h3{
  font-size:24px;
  margin-bottom:10px;
}

.tool-card p{
  color:var(--muted);
}

.tool-card-bottom{
  margin-top:18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-weight:700;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.feature-box{
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
  padding:24px;
  box-shadow:var(--shadow);
}

.feature-num{
  width:46px;
  height:46px;
  border-radius:14px;
  background:var(--primary-soft);
  color:var(--primary-dark);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  margin-bottom:18px;
}

.feature-box h3{
  margin-bottom:10px;
  font-size:22px;
}

.feature-box p{
  color:var(--muted);
}

.cta-section{
  background:linear-gradient(135deg,#eff6ff,#ffffff);
  border:1px solid #dbeafe;
  border-radius:28px;
  padding:34px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:22px;
  box-shadow:var(--shadow);
}

.cta-left h2{
  font-size:38px;
  margin:14px 0 10px;
}

.cta-left p{
  color:var(--muted);
  max-width:680px;
}

/* ===== FOOTER ===== */
.site-footer{
  background:#fff;
  border-top:1px solid var(--border);
  margin-top:20px;
}

.footer-top{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1fr;
  gap:28px;
  padding:52px 0 32px;
}

.footer-logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:24px;
  font-weight:800;
  margin-bottom:14px;
}

.footer-brand p{
  color:var(--muted);
  max-width:420px;
}

.site-footer h4{
  margin-bottom:14px;
  font-size:18px;
}

.site-footer a{
  display:block;
  color:#475569;
  margin-bottom:10px;
}

.footer-bottom{
  border-top:1px solid var(--border);
  padding:18px 0;
}

.footer-bottom p{
  text-align:center;
  color:var(--muted);
}

/* ===== TOOLS PAGE ===== */
.page-hero{
  padding:72px 0 30px;
}

.tools-hero-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:24px;
  align-items:stretch;
}

.tools-hero h1{
  font-size:48px;
  line-height:1.08;
  margin:16px 0 14px;
}

.tools-hero p{
  color:var(--muted);
  font-size:18px;
  max-width:760px;
}

.tools-hero-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:26px;
  box-shadow:var(--shadow);
  padding:22px;
  display:grid;
  gap:14px;
}

.tools-hero-stat{
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px 18px;
  background:linear-gradient(180deg,#ffffff,#f8fbff);
}

.tools-hero-stat strong{
  display:block;
  font-size:28px;
  color:var(--primary-dark);
  margin-bottom:4px;
}

.tools-hero-stat span{
  color:var(--muted);
}

.tools-filter-section{
  padding-top:20px;
  padding-bottom:20px;
}

.tools-filter-bar{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  box-shadow:var(--shadow);
  padding:22px;
}

.tools-filter-form{
  display:grid;
  grid-template-columns:1.2fr 0.8fr auto;
  gap:16px;
  align-items:end;
}

.filter-input-group{
  display:grid;
  gap:8px;
}

.filter-input-group label{
  font-weight:700;
  color:#334155;
  font-size:14px;
}

.filter-input-group input,
.filter-input-group select{
  width:100%;
  height:52px;
  padding:0 16px;
  border:1px solid var(--border);
  border-radius:14px;
  background:#fff;
  font-size:15px;
  color:var(--text);
  outline:none;
}

.filter-input-group input:focus,
.filter-input-group select:focus{
  border-color:#93c5fd;
  box-shadow:0 0 0 4px rgba(59,130,246,0.08);
}

.filter-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.tools-list-section{
  padding-top:20px;
}

.tool-card-large{
  position:relative;
}

.tool-card-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:14px;
  margin-bottom:16px;
}

.tool-head-right{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:8px;
}

.featured-mark{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background:#dbeafe;
  color:#1d4ed8;
  font-size:12px;
  font-weight:800;
}

.tool-category{
  color:#64748b;
  font-weight:700;
}

.tool-feature-points{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.tool-feature-points span{
  padding:8px 12px;
  border-radius:999px;
  background:#f8fbff;
  border:1px solid var(--border);
  font-size:13px;
  font-weight:700;
  color:#334155;
}

.tool-card-actions{
  display:flex;
  gap:12px;
  margin-top:22px;
  flex-wrap:wrap;
}

.empty-state-box{
  background:#fff;
  border:1px solid var(--border);
  border-radius:26px;
  box-shadow:var(--shadow);
  padding:42px 24px;
  text-align:center;
}

.empty-icon{
  width:70px;
  height:70px;
  border-radius:20px;
  background:var(--primary-soft);
  color:var(--primary-dark);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  margin:0 auto 18px;
}

.empty-state-box h3{
  font-size:28px;
  margin-bottom:10px;
}

.empty-state-box p{
  color:var(--muted);
  margin-bottom:18px;
}

/* badge colors */
.badge-green{
  background:#dcfce7 !important;
  border-color:#86efac !important;
  color:#166534 !important;
}

.badge-red{
  background:#fee2e2 !important;
  border-color:#fca5a5 !important;
  color:#991b1b !important;
}

.badge-blue{
  background:#dbeafe !important;
  border-color:#93c5fd !important;
  color:#1d4ed8 !important;
}

.badge-orange{
  background:#ffedd5 !important;
  border-color:#fdba74 !important;
  color:#c2410c !important;
}

.badge-purple{
  background:#ede9fe !important;
  border-color:#c4b5fd !important;
  color:#6d28d9 !important;
}

/* ===== TOOL DETAIL PAGE ===== */
.tool-detail-hero{
  padding:72px 0 34px;
}

.tool-detail-hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:center;
}

.tool-detail-hero h1{
  font-size:52px;
  line-height:1.06;
  margin:16px 0;
}

.tool-detail-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:18px;
}

.tool-detail-meta span{
  padding:8px 12px;
  border-radius:999px;
  background:#f8fbff;
  border:1px solid var(--border);
  font-size:13px;
  font-weight:700;
}

.tool-detail-lead{
  color:var(--muted);
  font-size:18px;
  max-width:760px;
}

.tool-detail-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}

.tool-detail-media-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
  min-height:360px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.tool-detail-media-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.tool-detail-fallback{
  width:140px;
  height:140px;
  border-radius:30px;
  background:linear-gradient(135deg,#2563eb,#60a5fa);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:40px;
  font-weight:800;
}

.detail-section-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:center;
}

.detail-content-card,
.detail-image-card,
.benefit-card,
.gallery-card,
.faq-item{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  box-shadow:var(--shadow);
}

.detail-content-card{
  padding:28px;
}

.detail-content-card h2{
  font-size:34px;
  margin-bottom:10px;
}

.detail-content-card h4,
.small-subtitle{
  margin-bottom:10px;
  color:#334155;
  font-size:16px;
  font-weight:700;
}

.detail-content-card p,
.benefit-card p,
.faq-item p{
  color:var(--muted);
}

.detail-image-card{
  overflow:hidden;
}

.detail-image-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.benefit-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.benefit-card{
  padding:24px;
}

.benefit-card h3{
  margin-bottom:10px;
  font-size:22px;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.gallery-card{
  overflow:hidden;
}

.gallery-card img{
  width:100%;
  aspect-ratio:16 / 11;
  object-fit:cover;
  display:block;
}

.faq-wrap{
  max-width:900px;
}

.faq-item{
  padding:24px;
  margin-bottom:18px;
}

.faq-item h3{
  margin-bottom:10px;
  font-size:22px;
}

/* ===== TOOL CARD RESPONSIVE ===== */
.tool-card-responsive{
  background:#ffffff;
  border:1px solid #e2e8f0;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 28px rgba(37,99,235,0.08);
  display:flex;
  flex-direction:column;
  height:100%;
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}

.tool-card-responsive:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 36px rgba(37,99,235,0.12);
}

.tool-card-media{
  position:relative;
  width:100%;
  height:220px;
  overflow:hidden;
  border-radius:18px;
  background:#f8fbff;
}

.tool-card-image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.tool-image-fallback{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  font-weight:800;
  color:#ffffff;
  background:linear-gradient(135deg,#2563eb,#60a5fa);
}

.tool-card-body{
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:10px;
  flex:1;
}

.tool-card-tag{
  position:absolute;
  top:12px;
  right:12px;
  padding:6px 10px;
  font-size:12px;
  font-weight:700;
  background:#22c55e;
  color:#fff;
  border-radius:4px;
}

.tool-card-body h3{
  margin:0;
  font-size:24px;
  line-height:1.2;
  color:#0f172a;
}

.tool-card-price-wrap{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.starting-label{
  font-size:13px;
  color:#64748b;
}

.sale-price{
  font-size:20px;
  font-weight:700;
  color:#1d4ed8;
  line-height:1.1;
}

.tool-card-body p{
  margin:0;
  color:#64748b;
  font-size:14px;
  line-height:1.6;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

/* ===== HOW IT WORKS ===== */
.how-work-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.how-work-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:20px;
  padding:22px;
  position:relative;
  transition:0.25s;
}

.how-work-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,#2563eb,#60a5fa);
}

.how-work-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(0,0,0,0.08);
}

.how-work-title-row{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:12px;
}

.how-work-step{
  display:flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  border-radius:10px;
  background:linear-gradient(135deg,#2563eb,#60a5fa);
  color:#fff;
  font-size:14px;
  font-weight:800;
}

.how-work-card h3{
  margin:0;
  font-size:24px;
  color:#0f172a;
}

.how-work-card p{
  margin:0;
  color:#64748b;
  font-size:18px;
  line-height:1.7;
}

.how-work-heading p{
  max-width:700px;
  margin:10px auto 0;
  color:var(--muted);
}

/* ===== PRICING ===== */
.pricing-heading p{
  max-width:700px;
  margin:10px auto 0;
  color:var(--muted);
}

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
  align-items:center;
}

.pricing-card{
  position:relative;
  background:#fff;
  border-radius:22px;
  padding:28px 24px;
  border:1px solid #e5e7eb;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
  transition:0.25s;
}

.pricing-card:hover{
  transform:translateY(-6px);
}

.pricing-side{
  transform:scale(0.92);
  opacity:0.9;
}

.pricing-featured{
  transform:scale(1.05);
  border:2px solid #2563eb;
  box-shadow:0 22px 45px rgba(37,99,235,0.18);
  z-index:2;
}

.pricing-badge{
  position:absolute;
  top:16px;
  right:16px;
  padding:7px 12px;
  background:#2563eb;
  color:#fff;
  font-size:12px;
  font-weight:800;
  border-radius:999px;
}

.pricing-card-top{
  margin-bottom:18px;
}

.pricing-card-top h3{
  margin:0 0 8px;
  font-size:30px;
  color:var(--text);
}

.pricing-days{
  font-size:14px;
  color:var(--muted);
  font-weight:600;
}

.pricing-price-wrap{
  margin-bottom:20px;
}

.pricing-old-price{
  color:#94a3b8;
  text-decoration:line-through;
  font-size:16px;
  font-weight:700;
  margin-bottom:4px;
}

.pricing-price{
  font-size:40px;
  line-height:1;
  font-weight:800;
  color:var(--primary-dark);
  margin-bottom:8px;
}

.pricing-price-note{
  font-size:13px;
  color:var(--muted);
}

.pricing-features{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:22px;
}

.pricing-features span{
  padding:10px 12px;
  border-radius:14px;
  background:#f8fbff;
  border:1px solid var(--border);
  color:#334155;
  font-size:14px;
  font-weight:600;
}

.pricing-actions{
  margin-top:auto;
}

/* ===== SERVICES PAGE ===== */
.services-hero-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:28px;
  align-items:center;
}

.services-hero h1{
  font-size:52px;
  line-height:1.08;
  margin:16px 0 14px;
}

.services-hero p{
  color:var(--muted);
  font-size:18px;
  max-width:760px;
}

.services-hero-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:26px;
  padding:22px;
  box-shadow:var(--shadow);
  display:grid;
  gap:14px;
}

.services-hero-box{
  padding:18px;
  border:1px solid var(--border);
  border-radius:18px;
  background:linear-gradient(180deg,#ffffff,#f8fbff);
}

.services-hero-box strong{
  display:block;
  font-size:18px;
  color:var(--text);
  margin-bottom:6px;
}

.services-hero-box span{
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}

.service-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
  transition:transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 40px rgba(37,99,235,0.12);
}

.service-icon{
  width:52px;
  height:52px;
  border-radius:16px;
  background:linear-gradient(135deg,#2563eb,#60a5fa);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-size:16px;
  margin-bottom:18px;
}

.service-card h3{
  margin:0 0 12px;
  font-size:26px;
  line-height:1.2;
  color:var(--text);
}

.service-card p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.75;
}

.service-benefit-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}

.service-benefit-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
  padding:24px;
  box-shadow:var(--shadow);
}

.service-benefit-card h3{
  margin:0 0 10px;
  font-size:24px;
  color:var(--text);
}

.service-benefit-card p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
}

/* ===== CONTACT PAGE ===== */
.contact-hero-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:28px;
  align-items:start;
}

.contact-hero h1{
  font-size:52px;
  line-height:1.08;
  margin:16px 0 14px;
}

.contact-hero p{
  color:var(--muted);
  font-size:18px;
  max-width:760px;
}

.contact-info-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  margin-top:26px;
}

.contact-info-card{
  display:flex;
  align-items:center;
  gap:14px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  padding:16px 18px;
  box-shadow:var(--shadow);
}

.contact-info-icon{
  width:46px;
  height:46px;
  border-radius:14px;
  background:linear-gradient(135deg,#2563eb,#60a5fa);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  font-weight:800;
  flex-shrink:0;
}

.contact-info-card strong{
  display:block;
  margin-bottom:4px;
  color:var(--text);
}

.contact-info-card span{
  color:var(--muted);
  font-size:14px;
}

.contact-hero-side{
  display:flex;
  align-items:stretch;
}

.contact-side-card{
  width:100%;
  background:#fff;
  border:1px solid var(--border);
  border-radius:26px;
  padding:24px;
  box-shadow:var(--shadow);
}

.contact-side-card h3{
  margin:0 0 14px;
  font-size:28px;
  color:var(--text);
}

.contact-points{
  margin:0;
  padding-left:18px;
  color:var(--muted);
  line-height:1.9;
}

.contact-layout{
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:24px;
  align-items:start;
}

.contact-form-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:26px;
  padding:24px;
  box-shadow:var(--shadow);
}

.contact-form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.form-group{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.form-group.full-width{
  grid-column:1 / -1;
}

.form-group label{
  font-size:14px;
  font-weight:700;
  color:#334155;
}

.form-group input,
.form-group textarea,
.form-group select{
  width:100%;
  border:1px solid var(--border);
  background:#fff;
  border-radius:14px;
  padding:14px 16px;
  font-size:15px;
  color:var(--text);
  outline:none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
  border-color:#93c5fd;
  box-shadow:0 0 0 4px rgba(59,130,246,0.08);
}

.contact-form-actions{
  margin-top:20px;
}

.contact-side-wrap{
  display:grid;
  gap:18px;
}

.contact-help-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
  padding:22px;
  box-shadow:var(--shadow);
}

.contact-help-card h3{
  margin:0 0 10px;
  font-size:22px;
  color:var(--text);
}

.contact-help-card p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
}

.alert-box{
  border-radius:18px;
  padding:16px 18px;
  margin-bottom:18px;
  border:1px solid transparent;
}

.alert-box ul{
  margin:0;
  padding-left:18px;
}

.alert-success{
  background:#ecfdf5;
  color:#166534;
  border-color:#bbf7d0;
}

.alert-error{
  background:#fef2f2;
  color:#991b1b;
  border-color:#fecaca;
}

/* ===== AUTH PAGES ===== */
.auth-page{
  padding:70px 0;
}

.auth-wrap{
  max-width:560px;
  margin:0 auto;
}

.auth-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:28px;
  padding:28px;
  box-shadow:var(--shadow);
}

.auth-head{
  margin-bottom:22px;
}

.auth-head h1{
  margin:14px 0 10px;
  font-size:42px;
  line-height:1.08;
  color:var(--text);
}

.auth-head p{
  margin:0;
  color:var(--muted);
  font-size:16px;
  line-height:1.7;
}

.auth-form{
  display:grid;
  gap:16px;
}

.auth-links{
  margin-top:14px;
  text-align:right;
}

.auth-links a,
.auth-foot a{
  color:var(--primary-dark);
  font-weight:700;
}

.auth-foot{
  margin-top:18px;
  color:var(--muted);
  text-align:center;
}

.auth-info-box{
  padding:16px 18px;
  border-radius:18px;
  background:#f8fbff;
  border:1px solid var(--border);
  color:#334155;
  line-height:1.7;
  margin-bottom:18px;
}

.auth-actions-stack{
  display:grid;
  gap:12px;
}

/* ===== CART / CHECKOUT ===== */
.checkout-layout{
  display:grid;
  grid-template-columns:1fr 360px;
  gap:24px;
  align-items:start;
}

.cart-item-card,
.summary-card,
.success-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  box-shadow:var(--shadow);
}

.cart-item-card{
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding:18px;
  margin-bottom:16px;
}

.cart-item-left{
  display:grid;
  grid-template-columns:90px 1fr;
  gap:14px;
  align-items:start;
  flex:1;
}

.cart-thumb{
  width:90px;
  height:90px;
  border-radius:18px;
  overflow:hidden;
  background:#eff6ff;
  border:1px solid var(--border);
}

.cart-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.cart-thumb-fallback{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  font-weight:800;
  color:#2563eb;
}

.cart-item-left h3{
  margin:0 0 8px;
  font-size:22px;
}

.cart-item-left p{
  color:var(--muted);
  margin:0 0 10px;
}

.plan-meta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.plan-meta span{
  padding:7px 10px;
  border-radius:999px;
  background:#f8fbff;
  border:1px solid var(--border);
  font-size:12px;
  font-weight:700;
}

.cart-item-right{
  min-width:140px;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  justify-content:space-between;
  gap:10px;
}

.cart-item-right strong{
  font-size:20px;
}

.checkout-summary .summary-card,
.checkout-main .summary-card{
  padding:22px;
}

.summary-card h3{
  margin:0 0 16px;
  font-size:24px;
}

.summary-row,
.summary-line-item{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:flex-start;
  padding:12px 0;
  border-bottom:1px solid var(--border);
}

.summary-row.total{
  border-bottom:none;
  font-size:18px;
}

.summary-line-item p{
  margin:4px 0 0;
  color:var(--muted);
  font-size:14px;
}

.gateway-box{
  border:1px solid var(--border);
  border-radius:16px;
  padding:14px;
  background:#f8fbff;
}

.gateway-box p{
  margin:6px 0 0;
  color:var(--muted);
}

.narrow{
  width:min(760px, 100%);
}

/* ===== SUCCESS PAGE ===== */
.success-page-wrap{
  padding-top:50px;
  padding-bottom:70px;
}

.success-container{
  width:min(900px, 100%);
}

.success-hero-card,
.success-tools-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:28px;
  box-shadow:var(--shadow);
}

.success-hero-card{
  padding:34px 28px;
  text-align:center;
  margin-bottom:22px;
}

.success-icon-wrap{
  display:flex;
  justify-content:center;
  margin-bottom:14px;
}

.success-icon{
  width:86px;
  height:86px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:42px;
  font-weight:800;
  background:linear-gradient(135deg,#dcfce7,#bbf7d0);
  color:#166534;
}

.success-badge{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:#eff6ff;
  border:1px solid #bfdbfe;
  color:#1d4ed8;
  font-size:13px;
  font-weight:800;
  margin-bottom:14px;
}

.success-hero-card h1{
  font-size:48px;
  line-height:1.1;
  margin-bottom:10px;
  color:var(--text);
}

.success-hero-card p{
  color:var(--muted);
  font-size:18px;
  max-width:680px;
  margin:0 auto 24px;
}

.success-summary-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:14px;
}

.success-summary-box{
  text-align:left;
  background:#f8fbff;
  border:1px solid var(--border);
  border-radius:20px;
  padding:18px;
}

.success-summary-box span{
  display:block;
  font-size:13px;
  color:var(--muted);
  margin-bottom:8px;
  font-weight:700;
}

.success-summary-box strong{
  display:block;
  font-size:22px;
  color:var(--text);
  line-height:1.3;
  word-break:break-word;
}

.success-summary-box.highlight{
  background:linear-gradient(135deg,#eff6ff,#ffffff);
  border-color:#bfdbfe;
}

.success-summary-box.highlight strong{
  color:var(--primary-dark);
}

.success-tools-card{
  padding:24px;
}

.success-section-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:18px;
}

.section-mini-tag{
  display:inline-block;
  padding:7px 12px;
  border-radius:999px;
  background:#f8fbff;
  border:1px solid var(--border);
  color:#475569;
  font-size:12px;
  font-weight:800;
  margin-bottom:10px;
}

.success-section-head h2{
  font-size:32px;
  margin:0;
}

.success-tools-list{
  display:grid;
  gap:14px;
}

.success-tool-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding:18px;
  border:1px solid var(--border);
  border-radius:20px;
  background:#fff;
}

.success-tool-left{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.success-tool-icon{
  width:52px;
  height:52px;
  border-radius:16px;
  background:linear-gradient(135deg,#2563eb,#60a5fa);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  font-weight:800;
  flex-shrink:0;
}

.success-tool-info h3{
  font-size:22px;
  margin:0 0 6px;
  color:var(--text);
}

.success-tool-info p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}

.tool-status-active{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 14px;
  border-radius:999px;
  background:#dcfce7;
  color:#166534;
  font-size:13px;
  font-weight:800;
  white-space:nowrap;
}

.success-action-bar{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:24px;
}

/* ===== PUBLIC PROFILE PAGE ===== */
.profile-page-wrap{
  padding-top:50px;
  padding-bottom:70px;
}

.profile-page-head{
  margin-bottom:24px;
}

.profile-page-head h1{
  font-size:42px;
  line-height:1.1;
  margin:14px 0 10px;
}

.profile-page-head p{
  color:var(--muted);
  font-size:17px;
}

.profile-summary-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-bottom:22px;
}

.profile-summary-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
  box-shadow:var(--shadow);
  padding:20px;
}

.profile-summary-card span{
  display:block;
  color:var(--muted);
  font-size:13px;
  margin-bottom:8px;
  font-weight:700;
}

.profile-summary-card strong{
  display:block;
  font-size:24px;
  color:var(--text);
  word-break:break-word;
}

.profile-main-grid{
  display:grid;
  grid-template-columns:360px 1fr;
  gap:22px;
  align-items:start;
}

.profile-left-card,
.profile-right-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  box-shadow:var(--shadow);
}

.profile-left-card{
  padding:22px;
}

.profile-right-card{
  padding:26px;
}

.profile-user-top{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:22px;
}

.profile-big-avatar{
  width:70px;
  height:70px;
  border-radius:50%;
  background:linear-gradient(135deg,#2563eb,#60a5fa);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  font-weight:800;
  flex-shrink:0;
}

.profile-user-top h2{
  font-size:24px;
  margin:0 0 6px;
}

.profile-user-top p{
  margin:0;
  color:var(--muted);
  word-break:break-word;
}

.profile-links-list{
  display:grid;
  gap:12px;
}

.profile-link-card{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:16px;
  border:1px solid var(--border);
  border-radius:18px;
  background:#fff;
  transition:.2s ease;
}

.profile-link-card:hover{
  background:#f8fbff;
  border-color:#bfdbfe;
}

.profile-link-card i{
  width:22px;
  font-size:18px;
  color:#2563eb;
  margin-top:2px;
  text-align:center;
}

.profile-link-card strong{
  display:block;
  margin-bottom:4px;
  color:var(--text);
}

.profile-link-card span{
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
}

.profile-link-card.danger i{
  color:#dc2626;
}

.profile-form-head{
  margin-bottom:18px;
}

.profile-form-head h2{
  font-size:28px;
  margin-bottom:6px;
}

.profile-form-head p{
  color:var(--muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width:1100px){
  .hero-grid,
  .footer-top{
    grid-template-columns:1fr;
  }

  .tool-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .feature-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .brand-strip-inner{
    grid-template-columns:repeat(3,1fr);
  }

  .tool-detail-hero-grid,
  .detail-section-grid,
  .benefit-grid,
  .gallery-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width:1024px){
  .services-hero-grid,
  .contact-hero-grid,
  .contact-layout{
    grid-template-columns:1fr;
  }

  .services-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .service-benefit-grid{
    grid-template-columns:1fr;
  }

  .services-hero h1,
  .contact-hero h1{
    font-size:42px;
  }

  .service-card h3{
    font-size:22px;
  }

  .contact-form-grid{
    grid-template-columns:1fr 1fr;
  }

  .auth-head h1{
    font-size:36px;
  }

  .how-work-grid{
    grid-template-columns:repeat(3,1fr);
    gap:16px;
  }

  .how-work-card{
    padding:16px;
  }

  .how-work-card h3{
    font-size:20px;
  }

  .how-work-card p{
    font-size:16px;
  }

  .how-work-step{
    width:34px;
    height:34px;
    font-size:13px;
  }
}

@media (max-width:991px){
  .checkout-layout{
    grid-template-columns:1fr;
  }

  .profile-summary-grid{
    grid-template-columns:1fr;
  }

  .profile-main-grid{
    grid-template-columns:1fr;
  }

  .success-summary-grid{
    grid-template-columns:1fr;
  }

  .success-hero-card h1{
    font-size:38px;
  }

  .success-section-head h2{
    font-size:28px;
  }
}

@media (max-width:768px){
  .nav-wrap{
    grid-template-columns:auto auto;
    justify-content:space-between;
    gap:10px;
  }

  .logo{
    min-width:0;
  }

  .logo-text{
    font-size:20px;
  }

  .header-right{
    display:flex;
    align-items:center;
    gap:8px;
    justify-self:end;
  }

  .menu-toggle{
    display:flex;
  }

  .desktop-profile-dropdown,
  .desktop-login-btn{
    display:none !important;
  }

  .main-nav{
    position:absolute;
    top:76px;
    left:16px;
    right:16px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    box-shadow:var(--shadow);
    padding:16px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    justify-content:flex-start;
    gap:10px;
    z-index:999;
  }

  .main-nav.open{
    display:flex;
  }

  .main-nav a{
    width:100%;
    padding:10px 12px;
    border-radius:12px;
  }

  .main-nav a:hover{
    background:#f8fbff;
  }

  .mobile-only-nav-block{
    display:flex;
    flex-direction:column;
    width:100%;
    border-top:1px solid var(--border);
    padding-top:10px;
    margin-top:4px;
    gap:6px;
  }

  .cart-icon-link,
  .menu-toggle{
    width:42px;
    height:42px;
  }

  .hero-left h1{
    font-size:40px;
  }

  .tool-grid,
  .feature-grid,
  .brand-strip-inner,
  .tool-detail-hero-grid,
  .detail-section-grid,
  .benefit-grid,
  .gallery-grid{
    grid-template-columns:1fr;
  }

  .tool-detail-hero h1{
    font-size:38px;
  }

  .tool-detail-actions .btn{
    width:100%;
  }

  .tool-card-media{
    height:200px;
  }

  .tool-card-body h3{
    font-size:22px;
  }

  .sale-price{
    font-size:22px;
  }

  .cta-section{
    flex-direction:column;
    align-items:flex-start;
  }

  .pricing-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .pricing-side,
  .pricing-featured{
    transform:scale(1);
  }

  .contact-form-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:640px){
  .hero-left h1{
    font-size:34px;
  }

  .hero-actions{
    flex-direction:column;
  }

  .dash-cards{
    grid-template-columns:1fr;
  }

  .section-heading h2,
  .cta-left h2{
    font-size:30px;
  }

  .tool-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .tool-card-responsive{
    display:grid;
    grid-template-columns:120px 1fr;
    align-items:stretch;
  }

  .tool-card-media{
    height:100%;
    min-height:140px;
    border-right:1px solid #eef2f7;
    border-bottom:none;
  }

  .tool-card-body{
    padding:14px;
    gap:8px;
  }

  .tool-card-body h3{
    font-size:18px;
  }

  .tool-card-body p{
    display:none;
  }

  .starting-label{
    font-size:12px;
  }

  .sale-price{
    font-size:18px;
  }

  .tool-card-actions{
    flex-direction:column;
    gap:8px;
  }

  .tool-card-actions .btn{
    width:100%;
    min-width:100%;
  }

  .how-work-grid{
    grid-template-columns:1fr;
  }

  .pricing-grid{
    grid-template-columns:1fr;
  }

  .pricing-card{
    border-radius:20px;
  }

  .pricing-card-top h3{
    font-size:22px;
  }

  .pricing-price{
    font-size:30px;
  }

  .pricing-badge{
    top:12px;
    right:12px;
    font-size:11px;
    padding:6px 10px;
  }

  .services-grid{
    grid-template-columns:1fr;
  }

  .services-hero h1,
  .contact-hero h1{
    font-size:34px;
  }

  .services-hero p,
  .contact-hero p{
    font-size:16px;
  }

  .service-card,
  .contact-form-card,
  .contact-side-card,
  .contact-help-card{
    padding:18px;
    border-radius:20px;
  }

  .service-card h3{
    font-size:20px;
  }

  .service-card p{
    font-size:14px;
  }

  .auth-page{
    padding:36px 0;
  }

  .auth-wrap{
    max-width:100%;
  }

  .auth-card{
    border-radius:20px;
    padding:18px;
  }

  .auth-head h1{
    font-size:28px;
    margin:12px 0 8px;
  }

  .auth-head p{
    font-size:14px;
  }

  .auth-links{
    text-align:left;
  }

  .form-group label{
    font-size:13px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select{
    font-size:16px;
    padding:13px 14px;
  }

  .btn-lg{
    padding:13px 16px;
  }

  .cart-item-card{
    flex-direction:row;
    align-items:flex-start;
    gap:12px;
    padding:14px;
  }

  .cart-item-left{
    grid-template-columns:72px 1fr;
    gap:12px;
    align-items:start;
  }

  .cart-thumb{
    width:72px;
    height:72px;
    border-radius:14px;
    flex-shrink:0;
  }

  .cart-item-left h3{
    font-size:16px;
    margin-bottom:6px;
  }

  .cart-item-left p{
    font-size:13px;
    margin-bottom:8px;
    line-height:1.4;
  }

  .plan-meta{
    gap:6px;
  }

  .plan-meta span{
    font-size:11px;
    padding:6px 8px;
  }

  .cart-item-right{
    min-width:auto;
    align-items:flex-end;
    gap:8px;
  }

  .cart-item-right strong{
    font-size:16px;
  }

  .cart-item-right .btn{
    padding:8px 10px;
    font-size:12px;
  }

  .success-hero-card,
  .success-tools-card{
    padding:20px;
    border-radius:22px;
  }

  .success-hero-card h1{
    font-size:32px;
  }

  .success-hero-card p{
    font-size:16px;
  }

  .success-tool-item{
    flex-direction:column;
    align-items:flex-start;
  }

  .success-tool-right{
    width:100%;
  }

  .tool-status-active{
    width:max-content;
  }

  .success-action-bar{
    flex-direction:column;
  }

  .success-action-bar .btn{
    width:100%;
  }

  .profile-page-head h1{
    font-size:32px;
  }

  .profile-right-card,
  .profile-left-card{
    padding:18px;
    border-radius:20px;
  }

  .profile-user-top{
    align-items:flex-start;
  }
}

@media (max-width:480px){
  .logo-text{
    font-size:18px;
  }
}




/* ===== PURCHASE HISTORY ===== */
.purchase-history-page .section-heading{
  margin-bottom:24px;
}

.history-table-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  box-shadow:var(--shadow);
  overflow:hidden;
}

.history-table{
  width:100%;
  border-collapse:collapse;
  min-width:1100px;
}

.history-table th,
.history-table td{
  text-align:left;
  padding:16px 18px;
  border-bottom:1px solid var(--border);
  vertical-align:middle;
}

.history-table th{
  background:#f8fbff;
  color:#334155;
  font-size:14px;
  font-weight:800;
}

.history-table td{
  font-size:14px;
  color:var(--text);
}

.history-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:7px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
}

.history-badge.paid{
  background:#dbeafe;
  color:#1d4ed8;
}

.history-badge.active{
  background:#dcfce7;
  color:#166534;
}

.btn-sm{
  padding:9px 12px;
  font-size:13px;
}

/* ===== INVOICE ===== */
.invoice-body{
  background:#eef4ff;
}

.invoice-page{
  max-width:1200px;
  margin:0 auto;
  padding:24px 16px 60px;
}

.invoice-actions{
  display:flex;
  gap:12px;
  justify-content:flex-end;
  margin-bottom:16px;
}

.invoice-a4{
  width:210mm;
  min-height:297mm;
  max-width:100%;
  margin:0 auto;
  background:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.invoice-card{
  padding:18mm 16mm;
  color:#111827;
}

.invoice-top{
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:24px;
  padding-bottom:18px;
  border-bottom:1px solid var(--border);
}

.invoice-brand h1{
  font-size:30px;
  margin-bottom:10px;
  line-height:1.2;
}

.invoice-brand p,
.invoice-meta p{
  color:#475569;
  margin:0 0 6px;
  font-size:14px;
  line-height:1.6;
}

.invoice-meta{
  text-align:right;
}

.invoice-meta h2{
  font-size:28px;
  margin-bottom:12px;
  line-height:1.2;
}

.invoice-billing-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:20px;
}

.invoice-billing-grid.single-row{
  grid-template-columns:1fr;
}

.invoice-bill-box{
  border:1px solid var(--border);
  border-radius:14px;
  padding:16px;
  background:#f8fbff;
}

.invoice-bill-box h3{
  font-size:17px;
  margin-bottom:10px;
}

.invoice-bill-box p{
  margin:0 0 6px;
  color:#334155;
  font-size:14px;
  line-height:1.6;
}

.invoice-table-wrap{
  margin-top:22px;
  overflow:auto;
}

.invoice-table{
  width:100%;
  border-collapse:collapse;
}

.invoice-table th,
.invoice-table td{
  border:1px solid #dbe3ef;
  padding:12px 10px;
  text-align:left;
  vertical-align:top;
  font-size:13px;
}

.invoice-table th{
  background:#f8fbff;
  font-size:13px;
  font-weight:800;
  color:#1f2937;
}

.invoice-item-title{
  font-size:15px;
  font-weight:800;
  color:#0f172a;
  margin-bottom:6px;
}

.invoice-item-desc{
  font-size:13px;
  color:#64748b;
  line-height:1.6;
}

.invoice-total-grid{
  display:grid;
  grid-template-columns:1fr 340px;
  gap:20px;
  margin-top:22px;
}

.invoice-total-box{
  border:1px solid var(--border);
  border-radius:14px;
  padding:16px;
  background:#fff;
}

.invoice-total-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:9px 0;
  border-bottom:1px solid var(--border);
  font-size:14px;
}

.invoice-total-row.grand{
  border-bottom:none;
  font-size:18px;
  font-weight:800;
}

.invoice-footer-note{
  margin-top:22px;
  padding-top:14px;
  border-top:1px solid var(--border);
}

.invoice-footer-note p{
  color:#64748b;
  margin:0 0 6px;
  font-size:13px;
}

@media (max-width:991px){
  .invoice-top,
  .invoice-total-grid{
    grid-template-columns:1fr;
  }

  .invoice-meta{
    text-align:left;
  }
}

@media (max-width:768px){
  .invoice-a4{
    width:100%;
    min-height:auto;
  }

  .invoice-card{
    padding:20px 16px;
  }

  .invoice-table{
    min-width:760px;
  }
}

@media print{
  @page{
    size:A4;
    margin:10mm;
  }

  .no-print{
    display:none !important;
  }

  .invoice-body{
    background:#fff !important;
  }

  .invoice-page{
    padding:0;
    max-width:none;
  }

  .invoice-a4{
    width:100%;
    min-height:auto;
    box-shadow:none;
  }

  .invoice-card{
    padding:0;
  }

  .invoice-table-wrap{
    overflow:visible;
  }

  .invoice-table{
    width:100%;
  }
}


/* ===== PRICING PAGE ===== */
.pricing-page-hero{
  padding:80px 0 36px;
}

.pricing-hero-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:28px;
  align-items:center;
}

.pricing-hero-left h1{
  font-size:56px;
  line-height:1.05;
  margin:18px 0 14px;
  color:var(--text);
}

.pricing-hero-left p{
  color:var(--muted);
  font-size:18px;
  max-width:760px;
}

.pricing-hero-actions{
  display:flex;
  gap:14px;
  margin-top:28px;
  flex-wrap:wrap;
}

.pricing-hero-points{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:24px;
}

.pricing-hero-points span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--border);
  font-size:14px;
  font-weight:700;
  color:#334155;
}

.pricing-hero-points i{
  color:#2563eb;
}

.pricing-hero-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:28px;
  padding:24px;
  box-shadow:var(--shadow);
}

.pricing-hero-card-head small{
  display:block;
  color:var(--primary-dark);
  font-weight:800;
  margin-bottom:6px;
}

.pricing-hero-card-head h3{
  font-size:30px;
  margin-bottom:16px;
  color:var(--text);
}

.pricing-hero-mini-list{
  display:grid;
  gap:14px;
}

.pricing-mini-item{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:16px;
  border:1px solid var(--border);
  border-radius:18px;
  background:linear-gradient(180deg,#ffffff,#f8fbff);
}

.pricing-mini-icon{
  width:46px;
  height:46px;
  border-radius:14px;
  background:linear-gradient(135deg,#2563eb,#60a5fa);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  flex-shrink:0;
}

.pricing-mini-item strong{
  display:block;
  font-size:17px;
  margin-bottom:4px;
}

.pricing-mini-item p{
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}

.pricing-compare-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:26px;
  box-shadow:var(--shadow);
  overflow:hidden;
}

.pricing-compare-table{
  width:100%;
  min-width:760px;
  border-collapse:collapse;
}

.pricing-compare-table th,
.pricing-compare-table td{
  padding:18px 20px;
  border-bottom:1px solid var(--border);
  text-align:left;
  font-size:15px;
}

.pricing-compare-table th{
  background:#f8fbff;
  font-size:14px;
  font-weight:800;
  color:#334155;
}

.compare-good{
  display:inline-flex;
  padding:7px 12px;
  border-radius:999px;
  background:#dcfce7;
  color:#166534;
  font-size:12px;
  font-weight:800;
}

.compare-other{
  display:inline-flex;
  padding:7px 12px;
  border-radius:999px;
  background:#fff7ed;
  color:#c2410c;
  font-size:12px;
  font-weight:800;
}

.pricing-benefit-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.pricing-benefit-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
}

.pricing-benefit-icon{
  width:54px;
  height:54px;
  border-radius:16px;
  background:linear-gradient(135deg,#2563eb,#60a5fa);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  margin-bottom:16px;
}

.pricing-benefit-card h3{
  font-size:24px;
  margin-bottom:10px;
  color:var(--text);
}

.pricing-benefit-card p{
  color:var(--muted);
  line-height:1.75;
}

.pricing-tool-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.pricing-tool-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  gap:18px;
}

.pricing-tool-badge{
  display:inline-block;
  padding:7px 12px;
  border-radius:999px;
  background:#eff6ff;
  color:#1d4ed8;
  border:1px solid #bfdbfe;
  font-size:12px;
  font-weight:800;
  margin-bottom:10px;
}

.pricing-tool-top h3{
  font-size:28px;
  margin-bottom:10px;
  color:var(--text);
}

.pricing-tool-top p{
  color:var(--muted);
  line-height:1.7;
}

.pricing-tool-price{
  font-size:34px;
  font-weight:800;
  color:var(--primary-dark);
}

.pricing-tool-points{
  display:grid;
  gap:10px;
}

.pricing-tool-points span{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:#334155;
  font-size:14px;
  line-height:1.6;
}

.pricing-tool-points i{
  color:#2563eb;
  margin-top:3px;
}

.pricing-tool-actions{
  margin-top:auto;
}

.pricing-final-cta{
  background:linear-gradient(135deg,#eff6ff,#ffffff);
  border:1px solid #dbeafe;
  border-radius:28px;
  padding:34px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  box-shadow:var(--shadow);
}

.pricing-final-cta-left h2{
  font-size:40px;
  line-height:1.15;
  margin:14px 0 10px;
}

.pricing-final-cta-left p{
  color:var(--muted);
  max-width:720px;
}

.pricing-final-cta-right{
  display:flex;
  flex-direction:column;
  gap:12px;
  min-width:240px;
}

@media (max-width:1100px){
  .pricing-hero-grid{
    grid-template-columns:1fr;
  }

  .pricing-benefit-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .pricing-tool-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:768px){
  .pricing-hero-left h1{
    font-size:40px;
  }

  .pricing-benefit-grid,
  .pricing-tool-grid{
    grid-template-columns:1fr;
  }

  .pricing-final-cta{
    flex-direction:column;
    align-items:flex-start;
  }

  .pricing-final-cta-right{
    width:100%;
    min-width:0;
  }

  .pricing-final-cta-right .btn{
    width:100%;
  }
}

@media (max-width:640px){
  .pricing-page-hero{
    padding:46px 0 20px;
  }

  .pricing-hero-left h1{
    font-size:34px;
  }

  .pricing-hero-left p{
    font-size:16px;
  }

  .pricing-hero-actions{
    flex-direction:column;
  }

  .pricing-hero-actions .btn{
    width:100%;
  }

  .pricing-hero-card,
  .pricing-benefit-card,
  .pricing-tool-card{
    border-radius:20px;
    padding:18px;
  }

  .pricing-final-cta{
    border-radius:22px;
    padding:22px;
  }

  .pricing-final-cta-left h2{
    font-size:30px;
  }
}


.dynamic-pricing-card{
  overflow:hidden;
  padding:0;
}

.dynamic-pricing-media{
  width:100%;
  height:220px;
  background:#f8fbff;
  border-bottom:1px solid var(--border);
  overflow:hidden;
}

.dynamic-pricing-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.dynamic-pricing-fallback{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#2563eb,#60a5fa);
  color:#fff;
  font-size:34px;
  font-weight:800;
}

.dynamic-pricing-card .pricing-tool-top,
.dynamic-pricing-card .dynamic-pricing-price-wrap,
.dynamic-pricing-card .pricing-tool-points,
.dynamic-pricing-card .pricing-tool-actions{
  padding-left:24px;
  padding-right:24px;
}

.dynamic-pricing-card .pricing-tool-top{
  padding-top:22px;
}

.dynamic-pricing-card .pricing-tool-actions{
  padding-bottom:24px;
}

.dynamic-pricing-price-wrap{
  margin-top:-4px;
}

.dynamic-old-price{
  font-size:15px;
  color:#94a3b8;
  text-decoration:line-through;
  font-weight:700;
  margin-bottom:6px;
}

@media (max-width:640px){
  .dynamic-pricing-media{
    height:180px;
  }

  .dynamic-pricing-card .pricing-tool-top,
  .dynamic-pricing-card .dynamic-pricing-price-wrap,
  .dynamic-pricing-card .pricing-tool-points,
  .dynamic-pricing-card .pricing-tool-actions{
    padding-left:18px;
    padding-right:18px;
  }

  .dynamic-pricing-card .pricing-tool-actions{
    padding-bottom:18px;
  }
}
.tool-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tool-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tool-card-body p {
    flex-grow: 1;
}

.tool-card-actions {
    margin-top: 16px;
}

.tool-card-actions{
  margin-top:auto;
  padding-top:12px;
  display:flex;
  gap:12px;
}

.tool-card-actions .btn{
  flex:1;
}

.full-btn{
  width:100%;
}