/* MakeRain Agency Brand Identity - Custom Properties */
:root {
    /* Brand Colors */
    --primary-50: #f0f4f8;
    --primary-100: #d9e2ec;
    --primary-200: #bcccdc;
    --primary-300: #9fb3c8;
    --primary-400: #829ab1;
    --primary-500: #627d98;
    --primary-600: #2B4C7E;
    --primary-700: #243f6b;
    --primary-800: #1e3458;
    --primary-900: #182945;

    --secondary-50: #f0fdfa;
    --secondary-100: #ccfbf1;
    --secondary-200: #99f6e4;
    --secondary-300: #5eead4;
    --secondary-400: #2dd4bf;
    --secondary-500: #45B7A4;
    --secondary-600: #0d9488;
    --secondary-700: #0f766e;
    --secondary-800: #115e59;
    --secondary-900: #134e4a;

    --accent-50: #f8fafc;
    --accent-100: #f1f5f9;
    --accent-200: #E6E9F0;
    --accent-300: #cbd5e1;
    --accent-400: #94a3b8;
    --accent-500: #64748b;
    --accent-600: #475569;
    --accent-700: #334155;
    --accent-800: #1e293b;
    --accent-900: #0f172a;

    /* Dark Theme Colors */
    --dark-bg-primary: #0a0f1c;
    --dark-bg-secondary: #111827;
    --dark-bg-tertiary: #1f2937;
    --dark-bg-card: #1e293b;
    --dark-bg-elevated: #2d3748;
    
    --dark-text-primary: #f8fafc;
    --dark-text-secondary: #e2e8f0;
    --dark-text-muted: #94a3b8;
    --dark-text-accent: #cbd5e1;
    
    --dark-border-primary: #334155;
    --dark-border-secondary: #475569;
    --dark-border-accent: #64748b;

    /* Success, Warning, Error */
    --success-500: #45B7A4;
    --warning-500: #f59e0b;
    --error-500: #ef4444;

    /* Neutral Colors - Updated for Dark Theme */
    --gray-50: #1e293b;
    --gray-100: #334155;
    --gray-200: #475569;
    --gray-300: #64748b;
    --gray-400: #94a3b8;
    --gray-500: #cbd5e1;
    --gray-600: #e2e8f0;
    --gray-700: #f1f5f9;
    --gray-800: #f8fafc;
    --gray-900: #ffffff;

    /* Typography */
    --font-family-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-family-secondary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;

    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;

    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.625;

    /* Spacing */
    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-5: 1.25rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --spacing-10: 2.5rem;
    --spacing-12: 3rem;
    --spacing-16: 4rem;
    --spacing-20: 5rem;
    --spacing-24: 6rem;
    --spacing-32: 8rem;

    /* Shadows - Updated for Dark Theme */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-base: 0 1px 3px 0 rgba(0, 0, 0, 0.4), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.2);

    /* Glows for Dark Theme */
    --glow-primary: 0 0 20px rgba(43, 76, 126, 0.3);
    --glow-secondary: 0 0 20px rgba(69, 183, 164, 0.3);
    --glow-accent: 0 0 15px rgba(230, 233, 240, 0.2);

    /* Border Radius */
    --border-radius-sm: 0.125rem;
    --border-radius-base: 0.25rem;
    --border-radius-md: 0.375rem;
    --border-radius-lg: 0.5rem;
    --border-radius-xl: 0.75rem;
    --border-radius-2xl: 1rem;
    --border-radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;

    /* Container - Desktop Only */
    --container-max-width: 1280px;
    --container-padding: 1.5rem;
}

/* === NAVBAR STYLES === */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 999;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  display: block;
  object-fit: contain;
  vertical-align: middle;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
}
.contact-blue {
  background-color: #e7f1f9;
  color: #0e2a47;
  padding: 4rem 1.5rem;
}

.contact-blue h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.contact-blue p {
  font-size: 1rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 1rem;
}

.contact-highlights {
  list-style: none;
  padding-left: 0;
  text-align: center;
  margin-bottom: 2rem;
}

.contact-highlights li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form button.cta-button {
  background-color: #00a9ff;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button.cta-button:hover {
  background-color: #0080c0;
}


.nav-links a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}

/* === GLOBAL STYLES === */
:root {
  --brand-blue:#0e2a47; /* Primary brand color  #00a9ff*/
  --white: #ffffff;
  --dark: #111111;
}

* {
  box-sizing: border-box;
}

body {
  padding-top: 80px;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: var(--white);
  color: var(--dark);
  line-height: 1.6;
}

.container {
  max-width: 1000px;
  margin: auto;
  padding: 2rem;
}

section {
  margin-bottom: 0rem;
}

