:root {
  /* Brand Core Colors */
  --primary: #081c63;
  --midnight-navy: #030f26;
  --secondary: #ff5a1f;
  --white: #ffffff;
  --black: #000000;
  --green: #018b36;
  --orange: hsl(27, 100%, 53%);
  --purple: #7b2cbf;
  --solid-blue: #0061fc;
  --dark: #37383981;
  --border:#dadee2b5;

  /* Typography / Text Colors */
  --text-muted: #5c6679fa;
  --text-muted-blue: #08074bda;
  --dark-blue: rgba(158, 174, 184, 0.089);
  --bg-blue-light: #c6d7fb3c;
  --blue-sky: #0099cc;
  --danger-light: #e11d1d;
  --light-orange: rgba(254, 88, 27, 0.062);

  /* Layout, Shadows & Interactive */
  --radius: 20px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 4px 20px rgba(16, 24, 40, 0.04);
  --shadow-hover: 0 15px 40px rgba(16, 24, 40, 0.08);
  --shadow-danger: rgba(197, 34, 34, 0.12);
  --shadow-success: rgba(22, 101, 52, 0.12);
  --border-badge: rgba(255, 204, 0, 0.85);

  --bg-btn-hover: #edf2f7;
  --bg-outline-hover: #f8fafc;
  --container: 1280px;
}

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

body {
  font-family: Inter, sans-serif;
  color: var(--black);
  background: #fff;
}

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

h2 {
  font-family: "Roboto Condensed", sans-serif;
}
a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

/* ==========
   REUSABLE COMPONENTS
========== */

.container {
  
}

/* reusable button */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 12px 44px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background-color 0.2s ease,
    transform 0.1s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(255, 90, 31, 0.25);
}

.btn-login {
  background-color: var(--solid-blue);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background-color 0.2s ease,
    transform 0.1s ease;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 21, 255, 0.25);
}

/* =========================
   HEADER
========================= */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
}

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

/* Logo */

.navbar-logo {
  max-width: 200px;
}

.navbar-logo a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Navigation */

.nav-menu {
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav-menu li a {
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  transition: 0.3s ease;
}

.nav-menu li a:hover {
  color: var(--secondary);
}

/* Active Link */

.nav-menu li a {
  position: relative;
  color: var(--primary);
  font-weight: 600;
  padding-bottom: 8px;
}

.nav-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--secondary);
  border-radius: 50px;
  transition: width 0.3s ease;
}

/* Hover */
.nav-menu li a:hover::after {
  width: 100%;
}

/* Active */
.nav-menu li a.active::after {
  width: 100%;
}

.nav-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 3px;
  background: var(--secondary);
  border-radius: 50px;

  transform: scaleX(0);
  transform-origin: left;
  transition: 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
  transform: scaleX(1);
}

/* Mobile Menu Button */

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--primary);
  margin: 5px 0;
  border-radius: 50px;
}


/* ==========
   HERO start
========== */

.hero-section {
  padding-block: 40px 0; 
  background-color: var(--white);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr; 
  gap: 10px;
  align-items: center;
}

/* Typography Styles */
.hero-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-muted-blue); /* Midnight Navy */
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.text-orange {
  color: #FF5A1F; /* Brand Orange */
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-muted-blue);
  margin-bottom: 28px;
  max-width: 380px;
}

.hero-desc-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
  max-width: 320px;
}

.hero-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-muted-blue); /* Soft body text */
}

.text-orange-link {
  color: #FF5A1F;
  font-weight: 600;
}

/* CTA Buttons Styling */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

/* Secondary Outline Blue Button */
.btn-outline-blue {
  color: var(--solid-blue);
  background-color: transparent;
  border: 1.5px solid rgba(10, 112, 255, 0.694);
  border-radius: 6px;
  padding: 12px 28px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background-color 0.2s ease,
    transform 0.1s ease;
}

.btn-outline-blue:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 21, 255, 0.25);
}

/* Security/Trust Bottom Text */
.hero-security {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted-blue);
}

.lock-icon {
  color: #030F26;
}

/* Image Layout Optimization */
.hero-image-wrap {
  position: relative;
  width: 100%;
}
.hero-image-bg {
  max-height: 100vh;
}
.hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px; 
}
/* ========== HERO end ========== */

