/* ==========================================================================
   SeoGeko Agency - Light Lavender (#EAE5F3) & Crisp White (#FAFAFA) SaaS UI
   ========================================================================== */

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

:root {
  /* Color Palette - Premium Light Lavender & Crisp White Combination */
  --bg-primary: #FAFAFA;
  --bg-secondary: #EAE5F3;
  --bg-tertiary: #DFD7ED;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-card-hover: rgba(255, 255, 255, 1);
  
  --text-main: #1a1625;
  --text-muted: #534c64;
  --text-dim: #847a96;
  
  --accent-cyan: #0088cc;
  --accent-blue: #2575fc;
  --accent-purple: #9b51e0;
  --accent-violet: #6a11cb;
  --accent-gold: #e69500;
  --accent-emerald: #059669;
  
  --border-color: rgba(106, 17, 203, 0.14);
  --border-highlight: rgba(106, 17, 203, 0.4);
  
  --whatsapp-green: #25D366;
  --whatsapp-hover: #1ebd5a;
  --telegram-blue: #0088cc;
  --telegram-hover: #0077b3;
  
  --shadow-sm: 0 4px 15px rgba(106, 17, 203, 0.06);
  --shadow-md: 0 10px 30px rgba(106, 17, 203, 0.1);
  --shadow-glow-violet: 0 0 30px rgba(106, 17, 203, 0.15);
  --shadow-glow-blue: 0 0 30px rgba(37, 117, 252, 0.15);
  --shadow-glow-emerald: 0 0 30px rgba(5, 150, 105, 0.15);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 5px;
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-violet);
}

/* ==========================================================================
   Animated Background Soft Lavender Aurora
   ========================================================================== */

.aurora-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
  background: radial-gradient(circle at 50% 0%, #EAE5F3 0%, #FAFAFA 75%);
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: float 20s infinite alternate ease-in-out;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #d5c5f3 0%, transparent 70%);
  top: -10%;
  left: 15%;
  animation-duration: 22s;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #c5e3f6 0%, transparent 70%);
  top: 40%;
  right: -10%;
  animation-duration: 25s;
  animation-delay: -5s;
}

.blob-3 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, #e3c5f3 0%, transparent 70%);
  bottom: -15%;
  left: 30%;
  animation-duration: 18s;
  animation-delay: -10s;
}

.cyber-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(106, 17, 203, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(106, 17, 203, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at 50% 30%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, black 20%, transparent 80%);
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.1); }
  100% { transform: translate(-40px, -50px) scale(0.95); }
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent-violet) 0%, var(--accent-blue) 50%, var(--accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-gold { color: var(--accent-gold); }
.text-emerald { color: var(--accent-emerald); }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 96px 0;
  position: relative;
}

.section-alt {
  background: linear-gradient(180deg, #FAFAFA 0%, #EAE5F3 50%, #FAFAFA 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 250, 250, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(106, 17, 203, 0.1);
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(250, 250, 250, 0.98);
  box-shadow: 0 10px 30px rgba(106, 17, 203, 0.08);
  border-bottom-color: rgba(106, 17, 203, 0.25);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 84px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  text-decoration: none;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  letter-spacing: -0.5px;
}

.logo-tag {
  font-size: 0.65rem;
  background: linear-gradient(135deg, var(--accent-gold), #ff8f00);
  color: #000;
  padding: 2px 6px;
  border-radius: 6px;
  font-weight: 900;
  vertical-align: super;
  margin-left: 2px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--accent-violet);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-violet), var(--accent-blue));
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  gap: 12px;
}