h1, h2 {
  color: var(--brand-blue);
}

.cta {
  background-color: var(--brand-blue);
  color: var(--white);
  padding: 1rem 2rem;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
  font-size: 1.1rem;
}

.hero {
  background-image: url('/assets/images/hero.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 100px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  text-shadow: #111111 1px 1px 2px;
}

.hero-sub {
  letter-spacing: 5px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 300;
}

/* speed results growth g */
.hero-main {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #FFD62C;
  text-shadow: #111111 1px 1px 2px;
}

.hero-tagline {
  font-size: 1.3rem;
  font-weight: 500;
  color: #ffffff;
  text-shadow: #111111 1px 1px 2px;
}

/* .hero h2, */
.hero p {
  max-width: 700px;
  margin: 0 auto 1rem;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.8); /* additional depth */
}

.cta-button {
  display: inline-block;
  background-color: rgba(255, 214, 44, 0.9); /* 0.9 opacity */
  color: #ffffff;
  font-weight: 700;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease, transform 0.2s ease;
  margin-top: 1.5rem;
  opacity: 0.95;
}

.cta-button2 {
  display: inline-block;
  background-color: rgba(255, 214, 44); 
  color: #000000;
  font-weight: 700;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease, transform 0.2s ease;
  margin-top: 1.5rem;
}

.cta-button:hover {
  background-color: #e6bf26;
  transform: translateY(-2px);
}

.cta-button2:hover {
  background-color: #e6bf26;
  transform: translateY(-2px);
}


.cta {
  background-color: #00a9ff;
  color: white;
  padding: 1rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
}

.services {
  background-color: #f9f9f9;
  padding: 40px 20px;
}

.service-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 2rem;
}

.service-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  max-width: 300px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  color: var(--brand-blue);
  margin-bottom: 1rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin-top: 1rem;
}

input, textarea {
  padding: 0.75rem;
  margin: 0.5rem 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
}

/* NEW: style message box specifically */
textarea[name="message"] {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  color: #111;
  resize: vertical;
  min-height: 160px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: border-color 0.2s ease;
}

textarea[name="message"]:focus {
  border-color: #FFD62C;
  outline: none;
}

button {
  background-color: var(--brand-blue);
  color: var(--white);
  padding: 0.75rem;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  font-size: 1rem;
}

button:hover {
  opacity: 0.9;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #f2f2f2;
  font-size: 0.9rem;
}

article {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ccc;
}

article h2 {
  color: #00a9ff;
}

.article-hero {
  width: 70%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5rem auto;
  border-radius: 12px;
  object-fit: cover;
}

    .blog-article {
      padding: 2rem;
      max-width: 960px;
      margin: 0 auto;
    }
    .article-header {
      text-align: center;
      margin-bottom: 2rem;
    }
    .article-title {
      font-size: 2rem;
      font-weight: 700;
      color: #0e2a47;
    }
    .article-meta {
      color: #888;
      font-size: 0.9rem;
    }

    .article-content {
      font-size: 1rem;
      line-height: 1.7;
      color: #333;
    }
    .article-content h2 {
      font-size: 1.4rem;
      margin-top: 2rem;
      color: #0e2a47;
    }
    .article-content blockquote {
      font-style: italic;
      margin: 1.5rem;
      padding: 1rem;
      background: #f0f8ff;
      border-left: 4px solid #00a9ff;
    }

/* === HOW WE DELIVER RESULTS - CARD STYLING + ANIMATION === */
.how-we-deliver.card-style {
  background: #e7f1f9;
  padding: 4rem 2rem;
  font-family: 'Poppins', sans-serif;
  animation: fadeIn 1s ease-out;
}

.how-we-deliver .container {
  max-width: 1000px;
  margin: 0 auto;
  background: #ffffff;
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.how-we-deliver h2 {
  text-align: center;
  color: #0e2a47;
  font-size: 2rem;
  margin-bottom: 2rem;
  animation: fadeIn 1s ease-out;
}

.delivery-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-left: 64px; /* Ensures alignment with circle + line */
}

.circle {
  width: 48px;
  height: 48px;
  text-align: center;
  line-height: 48px;
  border-radius: 50%;
  background-color: #0e2a47;
  color: white;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}


/* Properly aligned vertical line */
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 46px; /* starts just below the circle */
  left: 23px; /* half the circle width (48px / 2) */
  height: calc(100% - 30px);
  width: 3px;
  background: #0e2a47;
  z-index: 0;
}


.content {
  margin-left: 0;
}

.content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #0e2a47;
}

.content p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin: 0;
}


/* === FADE-IN ANIMATION === */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.who-we-work-with {
  padding: 2.5rem 2rem 4rem;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.who-we-work-with h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #0e2a47;
  margin-bottom: 1rem;
}