/* ========== Problem start ========== */

.problem-section {
  padding-block: 40px; 
  background-color: var(--white);
}

/* Header Configuration */
.problem-header {
  text-align: center;
  margin-bottom: 64px; 
}

.problem-tag {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #FF5A1F; /* Brand Orange */
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 16px;
}

.problem-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 38px; 
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-muted-blue); 
  letter-spacing: -0.5px;
}

.problem-title .text-orange {
  color: #FF5A1F;
  display: block;
  margin-top: 4px;
}

/* 3 Columns Grid System */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px; 
  max-width: 1100px;
  margin-inline: auto;
}

.problem-card {
  display: flex;
  align-items: center;
  gap: 20px; 
}


/* Soft Rounded Blue Circles for Icons */
.icon-shape {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--bg-blue-light); 
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; 
  padding: 12px;
}

.icon-shape img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500; 
  line-height: 1.5;
  color: var(--text-muted-blue); 
  max-width: 180px; 
}
/*====== Problem end ======*/

/* ========== Revenue start ========== */

.revenue-risk-section {
  padding-block: 40px;
  background-color: var(--white);
}

/* Outer Border Box Container */
.risk-card-box {
  background: #ffffffd2;
  border: 1px solid #E2E8F0; 
  border-radius: 12px;
  padding: 40px 0;
  max-width: 1200px;
  margin-inline: auto;
  position: relative;
}

/* Central Section Tag Header */
.risk-tag {
  display: block;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: var(--text-muted-blue); /* Midnight Navy */
  letter-spacing: 1px;
  margin-bottom: 40px;
}

/* Equation Main Grid layout */
.equation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  margin-bottom: 32px;
}

/* Vertical Center Divider Line */
.equation-grid::after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 50%;
  width: 1px;
  background-color: #d3d5d7;
  transform: translateX(-50%);
}

/* Individual Sides Equation Layout */
.equation-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-inline: 20px;
}

/* Stat Elements Structure */
.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.start-item-wrap {
  display: flex;
  flex-direction: column;
}
.stat-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* Styled Background Circles for Icons */
.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-circle-badge {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bg-light-orange {
  background-color: var(--light-orange); 
}

.bg-light-blue {
  background-color: var(--bg-blue-light); 
}

/* Special Soft Glow For Average Visit Circle */
.shadow-glow {
  box-shadow: 0px 4px 12px rgba(26, 102, 255, 0.1);
}

.currency-value {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--solid-blue);
}

/* Text elements styling inside stats */
.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--text-muted-blue);
  line-height: 1;
  margin-bottom: 4px;
}

.text-orange-bold {
  color: var(--secondary); 
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-muted-blue);
}

.mt-label {
  margin-top: 2px;
}

/* Math symbols (X, =) spacing styling */
.math-operator {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #718096;
  margin-inline: 18px;
}

.risk-bottom-alert {
  border-top: 1px solid #e8e8e8; 
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 40px;
}

.warning-icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.alert-text-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.alert-primary {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted-blue);
}

.alert-secondary {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary); 
}
/* ========== Revenue end ========== */

/* ========== Plan section start ========= */

.plan-section {
  padding-block: 40px;
  background-color: var(--white);
  overflow: hidden;
}

.plan-container {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: flex-start;
  margin-inline: auto;
  padding-inline: 24px;
}

/* --- Left Side Content Area --- */
.plan-left-content {
  position: sticky;
  top: 40px;
}

.plan-sub-tag {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.plan-main-title {
  font-family: 'Inter', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--text-muted-blue);
  line-height: 1.2;
  margin-bottom: 20px;
}

.plan-description {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
  color: var(--text-muted-blue);
}

/* --- Right Side Steps Flow Area --- */
.plan-right-steps {
  display: flex;
  flex-direction: column;
}

.plan-steps-tag {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 50px;
}

.steps-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

/* Individual Step Box styling */
.step-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

/* Small dark number indicator badge top of circles */
.step-badge {
  width: 18px;
  height: 18px;
  background-color: #030F26;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -25px;
  z-index: 2;
}