/* ==========================================================================
   Buttons & CTAs
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-violet) 0%, var(--accent-blue) 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(106, 17, 203, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 30px rgba(106, 17, 203, 0.4);
  color: #ffffff;
}

.btn-whatsapp-outline {
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid var(--whatsapp-green);
  color: var(--whatsapp-green);
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 700;
}

.btn-whatsapp-outline:hover {
  background: var(--whatsapp-green);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp {
  background-color: var(--whatsapp-green);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
  width: 100%;
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.btn-telegram {
  background-color: var(--telegram-blue);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 136, 204, 0.25);
  width: 100%;
}

.btn-telegram:hover {
  background-color: var(--telegram-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 136, 204, 0.45);
}

.btn-email {
  background: linear-gradient(135deg, #ea4335 0%, #c5221f 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(234, 67, 53, 0.25);
  width: 100%;
}

.btn-email:hover {
  background: linear-gradient(135deg, #d33426 0%, #b31412 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(234, 67, 53, 0.45);
  color: #ffffff;
}

.btn-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  width: 100%;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  padding: 110px 0 90px;
  text-align: center;
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(106, 17, 203, 0.08);
  border: 1px solid rgba(106, 17, 203, 0.25);
  border-radius: var(--radius-full);
  color: var(--accent-violet);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 0 20px rgba(106, 17, 203, 0.1);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-violet);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-violet);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(106, 17, 203, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(106, 17, 203, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(106, 17, 203, 0); }
}

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  font-weight: 900;
  max-width: 950px;
  margin: 0 auto 24px;
  line-height: 1.1;
}

.hero p {
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto 46px;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

.arrow-icon {
  transition: transform 0.2s ease;
}
.btn-primary:hover .arrow-icon {
  transform: translateX(4px);
}

/* Stats Showcase */
.hero-stats-wrapper {
  max-width: 1050px;
  margin: 0 auto;
  padding: 36px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 40px rgba(106, 17, 203, 0.08);
}

.hero-stats {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 180px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 4px;
}

.stat-label {
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-sub {
  color: var(--text-dim);
  font-size: 0.8rem;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(106, 17, 203, 0.12);
}

/* ==========================================================================
   Payment Methods Showcase (Below CTA Section Only)
   ========================================================================== */

.cta-payments-showcase {
  margin-top: 24px;
  padding-top: 42px;
  border-top: 1px solid rgba(106, 17, 203, 0.15);
  text-align: center;
}

.payment-main-heading {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.payment-subtext {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto 36px;
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  text-align: left;
}

.payment-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(106, 17, 203, 0.14);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(106, 17, 203, 0.05);
}

.payment-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 25px rgba(106, 17, 203, 0.12);
  border-color: rgba(106, 17, 203, 0.35);
}

.pay-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(106, 17, 203, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.payment-card:hover .pay-icon-wrapper {
  transform: rotate(8deg) scale(1.1);
}

.pay-icon {
  width: 24px;
  height: 24px;
}

.pay-info {
  display: flex;
  flex-direction: column;
}

.pay-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.2;
}

.pay-type {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ==========================================================================
   Section Headers & Banners
   ========================================================================== */

.section-header {
  text-align: center;
  margin-bottom: 54px;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(106, 17, 203, 0.1);
  border: 1px solid rgba(106, 17, 203, 0.25);
  border-radius: var(--radius-full);
  color: var(--accent-violet);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  box-shadow: 0 0 15px rgba(106, 17, 203, 0.08);
}

.badge-blue {
  background: rgba(37, 117, 252, 0.1);
  border-color: rgba(37, 117, 252, 0.25);
  color: var(--accent-blue);
  box-shadow: 0 0 15px rgba(37, 117, 252, 0.08);
}

.badge-green {
  background: rgba(5, 150, 105, 0.1);
  border-color: rgba(5, 150, 105, 0.25);
  color: var(--accent-emerald);
  box-shadow: 0 0 15px rgba(5, 150, 105, 0.08);
}

.section-header h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  margin-bottom: 18px;
  color: var(--text-main);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 780px;
  margin: 0 auto;
}

.banner-container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto 54px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 45px rgba(106, 17, 203, 0.12);
  border: 1px solid var(--border-color);
}

.banner-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.banner-container:hover .banner-img {
  transform: scale(1.04);
}

.banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26, 22, 37, 0.95) 0%, rgba(26, 22, 37, 0.7) 60%, transparent 100%);
  padding: 28px 36px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.banner-caption {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.15rem;
  max-width: 750px;
}

.banner-pill {
  background: rgba(106, 17, 203, 0.35);
  border: 1px solid #d5c5f3;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 0 15px rgba(106, 17, 203, 0.3);
}

.pill-blue {
  background: rgba(37, 117, 252, 0.35);
  border-color: #c5e3f6;
  box-shadow: 0 0 15px rgba(37, 117, 252, 0.3);
}