.who-we-work-with .subheading {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #555;
  font-size: 1.1rem;
}

.industry-table {
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
}

.table-header,
.table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.table-header {
  background: #0e2a47;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
}

/* Ensure table cells with .check are flex-centered */
.table-row > div:nth-child(2),
.table-row > div:nth-child(3) {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

/* Style the checkmark circles */
.check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  background-color: transparent;
  display: inline-block;
  margin-left: 55px; /* <— shift right */
}

.check.yes {
  background-image: url('/assets/icons/check.svg');
  background-color: #32ac56;
}

.check.no {
  background-image: url('/assets/icons/x.svg');
  background-color: #FFD62C;
}

.check-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0.3rem 0;
}

/* ============= FOOTER STYLES ================ */
.site-footer {
  background-color: #0e2a47;
  color: white;
  padding: 4rem 2rem 2rem;
  font-family: 'Poppins', sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  align-items: start;
}

.footer-logo {
  width: 70px; /* or try 80px for a tighter fit */
  margin-bottom: 0.5rem; /* tighten spacing below */
}

.footer-brand p {
  font-size: 0.95rem;
  color: #e0e0e0;
}

.footer-links h4,
.footer-contact h4,
.footer-cta h4 {
  margin-bottom: 0.75rem;
  color: #ffffff;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a,
.footer-contact a {
  color: #00a9ff;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  text-decoration: underline;
}

.cta-footer {
  display: inline-block;
  background: #00a9ff;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-footer:hover {
  background: #008dd4;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #ccc;
}

#contact {
  scroll-margin-top: 100px; /* match your navbar height */
}

/* Show hamburger on small screens */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
}

/* BOOKED SOLIDITY STYLES */
.booked-solid {
  background: #f9f9f9;
  padding: 3rem 2rem;
  text-align: center;
}

.booked-solid h2 {
  font-size: 2.5rem;
  color: var(--brand-blue);
  margin-bottom: 1rem;
}

.booked-solid .intro {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: #333;
}

.solid-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.solid-item h3 {
  color: var(--brand-blue);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.solid-item p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444;
}

.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 2em;
}
.faq-question {
  background: #00a9ff;
  color: white;
  padding: 1em;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.1em;
  cursor: pointer;
  margin-bottom: 0.5em;
  border-radius: 5px;
  transition: background 0.3s ease;
}
.faq-question:hover {
  background: #008fd1;
}
.faq-answer {
  display: none;
  padding: 1em;
  background: #f0f8ff;
  border-left: 4px solid #00a9ff;
  margin-bottom: 1em;
  border-radius: 0 5px 5px 5px;
}
.faq-item.active .faq-answer {
  display: block;
}

.bonus-card {
  border: 2px dashed #00a9ff;
  background-color: #e6f7ff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 169, 255, 0.15);
  transition: transform 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-5px);
}

.bonus-card::before {
  content: "BONUS";
  position: absolute;
  top: 12px;
  right: -40px;
  background: #00a9ff;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 40px;
  transform: rotate(45deg);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

/*-- Bonus Card Content */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns on larger screens */
  gap: 2rem;
  padding: 2rem 0;
}

.blog-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card h3 {
  margin-top: 0;
  font-size: 1.25rem;
  color: #0e2a47;
}

.blog-card a {
  color: inherit;
  text-decoration: none;
}

.blog-card a:hover {
  text-decoration: underline;
}

.blog-card p {
  color: #444;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.blog-card.matched {
  outline: 2px solid #00a9ff;
  background-color: #f0fbff;
  transition: background 0.3s ease, outline 0.3s ease;
}

#smartTags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background-color: #f0f0f0;
  padding: 0.4em 0.8em;
  border-radius: 999px;
  font-size: 0.9rem;
  color: #333;
  cursor: pointer;
  transition: background 0.3s ease;
}

.tag:hover {
  background-color: #00a9ff;
  color: white;
}

#smartTags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tag {
  background-color: #f0f0f0;
  padding: 0.4em 0.8em;
  border-radius: 999px;
  font-size: 0.9rem;
  color: #333;
  cursor: pointer;
  transition: background 0.3s ease;
}

.tag:hover {
  background-color: #00a9ff;
  color: white;
}

.tag.active {
  background-color: #00a9ff;
  color: white;
  font-weight: bold;
}
.hero-proposal-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-proposal-form input[type="text"],
.hero-proposal-form button {
  font-size: 1rem;
  padding: 0.85rem 1.2rem;
  border-radius: 6px;
  border: none;
  min-width: 280px;
  width: 100%;
  box-sizing: border-box;
}

