/* AI Voice Agent Builder Page Styles - Modern Design */

/* Base Styles */
/* a:hover, a:active {
  color: #ffffff!important;
} */
.ai-agent-builder {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #0f172a;
  background: #fafafa;
}

/* Hero Section */
.agent-hero {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 50%, #0e7490 100%);
  color: #fff;
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.agent-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circuit-board" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M10,10 L50,10 L50,50 L10,50 Z" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23circuit-board)"/></svg>');
  opacity: 0.4;
}

.agent-hero__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.agent-hero__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 24px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.agent-hero__title {
  font-size: clamp(2.5rem, 2rem + 3vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 50%, #f0f9ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.agent-hero__subtitle {
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.agent-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.agent-hero__btn {
  display: inline-block;
  padding: 18px 36px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-width: 160px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.agent-hero__btn--primary {
  background: #ffffff;
  color: #0891b2;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border: 2px solid transparent;
}

.agent-hero__btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  background: #f8fafc;
  color: #ffffff !important;
}

.agent-hero__btn--secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
}

.agent-hero__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Hero Visual */
.agent-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.agent-builder-demo {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(25px);
  border-radius: 28px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  min-width: 320px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.agent-builder-demo__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.agent-builder-demo__title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.agent-builder-demo__status {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.agent-builder-demo__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.agent-builder-demo__step {
  text-align: center;
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
}

.agent-builder-demo__step:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.agent-builder-demo__step-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.agent-builder-demo__step-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Running Strip Section */
.ai-agent-running-strip {
  background: #ffffff;
  border-top: 1px solid rgba(215, 215, 215, 0.5);
  border-bottom: 1px solid rgba(215, 215, 215, 0.5);
  padding: clamp(20px, 2.5vw, 30px) 0;
  overflow: hidden;
  position: relative;
}

.ai-agent-running-strip__container {
  width: 100%;
  overflow: hidden;
}

.ai-agent-running-strip__track {
  display: flex;
  align-items: center;
  gap: clamp(80px, 12vw, 140px);
  animation: ai-agent-marquee-scroll 30s linear infinite;
  will-change: transform;
  width: max-content;
}

@keyframes ai-agent-marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ai-agent-running-strip__item {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 16px);
  flex-shrink: 0;
  white-space: nowrap;
}

.ai-agent-running-strip__icon {
  width: clamp(24px, 3vw, 32px);
  height: clamp(24px, 3vw, 32px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ai-agent-running-strip__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ai-agent-running-strip__text {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: clamp(20px, 2.5vw, 27px);
  color: #1F1F1F;
  white-space: nowrap;
}

/* Responsive adjustments for running strip */
@media (max-width: 900px) {
  .ai-agent-running-strip__track {
    gap: clamp(40px, 8vw, 80px);
  }
}

@media (max-width: 600px) {
  .ai-agent-running-strip__track {
    gap: clamp(30px, 6vw, 60px);
  }
  
  .ai-agent-running-strip__item {
    gap: clamp(8px, 1.2vw, 12px);
  }
}

@media (max-width: 480px) {
  .ai-agent-running-strip__track {
    gap: clamp(20px, 4vw, 40px);
  }
  
  .ai-agent-running-strip__item {
    gap: clamp(6px, 1vw, 10px);
  }
}

/* CTA Section */
.pricing-cta {
  padding: 100px 0;
  background: #000;
  background-image: url('../img/uc-cta-bg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.pricing-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.pricing-cta__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.pricing-cta__title {
  font-size: clamp(2rem, 1.2rem + 2vw, 3rem);
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 20px;
  color: #fff;
}

.pricing-cta__subtitle {
  font-size: 1.25rem;
  color: #b0b0b0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.pricing-cta__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing-cta__btn {
  display: inline-block;
  padding: 18px 24px;
  border-radius: 32px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  min-width: 180px;
}

.pricing-cta__btn--primary {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.pricing-cta__btn--primary:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.pricing-cta__btn--secondary {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
}

.pricing-cta__btn--secondary:hover {
  background: #f0f0f0;
  color: #000;
  transform: translateY(-2px);
}

/* Mobile Responsive for CTA */
@media (max-width: 768px) {
  .pricing-cta {
    padding: 60px 0;
  }
  
  .pricing-cta__title {
    font-size: 2rem;
  }
  
  .pricing-cta__buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-cta__btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .pricing-cta__btn {
    font-size: 12px;
    padding: 14px 18px;
  }
  
  .pricing-cta__title {
    font-size: 1.75rem;
  }
}

/* Features Section */
.agent-features {
  padding: 120px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
}

.agent-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots-features" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1.5" fill="rgba(6,182,212,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots-features)"/></svg>');
  opacity: 0.5;
}

.agent-features__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.agent-features__title {
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 60px;
  color: #0f172a;
}

.agent-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.agent-features__feature {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(6, 182, 212, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.agent-features__feature:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  border-color: rgba(6, 182, 212, 0.15);
}

.agent-features__feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.25);
}

.agent-features__feature h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #0f172a;
}

.agent-features__feature p {
  font-size: 16px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* How It Works Section */
.agent-how-it-works {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
}

.agent-how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons-how" width="60" height="60" patternUnits="userSpaceOnUse"><polygon points="30,0 60,17.3 60,51.9 30,69.2 0,51.9 0,17.3" fill="none" stroke="rgba(6,182,212,0.06)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons-how)"/></svg>');
  opacity: 0.4;
}

.agent-how-it-works__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.agent-how-it-works__title {
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 60px;
  color: #0f172a;
}

.agent-how-it-works__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.agent-how-it-works__step {
  background: #f8fafc;
  padding: 40px 32px;
  border-radius: 24px;
  text-align: center;
  border: 1px solid rgba(6, 182, 212, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.agent-how-it-works__step:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  border-color: rgba(6, 182, 212, 0.15);
}

.agent-how-it-works__step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.25);
}

.agent-how-it-works__step h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #0f172a;
}

