: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: #c6d7fb51;
  --blue-sky: #0099cc;
  --danger-light: #e11d1d;

  /* 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: 10px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: 10px;
  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: 10px;
  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
========== */
.hero {
  padding: 20px 0 0px;
  overflow: hidden;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0px;
}

.hero-content {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.hero-tagline {
  font-family: "Caveat", cursive;
}
.tagline-decoration svg {
  width: 100%;
  max-width: 330px;
  display: block;
}

.hero-tagline {
  color: var(--secondary);
  font-size: 28px;
  font-weight: 600;
  display: inline-block;
  font-family: "Kalam", cursive;
}

.hero h1 {
  font-size: 52px;
  color: var(--midnight-navy);
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -2px;
}

.hero h1 span {
  color: var(--secondary);
}

.hero-accent {
  display: flex;
  flex-direction: row;
  padding-top: 14px;
  letter-spacing: -2px;
}

.hero p {
  width: 100%;
  max-width: 450px;
  font-size: 18px !important;
  line-height: 1.6;
  color: var(--primary);
  font-weight: 500;
  white-space: initial !important;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 350px;
}
.hero-features-list li{
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-muted-blue);
}

.hero-features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary);
  border: 2px solid var(--secondary);
  font-weight: 900;
  border-radius: 100%;
  height: 6px;
  width: 6px;
  padding: 2%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-secure-info {
  color: var(--text-muted-blue);
  font-size: 12px;
  font-weight: 550;
  display: inline;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Right side report card */
.hero-right-section {
  background-image: url('./assets/images/hero-background.png');
  background-repeat: no-repeat; 
  background-size: contain; 
  background-position: right center; 

  /* Layout and sizing jate content content safe thake */
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 40px 40px 40px 0px; 
}


.report-card {
  width: 100%;
  max-width: 860px; 
  background-color: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 32px 36px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* Title Header Styles */
.report-title {
  color: var(--text-muted-blue);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

/* Top Meta Dashboard Counts Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 15fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  margin-bottom: 28px;
  gap: 16px;
}

.stat-box {
  display: flex;
  flex-direction: column;
}

.stat-box:not(:last-child) {
  border-right: 1px solid var(--border);
  padding-right: 12px;
}

.stat-label {
  color: var(--text-muted-blue);
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
  min-height: 32px; 
}

.stat-value {
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-icon {
  width: 20px;
  height: 20px;
  color: #94a3b8;
}

/* Dynamic Text Mapping Configurations */
.text-dark-blue { color: #1d4ed8; }
.text-orange { color: #f95716; }
.text-blue { color: #2563eb; }

.stat-unit {
  color: #64748b;
  font-size: 12px;
  font-weight: 400;
}

/* Table Responsive Layer Controls */
.table-container {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 20px;
}

.report-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

/* Table Header Labels */
.report-table th {
  font-size: 8.5px;
  font-weight: 700;
  color: var(--text-muted-blue);
  padding: 10px;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border);
}

/* Table Body Cell Elements */
.report-table td {
  padding: 12px;
  font-size: 10px;
  color: var(--text-muted-blue);
  font-weight: 600;
  vertical-align: middle;
  border-bottom: 1px solid var(--border);
}

.text-right { text-align: right !important; }
.text-danger { color: var(--danger-light) !important; }
.text-success { color: var(--green) !important; }
.font-semibold { font-weight: 600 !important; }

/* Table User Profile Wrapper Rows */
.user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

/* Default Dark Tone Circle mimicking Avatars from Screenshot */
.bg-placeholder {

  width: 40px;
  height: 40px;
}
.bg-placeholder img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.user-name {
  font-weight: 600;
  color: var(--text-muted-blue);
}

/* Dynamic Priority Level Badges Matrix */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 600;
  text-align: center;
  min-width: 68px;
}

.badge-high {
  background-color: #fee2e2;
  color: var(--danger-light);
}

.badge-medium {
  background-color: #fef3c7;
  color: #d97706;
}

.badge-low {
  background-color: #dcfce7;
  color: #16a34a;
}

/* Bottom Report Layout Layer */
.report-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

.counter-text {
  color: #64748b;
  font-size: 12.5px;
  font-weight: 500;
}

.view-report-link {
  color: #2563eb;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.15s ease;
}

.view-report-link:hover {
  opacity: 0.8;
}

.view-report-link svg {
  width: 14px;
  height: 14px;
}


/*------ Report Section Start------ */


/* Outer Wrapper Box */
.engine-container {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
  text-align: center;
}

/* Top Typography Header */
.engine-header {
  margin-bottom: 40px;
}

.engine-header h2 {
  color: var(--text-muted-blue);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.engine-header p {
  color: var(--text-muted-blue);
  font-size: 15px;
  font-weight: 400;
}

/* Flex Row Container for Sequence */
.formula-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 35px;
  width: 100%;
}

/* Single Inner Component Card */
.card {
  flex: 1;
  min-height: 250px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* SVG Icon Controls */
.icon-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.icon-wrapper svg {
  width: 100%;
  height: 100%;
}

/* Brand Colors Config */
.icon-orange { color: var(--secondary); }
.icon-blue { color: var(--solid-blue); }

.card h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.title-orange { color: var(--secondary); }
.title-blue { color: var(--solid-blue); }

.card p {
  color: var(--text-muted-blue);
  font-size: 13.5px;
  line-height: 1.6;
  font-weight: 400;
}

/* Math Operators (+, =) */
.operator {
  width: 40px;
  height: 40px;
  background-color: var(--bg-blue-light);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 30px;
  flex-shrink: 0;
}

/* Bottom Footer Text Line */
.engine-footer {
  margin-top: 10px;
}

.engine-footer p {
  color: var(--text-muted-blue);
  font-size: 14px;
  font-weight: 400;
}

.highlight {
  color: #ff5722;
  font-weight: 600;
}
/*------ Report Section End------ */


/* Insight & why it matters section  start*/

.sections-container {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-top: 22px;
}

.section-card {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.01);
}

.insight-box {
  background: linear-gradient(135deg, #fdf4f3cb 0%, #fdf3f3 100%);
}

.matters-box {
  background: linear-gradient(135deg, #f2fdfacf 0%, #eef8f3 100%);
}

/* Typography Headers */
.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-header h2 {
  color: var(--black);
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.section-header p {
  color: var(--text-muted-blue);
  font-size: 15px;
  font-weight: 500;
}

/* Flow Styles for Left Component */
.action-flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
}

.flow-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Circular Icon Layout elements */
.circle-icon {
  width: 72px;
  height: 72px;
  background-color: #ffebeb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  margin-bottom: 20px;
  border: 1px solid rgba(253, 128, 66, 0.203);
}

.circle-icon svg {
  width: 32px;
  height: 32px;
}

/* Fix rotation angle for standard paper-plane design match */
.circle-icon svg.paper-plane {
  transform: rotate(-25deg) translateY(2px) translateX(-1px);
}

.flow-item h3 {
  color: var(--text-muted-blue);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}

.flow-item p {
  color: var(--text-muted-blue);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
  max-width: 140px;
}

/* Custom horizontal arrows alignment */
.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  color: var(--secondary);
}

.flow-arrow svg {
  width: 18px;
  height: 18px;
}

.matters-box .section-header p {
  max-width: 300px;
  margin: 0 auto;
}

/* Grid Layout structure for Right Component List blockboxes */
.comparison-grid {
  display: flex;
  gap: 16px;
}

.list-card {
  flex: 1;
  background-color: rgba(252, 248, 248, 0.349);
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 12px;
  padding: 24px 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.01);
}

.list-card h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  text-align: center;
}

/* Color codes mapping for status rules */
.text-red { color: var(--secondary); }
.text-green { color: var(--green); }

.border-red { border: 1px solid #fee2e2; }
.border-green { border: 1px solid #e2f4e7; }

/* Dedicated Bullet List styling */
.status-list {
  list-style: none;
}

.status-list li {
  font-size: 13.5px;
  color: #1e293b;
  font-weight: 500;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.status-list li:last-child {
  margin-bottom: 0;
}

/* Pure Custom Pseudo CSS Icons injection for 100% precision */
.status-list li::before {
  font-size: 14px;
  margin-right: 12px;
  display: inline-block;
  width: 18px;
}

.list-red li::before {
  content: "✕";
  color: var(--danger-light);
  font-weight: 700;
}

.list-green li::before {
  content: "✓";
  color: var(--white);
  background-color: var(--green);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  text-align: center;
  line-height: 18px;
  font-size: 11px;
}

/* Insight & why it matters section  end*/

/* CTA section style start */
.cta-banner {
  background: linear-gradient(135deg, #fff5f0 0%, #fffbf9 100%);
  border: 1px solid #fdeee6;
  border-radius: 16px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(249, 87, 22, 0.02);
  margin-top: 22px;
}

/* Left Section Layout Details */
.cta-left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 2;
}

/* Light Orange Circular Frame around Graph */
.graph-circle {
  width: 80px;
  height: 80px;
  background-color: #ffebe0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  flex-shrink: 0;
  border: 1px solid rgba(255, 120, 36, 0.276);
}

.graph-circle svg {
  width: 36px;
  height: 36px;
}

/* Headline and Subtext Content */
.cta-text h2 {
  color: var(--midnight-navy);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  line-height: 1.3;
}

.cta-text p {
  color: var(--text-muted-blue);
  font-size: 14.5px;
  line-height: 1.5;
  font-weight: 500;
  max-width: 500px;
}

/* Right Side Actions and Security */
.cta-right {
  flex: 4;
  gap: 12px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column
}

.cta-right h2 {
  font-size: 18px;
}
.cta-right p {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted-blue);
}



/* CTA section style end */

/*====== Footer style start ======*/
/* Base Footer Box Container Rules */
.main-footer {
  background-color: var(--midnight-navy); /* Identical deep dark indigo navy tint */
  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: #ffffff;
  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: #f95716;
  border: none;
  border-radius: 6px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.subscribe-form button:hover {
  background-color: #e04608;
}

.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;
  }
  .hero-content h1 {
    font-size: 48px !important;
  }
}


@media (max-width: 992px) {

    /* Navbar */
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    gap: 24px;
    padding: 30px;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .nav-menu.active {
    display: flex;
  }

  .navbar .btn-primary {
    display: none;
  }

  .logo img {
    width: 200px;
  }

.hero {
  padding: 20px 0 0px;
  overflow: hidden;
}

.hero-wrapper {
  grid-template-columns: 1fr;
  align-items: center;
  gap: 50px;
}

.hero-content {
  max-width: 100%;
  gap: 25px;
  padding-left: 40px;
}
  .hero-content h1 {
    font-size: 42px !important;
  }

  .formula-wrapper {
    flex-direction: column;
    gap: 16px;
  }
  
  .card {
    width: 100%;
    max-width: 320px;
    min-height: auto;
  }
  .operator {
    transform: rotate(0deg);
  }

  .sections-container {
    flex-direction: column;
  }

    .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-content {
    max-width: 100%;
    gap: 25px;
    padding-left: 20px;
  }

   .hero-content h1 {
    font-size: 50px !important;
  }
}

@media (max-width: 640px) {

  .hero-content {
    max-width: 100%;
    gap: 20px;
    padding-left: 0px;
  }

  .hero-content h1 {
    font-size: 35px !important;
  }

  .hero-content p {
    font-size: 14px !important;
    white-space: normal !important;
    width: 100%;   
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .stat-box:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #f1f5f9;
    padding-right: 0;
    padding-bottom: 16px;
  }
  .stat-label {
    min-height: auto;
  }
  .report-card {
    padding: 24px 20px;
  }

  .action-flow {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .flow-arrow {
    transform: rotate(90deg);
    height: auto;
    margin: 4px 0;
  }
  .comparison-grid {
    flex-direction: column;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 32px;
  }

    .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;
  }
}

@media (max-width: 470px) {

.hero-tagline {
  font-size: 20px;
}

.tagline-decoration {
width: 220px;
}

.hero h1 {
  font-size: 30px !important;
  letter-spacing: -2px;
}

.hero-accent {
  display: flex;
  flex-direction: row;
  padding-top: 14px;
  letter-spacing: -2px;
}

.hero-description  {
  max-width: 330px;
  font-size: 12px !important;
  font-weight: 550;
}

.hero-slowdown-btn {
  width: 320px;
}

}