/* Inter — latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Inter — latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Outfit — latin-ext */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('../assets/fonts/outfit-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Outfit — latin */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('../assets/fonts/outfit-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Material Symbols Rounded — subset (chat_bubble, close, smart_toy, send) */
@font-face {
  font-family: 'Material Symbols Rounded';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('../assets/fonts/material-symbols-rounded-subset.woff2') format('woff2');
  unicode-range: U+20, U+5f, U+61-65, U+68, U+6c-6f, U+72-75, U+79;
}
.material-symbols-rounded {
  font-family: 'Material Symbols Rounded';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

:root {
  --primary-color: #00e9b0;
  --primary-light: #e7f7e7;
  --primary-dark: #00bf90; /* Darker shade for hover states or emphasis */
  --text-dark: #10262a;
  --text-muted: #4a5a5d;
  --background-light: #ffffff;
  --background-off-white: #f8fcfb; /* Very subtle tint */
  --white: #ffffff;
  --font-heading: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 10px 24px -12px rgba(16, 38, 42, 0.14);
  --shadow-hover: 0 12px 28px -14px rgba(16, 38, 42, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.7;
  background-color: var(--background-off-white);
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 1001;
  background: var(--primary-color);
  color: var(--text-dark);
  padding: 0.75rem 1rem;
  border-radius: 8px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  outline: 2px solid var(--primary-dark);
  outline-offset: 2px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

.btn {
  display: inline-block;
  padding: 12px 22px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-dark);
}

.btn-primary:hover {
  background-color: #00d4a0;
  box-shadow: 0 8px 18px rgba(0, 233, 176, 0.25);
}

.btn:focus-visible {
  outline: 3px solid rgba(0, 233, 176, 0.5);
  outline-offset: 3px;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  /* Removed absolute positioning hacks */
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent; /* Transparent by default */
  padding: 0.85rem 0;
  transition: all 0.3s ease; /* Smooth transition */
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); /* Optional shadow for depth */
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
}

.logo img {
  height: 32px; /* Adjusted size to fit nicely */
  width: auto;
}

.nav-links {
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem 1.5rem 2rem;
  margin: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

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

.nav-links a {
  font-weight: 600;
  color: var(--text-dark);
}

.nav-links a:not(.btn):hover {
  color: var(--primary-dark);
}

.mobile-menu-btn {
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-dark);
  transition: var(--transition);
}

/* Hero Section */

#bg-canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}

.hero {
  position: relative;
  padding: 120px 0 88px;
  text-align: center;
  overflow: hidden;
}

.hero-headline {
  font-size: clamp(2.1rem, 5vw, 3.1rem);
  margin-bottom: 1.1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.03em;
}

.hero-subheadline {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 2.2rem;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.cta-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Features Section */
.features {
  padding: 84px 0;
  background-color: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 14px;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--primary-color);
  transition: var(--transition);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

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

/* Process Section */
.process {
  padding: 84px 0;
  background-color: var(--background-off-white);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 14px;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: var(--transition);
  border: 1px solid var(--primary-color);
  box-shadow: var(--shadow-hover); /* Added shadow to match feature-card */
}

/* Removed alternating background tints to match "Why Choose Enarra" box style strictly */
.step-card:nth-child(even) {
  background-color: var(--white);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(0, 233, 176, 0.5); /* Keep original color */
  line-height: 1;
}

/* Ensure step number color is consistent since we removed the dark tint background */
.step-card:nth-child(even) .step-number {
  color: rgba(0, 233, 176, 0.5);
}

.step-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.step-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Services Section (What We Automate) */
.services {
  padding: 84px 0;
  background-color: var(--white);
}

.service-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
  padding: 0;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
  padding: 1.35rem 1.25rem;
  background-color: #f1f7f4;
  border-radius: 12px;
  border: 1px solid var(--primary-color);
  box-shadow: var(--shadow-hover);
  transition: var(--transition);
}

.check-icon {
  flex-shrink: 0;
  color: var(--primary-dark);
}

/* FAQ Section */
.faq {
  padding: 84px 0;
  background-color: #f7faf9;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1.5rem 1.75rem;
  background-color: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(0, 233, 176, 0.25);
  box-shadow: var(--shadow-hover);
}

.faq-item dt {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.faq-item dd {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* CTA Section */
.cta {
  padding: 84px 0;
  background-color: #0f1f23;
  color: var(--white);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* Hidden Testimonials */
.hidden {
  display: none;
}

/* Footer */
footer {
  padding: 72px 0 36px;
  background-color: var(--background-off-white);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
  margin-bottom: 4rem;
}

.footer-col h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.social-icon {
  width: 24px;
  height: 24px;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-icon:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

.footer-note {
  margin-top: 0.5rem;
  opacity: 0.7;
}

/* ==============================================
   Additional section styles
   ============================================== */

/* Button variants */
.btn-secondary {
  background-color: transparent;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
}

.btn-secondary:hover {
  background-color: var(--text-dark);
  color: var(--white);
  box-shadow: none;
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.8);
}

/* Section intro text (subheading below section title) */
.section-intro {
  text-align: center;
  color: var(--text-muted);
  max-width: 680px;
  margin: -1.75rem auto 2.75rem;
  font-size: 1rem;
  line-height: 1.7;
}

/* Common Problems */
.problems {
  padding: 84px 0;
  background-color: var(--white);
}

.problems-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.problem-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background-color: var(--background-off-white);
  border-radius: 12px;
  border: 1px solid rgba(0, 233, 176, 0.2);
  transition: var(--transition);
}

.problem-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-card h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Who We Help */
.who-we-help {
  padding: 84px 0;
  background-color: var(--background-off-white);
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.who-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1.25rem;
}

.who-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.75;
}

.who-aside {
  background-color: var(--white);
  border-radius: 14px;
  padding: 1.75rem;
  border: 1px solid rgba(0, 233, 176, 0.25);
  box-shadow: var(--shadow);
}

.who-aside h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.who-tools {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
}

.who-tools li {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--primary-light);
}

.who-tools li:last-child {
  border-bottom: none;
}

.who-aside-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
}

/* Start Small */
.start-small {
  padding: 84px 0;
  background-color: #f7faf9;
}

.start-small-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.start-small-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1.5rem;
}