.pill-green {
  background: rgba(5, 150, 105, 0.35);
  border-color: #a7f3d0;
  box-shadow: 0 0 15px rgba(5, 150, 105, 0.3);
}

/* ==========================================================================
   Table Format (H1 Section - PBN Plans)
   ========================================================================== */

.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
}

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

.pricing-table th,
.pricing-table td {
  padding: 28px 24px;
  text-align: left;
  border-bottom: 1px solid rgba(106, 17, 203, 0.08);
}

.pricing-table th {
  background: rgba(234, 229, 243, 0.65);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-table tr {
  transition: all 0.3s ease;
}

.pricing-table tr:hover {
  background-color: rgba(234, 229, 243, 0.35);
}

.pricing-table .row-popular {
  background: linear-gradient(90deg, rgba(106, 17, 203, 0.06) 0%, rgba(37, 117, 252, 0.06) 100%);
  border-left: 4px solid var(--accent-violet);
}

.pricing-table .plan-name-col {
  width: 28%;
}

.pricing-table .plan-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.pricing-table .plan-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent-violet);
  margin-bottom: 6px;
}

.pricing-table .plan-delivery {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-table .plan-features-col {
  width: 44%;
}

.feature-list-table {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.feature-list-table li {
  position: relative;
  padding-left: 22px;
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 600;
}

.feature-list-table li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-violet);
  font-weight: 900;
}

.pricing-table .plan-actions-col {
  width: 28%;
}

.popular-badge {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--accent-gold), #ff8f00);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(230, 149, 0, 0.3);
}

/* ==========================================================================
   Grid Format (SEO & Guest Post Section / iGaming Section)
   ========================================================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--bg-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--border-highlight);
  box-shadow: 0 20px 45px rgba(106, 17, 203, 0.12), var(--shadow-glow-violet);
  background: #ffffff;
}

.pricing-card.is-popular {
  border: 2px solid var(--accent-violet);
  background: linear-gradient(180deg, rgba(234, 229, 243, 0.6) 0%, rgba(255, 255, 255, 0.95) 100%);
  box-shadow: 0 15px 45px rgba(106, 17, 203, 0.15);
}

.pricing-card.is-popular:hover {
  box-shadow: 0 25px 60px rgba(106, 17, 203, 0.2), var(--shadow-glow-violet);
  background: #ffffff;
}

.card-badge-top {
  position: absolute;
  top: -14px;
  right: 26px;
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-blue));
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 900;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  box-shadow: 0 6px 15px rgba(106, 17, 203, 0.3);
}

.card-header {
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(106, 17, 203, 0.1);
  margin-bottom: 26px;
}

.card-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
}

.card-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent-violet);
  line-height: 1.1;
}

.card-delivery {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 12px;
  background: rgba(106, 17, 203, 0.06);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.card-features {
  list-style: none;
  margin-bottom: 36px;
  flex-grow: 1;
}

.card-features li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.45;
  font-weight: 600;
}

.card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-violet);
  font-weight: 900;
  font-size: 1.1rem;
}

/* ==========================================================================
   Why Choose Us & Benefits Section
   ========================================================================== */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
  margin-top: 54px;
}

.benefit-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
  background: #ffffff;
  transform: translateY(-8px);
  border-color: var(--border-highlight);
  box-shadow: 0 15px 35px rgba(106, 17, 203, 0.12), var(--shadow-glow-violet);
}

.benefit-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(106, 17, 203, 0.1), rgba(37, 117, 252, 0.1));
  border: 1px solid rgba(106, 17, 203, 0.25);
  color: var(--accent-violet);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 24px;
  box-shadow: 0 0 15px rgba(106, 17, 203, 0.08);
}

.benefit-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--text-main);
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   CTA & Footer
   ========================================================================== */

.cta-panel {
  padding: 70px 48px;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  background: linear-gradient(135deg, #EAE5F3 0%, #FAFAFA 100%);
  border: 2px solid rgba(106, 17, 203, 0.25);
  box-shadow: 0 25px 60px rgba(106, 17, 203, 0.12), var(--shadow-glow-violet);
  border-radius: var(--radius-lg);
}

.cta-panel h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin: 18px 0;
  color: var(--text-main);
}