/* Core Main Icon Circle Backdrop */
.step-icon-circle {
  width: 64px;
  height: 64px;
  background-color: rgba(26, 102, 255, 0.05); /* Soft Blue Circle */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.step-card:hover .step-icon-circle {
  transform: translateY(-4px);
}

.step-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-muted-blue);
  line-height: 1;
  margin-bottom: 12px;
  min-height: 34px; 
  align-items: center;
  justify-content: center;
}

.step-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  max-width: 140px;
  line-height: 1.8;
  color: var(--text-muted-blue);
}

/* Steps Middle Linking Blue Arrow */
.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 26px; 
}

/* ========= Plan section end =========*/

/* ======= Why it works section start =======*/

.why-it-works-section {
  padding-block: 40px;
  background-color: var(--white);
}

.why-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr; 
  gap: 48px;
  align-items: center;
  margin-inline: auto;
  padding-inline: 24px;
}

/* --- Left Side Styling --- */
.why-sub-tag {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.why-main-title {
  font-family: 'Inter', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--text-muted-blue); /* Midnight Navy */
  line-height: 1.2;
  margin-bottom: 24px;
}

/* Bullet Custom List styling */
.why-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted-blue);
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* --- Right Side Box Styling --- */
.why-right-box {
  background-color: rgba(62, 126, 254, 0.071); 
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  border-radius: 8px;
}

.pulse-icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.pulse-box-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  max-width: 300px;
  color: var(--text-muted-blue);
}

/* ======= Why it matters section end =======*/

/*====== Email Result style start ======*/

.email-results-section {
  padding-block: 30px;
  background-color: var(--white);
}

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

/* Header Text Styles */
.results-header {
  margin-bottom: 20px;
}

.results-tag {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 900;
  color: var(--secondary); 
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.results-title {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--text-muted-blue); 
  letter-spacing: -0.5px;
}

/* Outer Container Box */
.results-card-box {
  background: var(--white);
  border: 1px solid #F1F5F9;
  border-radius: 12px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.01);
  margin-inline: auto;
  padding: 32px 16px;
}

/* 6 Column Layout Structure */
.results-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: flex-start;
}

/* Individual Feature Columns */
.result-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 16px;
  position: relative;
}

/* Thin vertical dividers between items */
.result-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15%;
  bottom: 15%;
  right: 0;
  width: 1px;
  background-color: #E2E8F0;
}

/* Icon Backdrop & Variants Matching Screenshot Palette */
.icon-circle-thumb {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.bg-blue-tint        { background-color: rgba(26, 102, 255, 0.06); }
.bg-orange-tint      { background-color: rgba(255, 90, 31, 0.06); }
.bg-green-tint       { background-color: rgba(16, 185, 129, 0.06); }
.bg-purple-tint      { background-color: rgba(139, 92, 246, 0.06); }
.bg-deeporange-tint  { background-color: rgba(234, 88, 12, 0.06); }
.bg-red-tint         { background-color: rgba(220, 38, 38, 0.06); }

/* Typography styling inside cards */
.card-feature-title {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted-blue);
  line-height: 1.3;
  letter-spacing: .2px;
  margin-bottom: 10px;
  min-height: 34px; 
  max-width: 140px;
  display: flex;
  align-items: center;
}

.card-feature-desc {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-muted-blue);
  max-width: 120px;
}

/*====== Email result style end ======*/

/*====== Success style start ======*/

.success-section {
  padding-block: 30px;
  background-color: var(--white);
}

/* Outer Border Box with Light Tinted Background */
.success-card-box {
  background-color: rgba(64, 125, 247, 0.048);
  border: 1px solid #F1F5F9;
  border-radius: 8px;
  padding: 40px 32px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* --- Left Side Content Area --- */
.success-left-content {
  flex-shrink: 0;
  max-width: 380px;
  position: relative;
  padding-right: 40px;
}

/* Vertically Center Separator Line on Left Content */
.success-left-content::after {
  content: "";
  position: absolute;
  top: 10%;
  bottom: 10%;
  right: 0;
  width: 1px;
  background-color: #CBD5E1; 
}

.success-sub-tag {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--secondary); /* Accent Orange */
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.success-main-title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-muted-blue); /* Midnight Navy */
  line-height: 1.3;
}