.start-small-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.75;
}

.start-small-content .btn {
  margin-top: 1rem;
}

/* Where Automation Helps */
.automation-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.automation-card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.automation-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}

.automation-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* AI Without the Hype */
.ai-hype {
  padding: 84px 0;
  background-color: #0f1f23;
  color: var(--white);
}

.ai-hype-content {
  max-width: 760px;
  margin: 0 auto;
}

.ai-hype h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1.5rem;
}

.ai-hype p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.ai-points {
  list-style: none;
  padding: 1.5rem 0 0;
  margin: 1.5rem 0 0;
  border-top: 1px solid rgba(0, 233, 176, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ai-points li {
  font-size: 0.975rem;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.65;
}

.ai-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

/* Why Enarra */
.why-enarra {
  padding: 84px 0;
  background-color: var(--white);
}

.why-enarra-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.why-enarra h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1.5rem;
}

.why-enarra p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.why-enarra p:last-child {
  margin-bottom: 0;
}

/* Example Workflows */
.workflows {
  padding: 84px 0;
  background-color: var(--background-off-white);
}

.workflow-disclaimer {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: -1.75rem auto 2.75rem;
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 233, 176, 0.06);
  border: 1px solid rgba(0, 233, 176, 0.2);
  border-radius: 8px;
  font-style: italic;
}

.workflow-disclaimer a {
  font-style: normal;
  font-weight: 600;
  color: #00795e;
}

.workflow-disclaimer a:hover,
.workflow-disclaimer a:focus-visible {
  text-decoration: underline;
}

.workflows-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.workflow-card {
  background: var(--white);
  border-radius: 14px;
  padding: 1.75rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
}

.workflow-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-color);
}

.workflow-card dl {
  margin: 0;
}

.workflow-card dt {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary-dark);
  margin-top: 1rem;
  margin-bottom: 0.3rem;
}

.workflow-card dt:first-of-type {
  margin-top: 0;
}

.workflow-card dd {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Insights Preview */
.insights-preview {
  padding: 84px 0;
  background-color: #f7faf9;
}

.insights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.insights-card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: 14px;
  padding: 1.75rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: var(--transition);
}

.insights-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}

.insights-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.insights-coming-soon {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-dark);
  background-color: var(--primary-light);
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.insights-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

/* CTA section buttons row */
.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Responsive - up */
@media (min-width: 640px) {
  .hero {
    padding: 140px 0 104px;
  }

  .section-title {
    font-size: clamp(2.1rem, 3vw, 2.8rem);
  }
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    padding: 0;
    box-shadow: none;
    background: transparent;
  }

  .nav-links li:last-child {
    margin-left: 0.5rem;
  }

  .nav-links button {
    padding: 12px 22px;
    border-radius: 8px;
  }

  .mobile-menu-btn {
    display: none;
  }

  .hero-subheadline {
    font-size: 1.08rem;
  }

  .features-grid,
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card,
  .step-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow);
  }

  .feature-card:hover,
  .step-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
  }

  .service-list li {
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow);
  }

  .service-list li:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 170px 0 116px;
  }

  .features-grid {
    gap: 2rem;
  }

  .process-steps {
    gap: 2rem;
  }

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

/* Responsive additions for new sections */
@media (min-width: 640px) {
  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-cta {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .who-grid {
    grid-template-columns: 1fr 300px;
    align-items: start;
  }

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

  .automation-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
  }

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

  .workflow-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
  }

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

  .insights-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
  }
}

@media (min-width: 1024px) {
  .automation-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .insights-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