.cta-panel p {
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 40px;
  font-size: 1.15rem;
}

.cta-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 18px 40px;
  font-size: 1.05rem;
  width: auto;
}

footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(106, 17, 203, 0.15);
  padding: 90px 0 36px;
  margin-top: 100px;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 48px;
  margin-bottom: 70px;
}

.footer-col h4 {
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: var(--text-main);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent-violet);
  padding-left: 6px;
}

.footer-support-link {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: opacity 0.2s ease;
}

.footer-support-link:hover {
  opacity: 0.8;
}

.link-wa { color: var(--whatsapp-green); }
.link-tg { color: var(--telegram-blue); }
.link-email { color: #ea4335; }

.footer-bottom {
  text-align: center;
  padding-top: 36px;
  border-top: 1px solid rgba(106, 17, 203, 0.12);
  color: var(--text-dim);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ==========================================================================
   Blog Hub & Article Reader Styles (Light Lavender & White SaaS Theme)
   ========================================================================== */

.blog-hero {
  padding-bottom: 50px;
}

.featured-blog-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-card);
  border: 2px solid var(--accent-violet);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: 0 20px 50px rgba(106, 17, 203, 0.12), var(--shadow-glow-violet);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(106, 17, 203, 0.18), var(--shadow-glow-violet);
  background: #ffffff;
}

.featured-blog-img-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  min-height: 340px;
  box-shadow: var(--shadow-md);
}

.featured-blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-blog-card:hover .featured-blog-img {
  transform: scale(1.05);
}

.featured-badge-pill {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--accent-gold), #ff8f00);
  color: #fff;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-weight: 900;
  font-size: 0.8rem;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(230, 149, 0, 0.4);
}

.featured-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 14px 0;
  line-height: 1.2;
}

.featured-title a {
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.2s ease;
}

.featured-title a:hover {
  color: var(--accent-violet);
}

.featured-excerpt {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.65;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
}

.blog-card:hover {
  transform: translateY(-10px);
  border-color: var(--border-highlight);
  box-shadow: 0 20px 45px rgba(106, 17, 203, 0.12), var(--shadow-glow-violet);
  background: #ffffff;
}

.blog-card-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.06);
}

.blog-card-category {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.badge-violet { background: var(--accent-violet); }

.blog-card-content {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  gap: 14px;
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 12px;
  font-weight: 600;
}

.blog-card-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-card-title a {
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card-title a:hover {
  color: var(--accent-violet);
}

.blog-card-excerpt {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
  line-height: 1.6;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(106, 17, 203, 0.1);
}

.author-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-main);
}

.read-more-link {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--accent-violet);
  text-decoration: none;
  transition: transform 0.2s ease;
  display: inline-block;
}

.read-more-link:hover {
  transform: translateX(4px);
  color: var(--accent-blue);
}

/* Single Article Reader View */
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-violet);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 8px 18px;
  background: rgba(106, 17, 203, 0.08);
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
}

.btn-back:hover {
  background: var(--accent-violet);
  color: #fff;
  transform: translateX(-4px);
}

.article-header {
  margin-bottom: 36px;
}

.article-title {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  line-height: 1.15;
  margin: 18px 0 24px;
  color: var(--text-main);
}

.article-meta-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  font-size: 2.2rem;
  width: 50px;
  height: 50px;
  background: rgba(106, 17, 203, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-main);
}

.author-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.article-date-time {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-dim);
  font-weight: 600;
}

.article-featured-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 42px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  max-height: 480px;
}

.article-featured-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.article-body {
  font-size: 1.15rem;
  color: var(--text-main);
  line-height: 1.8;
}

.article-body h2 {
  font-size: 1.85rem;
  margin: 40px 0 18px;
  color: var(--text-main);
  border-bottom: 2px solid rgba(106, 17, 203, 0.15);
  padding-bottom: 10px;
}

.article-body p {
  margin-bottom: 24px;
  color: var(--text-muted);
}

.article-body ul {
  margin: 0 0 28px 24px;
  color: var(--text-muted);
}

.article-body li {
  margin-bottom: 12px;
  padding-left: 6px;
}