.hero-proposal-form input[type="text"] {
  line-height: 1.5;
}

.hero-proposal-form button {
  background-color: #f37a1f;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero-proposal-form button:hover {
  background-color: #d86100;
}

.form-note {
  text-align: center;
  margin-top: 1.5rem;
  color: #fff;
  font-size: 0.9rem;
  opacity: 0.85;
}

/* === SMALL SCREENS: up to 600px (mobile) === */
@media (max-width: 600px) {
  /* Blog cards */
  .blog-grid {
    grid-template-columns: 1fr;
  }

  /* Hero */
  .hero {
    padding: 2rem 1rem;
  }

  .hero-overlay h1.hero-main {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .hero-proposal-form {
    flex-direction: column;
    align-items: center;
  }

  .hero-proposal-form input[type="text"],
  .hero-proposal-form button {
    width: 90%;
    max-width: 320px;
  }

  .hero-overlay .form-note {
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.85rem;
  }

  .bonus-card::before {
    font-size: 0.6rem;
    padding: 3px 32px;
    right: -30px;
    top: 10px;
  }

  /* Navigation */
  .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row; /* ✅ horizontal layout */
    height: auto;
    padding: 10px 20px;
  }

  .logo {
    display: flex;
    align-items: center;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }

  .hamburger span {
    width: 24px;
    height: 3px;
    background-color: #000;
    border-radius: 2px;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    display: none;
    width: 100%;
    background-color: white;
    padding: 1rem 0;
    text-align: center;
  }

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

  .nav-links a {
    display: block;
    font-size: 1rem;
  }

  /* Article */
  .blog-article {
    padding: 1rem;
  }

  .article-title {
    font-size: 1.5rem;
  }

  .article-content h2 {
    font-size: 1.2rem;
  }

  /* Contact */
  .contact-grid {
    flex-direction: column;
  }

  /* Table */
  .table-header {
    display: none;
  }

  .table-row {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    text-align: center;
  }

  .table-row > div:first-child {
    margin-bottom: 0.1rem;
  }

  .check-label {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.1;
    margin: 0;
  }

  .check-label + .check-label {
    margin-top: 0;
  }

  .label {
    display: inline-block;
    min-width: 120px;
    text-align: right;
  }

  .check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px 12px;
    vertical-align: middle;
  }

  .booked-solid {
    padding: 2.5rem 1rem;
  }
}

/* === LARGE SCREENS: from 769px up === */
@media (min-width: 768px) {
  .label {
    display: none;
  }

  .navbar {
    padding: 0;
  }

  .nav-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
  }

  .logo img {
    height: 40px;
    width: auto;
  }

  .nav-links {
    display: flex !important;
    gap: 30px;
    align-items: center;
    background: none;
    padding: 0;
    margin-left: auto;
  }

  .hamburger {
    display: none;
  }

  .contact-btn {
    margin: 0;
  }
}

/* === DESKTOP FORMS: from 1024px up === */
@media (min-width: 1024px) {
  .hero-proposal-form {
    flex-direction: row;
    align-items: center;
  }

  .hero-proposal-form input[type="text"] {
    flex: 1;
    max-width: 400px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .hero-proposal-form button {
    flex-shrink: 0;
    white-space: nowrap;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 1rem 1.5rem;
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .industry-table {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .table-header {
    display: none;
  }

  .table-row {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .table-row > div:first-child {
    margin-bottom: 0.75rem;
    font-size: 1rem;
  }

  .check-label {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.3;
    margin: 0.3rem 0;
  }

  .label {
    font-weight: 600;
    min-width: 130px;
  }

  .check {
    width: 20px;
    height: 20px;
    background-size: 12px 12px;
  }
}

.offer-badge {
    display: inline-block;
    margin-bottom: var(--spacing-4);
}

.badge-text {
    background: linear-gradient(135deg, var(--error-500) 0%, var(--warning-500) 100%); /* Sets a diagonal gradient background from red to orange */
    color: #000000; /* Sets text color to white */
    padding: var(--spacing-2) var(--spacing-4); /* Top & bottom: 0.5rem, Left & right: 1rem (adds internal space around text) */
    border-radius: var(--border-radius-full); /* Makes the badge pill-shaped by applying maximum corner rounding */
    font-size: var(--font-size-sm); /* Sets a small font size (typically 0.875rem) */
    font-weight: var(--font-weight-bold); /* Makes the text bold */
    text-transform: uppercase; /* Converts text to all uppercase letters */
    letter-spacing: 0.5px; /* Adds slight spacing between letters */
    animation: pulse 2s infinite; /* Applies a looping 'pulse' animation every 2 seconds */
    margin-bottom: var(--spacing-4); /* Adds 0.5rem space below the badge */
}

