﻿/* TYPOGRAPHY SCALE */
:root {
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.5rem;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 5rem;
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.09);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.11);
  --color-primary: #2A7BFF;
  --color-primary-dark: #7B3FE4;
  --color-secondary: #22C1DC;
  --color-text: #2E2E2E;
  --color-text-secondary: #6B7280;
  --color-bg-light: #F7F9FC;
  --color-border: #e5e7eb;
  --brand-gradient: linear-gradient(135deg, #22C1DC, #2A7BFF, #7B3FE4, #FF4FA3);
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(135deg, #22C1DC 0%, #2A7BFF 35%, #7B3FE4 70%, #FF4FA3 100%);
  padding: var(--spacing-2xl) 0;
  position: relative;
  overflow: hidden;
}

.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  width: fit-content;
  backdrop-filter: blur(10px);
  animation: slideInDown 0.8s ease-out;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text h1 {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.hero-animate {
  animation: slideInDown 0.8s ease-out 0.1s both;
}

.hero-text h2 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--spacing-md);
  line-height: 1.4;
}

.hero-animate-delay {
  animation: slideInDown 0.8s ease-out 0.2s both;
}

.hero-description {
  display: none;
}

.hero-trust {
  display: none;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  animation: slideInDown 0.8s ease-out 0.5s both;
}

.btn-pulse {
  position: relative;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 6px 20px rgba(42, 123, 255, 0.35);
  }

  50% {
    box-shadow: 0 8px 30px rgba(123, 63, 228, 0.45);
  }
}

.image-wrapper {
  position: relative;
  animation: slideInUp 0.8s ease-out 0.3s both;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.02);
}

/* FEATURES SECTION */
.features-section {
  background: #fff;
  padding: var(--spacing-2xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.section-header h2 {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--spacing-md);
}

.section-header p {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-lg);
}

.feature-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  border-color: #2A7BFF;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #22C1DC, #2A7BFF, #7B3FE4);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  flex-shrink: 0;
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #fff;
  stroke-width: 2;
}

.feature-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--spacing-sm);
}

.feature-card p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

/* ALL FEATURES SECTION */
.all-features-section {
  background: var(--color-bg-light);
  padding: var(--spacing-2xl) 0;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.feature-item {
  background: #fff;
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid #2A7BFF;
  transition: all 0.3s ease;
}

.feature-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.feature-item h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--spacing-sm);
}

.feature-item p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  padding: var(--spacing-2xl) 0;
  text-align: center;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.cta-content h2 {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--spacing-md);
}

.cta-content p {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto var(--spacing-lg);
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* SMART CHOICE SECTION (Premium Refinement) */
.hero-info-section {
  background: linear-gradient(135deg, #f8fafc 0%, #eef4ff 100%);
  padding: 80px 0;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.info-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.info-heading {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #0f172a;
  /* Fallback */
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.2;
}

.info-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Feature Grid Layout */
.info-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 0 var(--spacing-sm);
}

/* Premium SaaS Card Design */
.feature-card-modern {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Left aligned */
  text-align: left;
  /* Left aligned text */
  gap: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

/* Top Border Highlight on Hover */
.feature-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #22C1DC, #2A7BFF, #7B3FE4, #FF4FA3);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

/* Hover Effects */
.feature-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-card-modern:hover::before {
  transform: scaleX(1);
}

/* Square Icon Box Design */
.modern-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2A7BFF 0%, #7B3FE4 100%);
  /* Brand Blue Gradient */
  color: #ffffff;
  margin-bottom: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
  transition: all 0.3s ease;
}

/* Variant Icon Colors */
.feature-card-modern:nth-child(2n) .modern-icon-wrapper {
  background: linear-gradient(135deg, #22C1DC, #2A7BFF, #7B3FE4, #FF4FA3);
  /* Brand Orange Gradient */
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.2);
}

.feature-card-modern:nth-child(3n) .modern-icon-wrapper {
  background: linear-gradient(135deg, #059669 0%, #059669 100%);
  /* Green Gradient */
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.feature-card-modern:hover .modern-icon-wrapper {
  transform: scale(1.05) rotate(3deg);
}

.modern-icon-wrapper svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
}

/* Text Content */
.feature-card-modern h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.feature-card-modern p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Premium Badge */
.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #fffbeb;
  color: #b45309;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 9999px;
  /* Pill shape */
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid #fcd34d;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card-modern {
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
}

.feature-card-modern:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-card-modern:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-card-modern:nth-child(3) {
  animation-delay: 0.3s;
}

.feature-card-modern:nth-child(4) {
  animation-delay: 0.4s;
}

.feature-card-modern:nth-child(5) {
  animation-delay: 0.5s;
}

.feature-card-modern:nth-child(6) {
  animation-delay: 0.6s;
}

.feature-card-modern:nth-child(7) {
  animation-delay: 0.7s;
}

.feature-card-modern:nth-child(8) {
  animation-delay: 0.8s;
}

.feature-card-modern:nth-child(9) {
  animation-delay: 0.9s;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .info-trust {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .info-heading {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .info-trust {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card-modern {
    padding: 25px;
  }

  .info-heading {
    font-size: 1.75rem;
  }

  .card-badge {
    top: 15px;
    right: 15px;
    font-size: 0.7rem;
    padding: 4px 10px;
  }
}

/* BUTTON STYLES */
.btn-primary {
  background: linear-gradient(135deg, #22C1DC, #2A7BFF, #7B3FE4, #FF4FA3);
  color: #fff;
  padding: 1.25rem 2.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  box-shadow: 0 6px 20px rgba(239, 84, 80, 0.35);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: var(--text-base);
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 30px rgba(42, 123, 255, 0.4);
}

.btn-secondary {
  background: #fff;
  color: #2A7BFF;
  padding: 1.25rem 2.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: var(--text-base);
  letter-spacing: 0.5px;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}


.why-section {
  background: #fff;
  padding: var(--spacing-2xl) 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.why-card {
  background: var(--color-bg-light);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s ease;
}

.why-card:hover {
  background: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.why-number {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #22C1DC 0%, #2A7BFF 35%, #7B3FE4 70%, #FF4FA3 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  font-weight: 800;
  margin: 0 auto var(--spacing-md);
}

.why-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--spacing-sm);
}

.why-card p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.footer-seo {
  background: var(--color-bg-light);
  padding: var(--spacing-lg) 0;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.footer-seo p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* FOOTER SEO SECTION */
.footer-seo-section {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  padding: var(--spacing-2xl) 0;
  border-top: 1px solid var(--color-border);
}

.footer-seo-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.footer-seo-heading {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--spacing-md);
}

.footer-seo-description {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--spacing-2xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.footer-seo-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.highlight-item {
  background: #fff;
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.highlight-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.highlight-label {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
}

.highlight-text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .hero-text h1 {
    font-size: var(--text-3xl);
  }

  .hero-text h2 {
    font-size: var(--text-base);
  }

  .hero-description {
    font-size: var(--text-xs);
  }

  .section-header h2 {
    font-size: var(--text-3xl);
  }

  .cta-content h2 {
    font-size: var(--text-3xl);
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