.article-body strong {
  color: var(--text-main);
  font-weight: 700;
}

.blog-callout {
  background: linear-gradient(135deg, rgba(106, 17, 203, 0.08) 0%, rgba(37, 117, 252, 0.08) 100%);
  border-left: 4px solid var(--accent-violet);
  padding: 24px 28px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 32px 0;
  font-size: 1.05rem;
  color: var(--text-main);
  line-height: 1.7;
  box-shadow: 0 4px 15px rgba(106, 17, 203, 0.05);
}

.article-footer-box {
  margin-top: 60px;
  padding: 44px 36px;
  background: linear-gradient(135deg, #EAE5F3 0%, #FAFAFA 100%);
  border: 2px solid rgba(106, 17, 203, 0.25);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Responsive Auto-Adjust & Mobile Optimization (Mobile SEO & Touch UI)
   ========================================================================== */

@media (max-width: 992px) {
  .feature-list-table {
    grid-template-columns: 1fr;
  }
  .stat-divider {
    display: none;
  }
  .hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 70px 0;
  }
  
  .navbar {
    flex-direction: column;
    height: auto;
    padding: 20px 0;
    gap: 20px;
  }
  
  .nav-links {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .nav-links a {
    padding: 6px 10px;
    font-size: 1rem;
  }
  
  .nav-cta {
    width: 100%;
    justify-content: center;
    gap: 12px;
  }
  
  .nav-cta .btn {
    flex: 1;
    padding: 12px 16px !important;
    font-size: 0.9rem !important;
  }
  
  .hero {
    padding: 60px 0 50px;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 7vw, 3.2rem);
    margin-bottom: 20px;
  }

  .hero p {
    font-size: 1.1rem;
    margin-bottom: 36px;
    padding: 0 10px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 50px;
  }

  .hero-buttons .btn {
    width: 100%;
    padding: 16px 24px !important;
    font-size: 1rem !important;
  }
  
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
  }

  .stat-item {
    min-width: 120px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }
  
  .banner-overlay {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
  }

  .banner-caption {
    font-size: 1rem;
  }
  
  /* Table auto-adjust for mobile touch scrolling */
  .table-responsive {
    margin: 0 -16px 40px;
    border-radius: var(--radius-md);
    border-left: none;
    border-right: none;
    padding: 0 8px;
  }

  .pricing-table {
    min-width: 750px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 18px 14px;
  }

  .pricing-table .plan-name {
    font-size: 1.25rem;
  }

  .pricing-table .plan-price {
    font-size: 1.2rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-card {
    padding: 28px 22px;
  }

  .card-title {
    font-size: 1.4rem;
  }

  .card-price {
    font-size: 1.9rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefit-card {
    padding: 28px 22px;
  }
  
  .cta-panel {
    padding: 44px 20px;
  }

  .cta-panel h2 {
    font-size: 1.8rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 40px !important;
  }

  .cta-buttons .btn {
    width: 100%;
    padding: 16px 24px !important;
  }
  
  .payment-main-heading {
    font-size: 1.7rem !important;
  }

  .payment-methods-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .payment-card {
    padding: 14px 16px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-col div {
    justify-content: center;
  }
  
  /* Responsive Blog Adjustments */
  .featured-blog-card {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 24px !important;
  }
  .featured-blog-img-box {
    min-height: 240px !important;
  }
  .article-title {
    font-size: 1.8rem !important;
  }
  .article-body {
    font-size: 1.05rem !important;
  }
  .article-footer-box {
    padding: 28px 20px !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section-padding {
    padding: 54px 0;
  }
  
  .hero {
    padding: 40px 0 40px;
  }
  
  .hero h1 {
    font-size: 1.85rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .hero-stats-wrapper {
    padding: 20px 14px;
  }
  
  .pricing-table th,
  .pricing-table td {
    padding: 14px 10px;
    font-size: 0.9rem;
  }

  .feature-list-table li {
    font-size: 0.88rem;
  }

  .btn {
    padding: 14px 20px !important;
    font-size: 0.95rem !important;
  }
}

/* Global Mobile Responsiveness & Overflow Fixes */
html, body {
    overflow-x: hidden;
    width: 100%;
}
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