.success-main-title .text-orange {
  color: var(--secondary);
}

/* --- Right Side Steps Flow Layout --- */
.success-right-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  gap: 8px;
}

/* Individual Workflow Node Block */
.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.flow-icon-wrap {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.flow-desc {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-muted-blue);
}

/* Right Caret Arrow (>) Divider Symbol */
.flow-arrow {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted-blue);
  padding-bottom: 24px; /* আইকনের সাথে প্যারালাল করার জন্য হালকা প্যাডিং */
  flex-shrink: 0;
}

/*====== Success style start ======*/



/*====== Trust style start ======*/

.trust-bar-section {
  padding-block: 20px;
  background-color: var(--white);
}

/* Outer Border Container Box */
.trust-card-box {
  background: var(--white);
  border: 1px solid #E2E8F0; 
  border-radius: 10px;
  padding: 32px 24px;
  max-width: 1200px;
  margin-inline: auto;
}

/* 4 Column Layout */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

/* Individual Item Elements */
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-inline: 20px;
  position: relative;
}

/* Thin Divider lines between columns */
.trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10%;
  bottom: 10%;
  right: 0;
  width: 1px;
  background-color: #E2E8F0;
}

/* Icon Alignment Wrappers */
.trust-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding-top: 2px;
}

/* Custom Text Layouts */
.trust-text {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  color: #030F26; /* Midnight Navy */
  margin: 0;
}

.trust-text strong {
  font-weight: 800;
}

.highlight-blue {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #1A66FF; /* 100% Bold Blue Highlight */
  margin-top: 4px;
}

.mb-4 {
  margin-bottom: 6px;
}

.no-gap-top {
  padding-top: 4px;
}

/* Rating Stars Row Box */
.rating-stars {
  display: flex;
  gap: 3px;
  align-items: center;
}

/*====== Trust style start ======*/


/*====== Pricing style start ======*/

.pricing-section {
  padding-block: 30px;
  background-color: var(--white);
}

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

.pricing-header {
  margin-bottom: 40px;
}

.pricing-section-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-muted-blue); /* Midnight Navy */
  letter-spacing: 1px;
}

/* 5-Column Grid Setup */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-inline: auto;
  padding-inline: 20px;
}

/* Base Price Card Design */
.price-card {
  background: var(--white);
  border-radius: 10px;
  border: 1px solid transparent;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.05);
}

/* Plan Title & Money Typography */
.plan-name {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.plan-price {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #030F26;
  line-height: 1;
  margin-bottom: 28px;
}

.plan-price .period {
  font-size: 13px;
  font-weight: 600;
  color: #03193a;
}

/* Features List Box */
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.plan-features li {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted-blue);
  display: flex;
  align-items: center;
  gap: 8px;
}

.green-check {
  flex-shrink: 0;
}

/* Action Button Style */
.btn-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 16px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  margin-top: auto; 
  transition: opacity 0.2s ease;
}

.btn-action:hover {
  opacity: 0.9;
}

/* ==========================================================================
   DYNAMIC COLOR THEMES (PER CARD INDIVIDUAL COLOR)
   ========================================================================== */