.agent-how-it-works__step p {
  font-size: 16px;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 24px;
}

.agent-how-it-works__step-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.agent-how-it-works__step-features span {
  background: rgba(6, 182, 212, 0.1);
  color: #0891b2;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

/* Templates Section */
.agent-templates {
  padding: 120px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
}

.agent-templates::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="waves-templates" width="100" height="30" patternUnits="userSpaceOnUse"><path d="M0,15 Q25,5 50,15 T100,15" fill="none" stroke="rgba(6,182,212,0.06)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23waves-templates)"/></svg>');
  opacity: 0.4;
}

.agent-templates__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.agent-templates__title {
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #0f172a;
}

.agent-templates__subtitle {
  font-size: clamp(1.1rem, 1rem + 0.3vw, 1.25rem);
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.agent-templates__template {
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(6, 182, 212, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.agent-templates__template:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  border-color: rgba(6, 182, 212, 0.15);
}

.agent-templates__template-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.agent-templates__template h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #0f172a;
}

.agent-templates__template p {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 20px;
}

.agent-templates__template-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 24px;
}

.agent-templates__template-features span {
  background: rgba(6, 182, 212, 0.1);
  color: #0891b2;
  padding: 4px 10px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 500;
}

.agent-templates__template-btn {
  display: inline-block;
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  color: #fff;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.agent-templates__template-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
}

/* Capabilities Section */
.agent-capabilities {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
}

.agent-capabilities::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars-capabilities" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(6,182,212,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars-capabilities)"/></svg>');
  opacity: 0.4;
}

.agent-capabilities__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.agent-capabilities__title {
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 60px;
  color: #0f172a;
}

.agent-capabilities__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.agent-capabilities__capability {
  background: #f8fafc;
  padding: 40px 32px;
  border-radius: 24px;
  text-align: center;
  border: 1px solid rgba(6, 182, 212, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.agent-capabilities__capability:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  border-color: rgba(6, 182, 212, 0.15);
}

.agent-capabilities__capability-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.agent-capabilities__capability h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #0f172a;
}

.agent-capabilities__capability p {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* CTA Section */
.agent-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 50%, #0e7490 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.agent-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circles-cta" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="3" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23circles-cta)"/></svg>');
  opacity: 0.4;
}

.agent-cta__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.agent-cta__title {
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #fff;
}

.agent-cta__subtitle {
  font-size: clamp(1.1rem, 1rem + 0.3vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.agent-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.agent-cta__btn {
  display: inline-block;
  padding: 18px 36px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-width: 160px;
  text-align: center;
}

.agent-cta__btn--primary {
  background: #ffffff;
  color: #0891b2;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border: 2px solid transparent;
}

.agent-cta__btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  background: #f8fafc;
  color: #0e7490;
}

.agent-cta__btn--secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
}

.agent-cta__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .agent-hero__container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .agent-features__grid,
  .agent-how-it-works__steps,
  .agent-templates__grid,
  .agent-capabilities__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .agent-hero,
  .agent-features,
  .agent-how-it-works,
  .agent-templates,
  .agent-capabilities,
  .agent-cta {
    padding: 80px 0;
  }
  
  .agent-hero__actions {
    justify-content: center;
  }
  
  .agent-hero__btn {
    min-width: 140px;
    padding: 14px 24px;
    font-size: 13px;
  }
  
  .agent-cta__buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .agent-cta__btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .agent-hero,
  .agent-features,
  .agent-how-it-works,
  .agent-templates,
  .agent-capabilities,
  .agent-cta {
    padding: 60px 0;
  }
  
  .agent-hero__container,
  .agent-features__container,
  .agent-how-it-works__container,
  .agent-templates__container,
  .agent-capabilities__container,
  .agent-cta__container {
    padding: 0 16px;
  }
  
  .agent-hero__title,
  .agent-features__title,
  .agent-how-it-works__title,
  .agent-templates__title,
  .agent-capabilities__title,
  .agent-cta__title {
    font-size: 2rem;
  }
  
  .agent-builder-demo {
    min-width: 280px;
    padding: 24px;
  }
  
  .agent-builder-demo__step-icon {
    font-size: 28px;
  }
} 