/* Theme 1: Spark (Light Orange) */
.theme-spark { border-color: rgba(255, 90, 31, 0.2); }
.theme-spark .plan-name { color: #FF5A1F; }
.theme-spark .btn-action { background-color: #FF5A1F; }

/* Theme 2: Launch (Bright Blue) */
.theme-launch { border-color: rgba(26, 102, 255, 0.2); }
.theme-launch .plan-name { color: #1A66FF; }
.theme-launch .btn-action { background-color: #1A66FF; }

/* Theme 3: Starter (Deep Orange/Red-Orange) */
.theme-starter { border-color: rgba(249, 115, 22, 0.2); }
.theme-starter .plan-name { color: #F97316; }
.theme-starter .btn-action { background-color: #F97316; }

/* Theme 4: Grow (Forest Green) */
.theme-grow { border-color: rgba(16, 124, 65, 0.2); }
.theme-grow .plan-name { color: #107C41; }
.theme-grow .btn-action { background-color: #107C41; }

/* Theme 5: Scale (Royal Purple) */
.theme-scale { border-color: rgba(124, 58, 237, 0.2); }
.theme-scale .plan-name { color: #7C3AED; }
.theme-scale .btn-action { background-color: #7C3AED; }

/*====== Pricing style start ======*/

/*====== CTA style start ======*/

.cta-bar-section {
  padding-block: 20px 80px; 
  background-color: var(--white);
}

/* Main row box grid with a subtle tint or border to match other cards */
.cta-bar-box {
  background: var(--white);
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
  display: grid;
  grid-template-columns: 1.2fr 1.3fr 1.5fr; 
  align-items: center;
  gap: 32px;
}

/* --- Left Side Content --- */
.cta-left-block {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-mail-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.cta-title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-muted-blue); 
  line-height: 1.3;
}

/* --- Middle Description Text --- */
.cta-middle-block {
  display: flex;
  align-items: center;
}

.cta-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-muted-blue);
}

/* --- Right Side Buttons Layout --- */
.cta-right-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

/* 1. Connect Square Solid Button */
.btn-connect-square {
  background-color: var(--secondary); 
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.btn-connect-square:hover {
  opacity: 0.9;
}

/* 2. See How It Works Outline Button */
.btn-see-how {
  background-color: var(--white);
  color: var(--solid-blue); 
  border: 1px solid #1A66FF;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  padding: 11px 20px; 
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.btn-see-how:hover {
  background-color: rgba(26, 102, 255, 0.04);
}

/*====== CTA style start ======*/


/*====== Footer style start ======*/
.main-footer {
  background-color: var(--midnight-navy); 
  border-radius: 12px;
  padding: 40px 40px 24px 40px;
  color: var(--white);
  margin-top: 22px;
  margin-bottom: 22px;
}

/* Top Sections Matrix Wrap */
.footer-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Left Branding Styling */
.footer-brand {
  flex: 2;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.brand-logo {
  width: 200px;
}
.brand-logo img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}


.brand-desc {
  color: var(--white);
  font-size: 13.5px;
  line-height: 1.6;
  font-weight: 400;
}

/* Middle Navigation Block Columns */
.footer-links-grid {
  flex: 3;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.links-column {
  flex: 1;
}

/* Header Text Rules for Navigation/Category Titles */
.main-footer h3 {
  color: var(--secondary); 
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.links-column ul {
  list-style: none;
}

.links-column ul li {
  margin-bottom: 12px;
}

.links-column ul li a {
  color: var(--border);
  font-size: 13.5px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}

.links-column ul li a:hover {
  color: var(--white);
}

/* Right Newsletter Layout Block */
.footer-newsletter {
  flex: 2;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-newsletter p {
  color: #94a3b8;
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: 16px;
}

/* Embedded Inline Input-Form Controls */
.subscribe-form {
  display: flex;
  background-color: var(--white);
  border-radius: 8px;
  padding: 4px;
  align-items: center;
  width: 100%;
}

.subscribe-form input {
  flex: 1;
  border: none;
  background: none;
  padding: 10px 14px;
  font-size: 13.5px;
  color: #000a1f;
  font-family: inherit;
  outline: none;
}

.subscribe-form input::placeholder {
  color: #94a3b8;
}

.subscribe-form button {
  background-color: var(--secondary);
  border: none;
  border-radius: 6px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.subscribe-form button:hover {
  background-color: var(--secondary);
}

.subscribe-form button svg {
  width: 16px;
  height: 16px;
}

/* Bottom Copy and Meta Links Section */
.footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 12.5px;
  color: #64748b;
  font-weight: 500;
}

.bottom-links {
  display: flex;
  gap: 24px;
}

.bottom-links a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.15s ease;
}

.bottom-links a:hover {
  color: #94a3b8;
}

/*====== Footer style end ========*/



/* Responsive Breakpoints implementation */
@media (max-width: 1199.98px) {
  /* Navbar */
  .nav-menu {
    gap: 20px;
    padding: 24px;
  }

  .logo img {
    width: 220px;
  }
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px;
  }

    .cta-bar-box {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .cta-left-block {
    flex-direction: column;
    gap: 12px;
  }

  .cta-middle-block {
    justify-content: center;
  }

  .cta-right-buttons {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 992px) {
/* hero section start*/
  .nav-actions {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    gap: 20px;
    padding: 30px;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }
  
  .nav-menu.active {
    display: flex;
  }
/* header section end*/

/* hero section start*/
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-subtitle, .hero-desc-group {
    margin-inline: auto;
  }
  
  .hero-cta-group {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .hero-security {
    justify-content: center;
  }
/* hero section end*/

  /* problem start */
  .problem-grid {
    grid-template-columns: 1fr; 
    gap: 32px;
    max-width: 400px;
  }
  
  .problem-title {
    font-size: 32px;
  }
  /* problem end */
  
  /* revenue section */
  .equation-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .equation-grid::after {
    display: none; 
  }
  
  .equation-block {
    flex-wrap: wrap;
    border-bottom: 1px solid #E2E8F0;
    padding-bottom: 32px;
  }
  
  .equation-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .risk-bottom-alert {
    flex-direction: column;
    text-align: center;
  }

  /* revenue section */

  /* plan section */
  .plan-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .plan-left-content {
    position: static;
    text-align: center;
  }
  
  .steps-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .step-card {
    max-width: 280px;
  }

  .step-title {
    min-height: auto;
  }

  .step-arrow {
    padding-top: 0;
    transform: rotate(90deg); 
  }
  /* plan section */

  /* why it matters section */
  .why-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .why-left-content {
    text-align: center;
  }
  
  .why-check-list {
    align-items: center;
  }

  .why-right-box {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 32px 24px;
  }
  /* why it matters section */

  /* Email result section */
    .results-grid {
    grid-template-columns: repeat(3, 1fr); 
    gap: 32px 0px;
  }
  
  .result-card:nth-child(3)::after,
  .result-card:nth-child(6)::after {
    display: none; 
  }
  /* Email result section */

  /* Success section */
  .success-card-box {
    flex-direction: column;
    align-items: stretch;
    padding: 32px 24px;
    gap: 32px;
  }

  .success-left-content {
    max-width: 100%;
    text-align: center;
    padding-right: 0;
    padding-bottom: 24px;
  }

  .success-left-content::after {
    top: auto;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    width: auto; 
  }

  .success-right-flow {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 12px;
  }

  .flow-step {
    flex: none;
    width: 28%; 
  }

  .flow-arrow {
    display: none; 
  }
  /* Success section */

  /* trust bar section */
  .trust-grid {
    grid-template-columns: 1fr 1fr; 
    gap: 32px 0px;
  }
  
  .trust-item:nth-child(2)::after,
  .trust-item:nth-child(4)::after {
    display: none;
  }
  /* trust bar section */

/* footer section start*/
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }
  .footer-brand, .footer-newsletter {
    max-width: 100%;
    width: 100%;
  }
  .footer-links-grid {
    width: 100%;
  }
}

@media (max-width: 790px) {

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero-grid > div:first-child { order: 2; }
  .hero-grid > div:last-child { order: 1; }

  .why-main-title {
  font-size: 36px;
}

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

@media (max-width: 640px) {
  .hero-section {
    padding-block: 20px 0; 
    margin-bottom: 20px;
  }
  
  .results-grid {
    grid-template-columns: 1fr; 
    gap: 40px 0px;
  }
  
  .result-card::after {
    display: none !important; 
  }
  
  .why-main-title {
  font-size: 32px;
}

  /* success section */
  .card-feature-title {
    min-height: auto;
  }

    .flow-step {
    width: 45%; 
  }
  /* success section */
  .footer-links-grid {
    flex-direction: column;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 16px;
  }
  .bottom-links {
    flex-wrap: wrap;
    gap: 16px;
  }

  /* trust bar section */
    .trust-grid {
    grid-template-columns: 1fr; 
    gap: 32px;
  }
  
  .trust-item {
    padding-inline: 10px;
  }
  
  .trust-item::after {
    display: none !important; 
  }
}

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

  .cta-right-buttons {
    flex-direction: column; 
    align-items: stretch;
  }
  
  .btn-connect-square, .btn-see-how {
    justify-content: center;
  }
}