/* ==========================================================================
   CurlSek AI - Main CSS Styles
   ========================================================================== */

/* ==========================================================================
   CSS Custom Properties - CurlSek Brand Colors
   ========================================================================== */

/* Font Face Declarations - Update these paths to match your font files location */
@font-face {
  font-family: 'geomanist';
  src: url('../fonts/geomanist.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'geomanist-book';
  src: url('../fonts/geomanist-book.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  /* CurlSek Brand Colors - Vibrant & Professional */
  --color-bg-light: #FFFFFF;          /* Pure white background */
  --color-bg-secondary: #EFE9E9;      /* Brand white/light sections */
  --color-primary-pink: #E128AC;      /* Electric Pink - primary brand */
  --color-accent-orange: #FD6230;     /* Tech Orange - energy & innovation */
  --color-accent-purple: #9213F1;     /* Purple - premium & tech */
  --color-text-dark: #2B2B2B;         /* Dark grey text */
  --color-text-light: #6B7280;        /* Medium gray text */
  --color-border: #E5E7EB;            /* Light borders */
  
  /* Gradient Combinations for Visual Impact */
  --gradient-primary: linear-gradient(135deg, #E128AC 0%, #9213F1 100%);
  --gradient-secondary: linear-gradient(135deg, #FD6230 0%, #E128AC 100%);
  --gradient-accent: linear-gradient(135deg, #9213F1 0%, #FD6230 100%);
  
  /* Typography */
  --font-family: 'geomanist', ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-headings: 'geomanist-book', ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-size-base: 16px;
  --line-height-base: 1.6;
  
  /* Spacing Scale */
  --space-xs: 0.25rem;   /* 4px */
  --space-sm: 0.5rem;    /* 8px */
  --space-md: 1rem;      /* 16px */
  --space-lg: 2rem;      /* 32px */
  --space-xl: 4rem;      /* 64px */
  
  /* Breakpoints */
  --breakpoint-mobile: 768px;
  --breakpoint-desktop: 1200px;
  
  /* Container */
  --container-max-width: 1200px;
  --container-padding: 4rem;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

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

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  line-height: var(--line-height-base);
  color: var(--color-text-dark);
  background-color: var(--color-bg-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   Typography
   ========================================================================== */

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

h1 {
  font-size: 3rem;
  line-height: 1.1;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
}

a {
  color: var(--color-primary-pink);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: var(--color-accent-purple);
  text-decoration: underline;
}

/* ==========================================================================
   Layout Components
   ========================================================================== */

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 0;
}

/* ==========================================================================
   Button Components
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 48px;
}

.btn--primary {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
}

.btn--primary:hover,
.btn--primary:focus {
  background: var(--gradient-secondary);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(225, 40, 172, 0.3);
}

.btn--secondary {
  background: transparent;
  color: var(--color-primary-pink);
  border-color: var(--color-primary-pink);
}

.btn--secondary:hover,
.btn--secondary:focus {
  background: var(--color-primary-pink);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(225, 40, 172, 0.2);
}

.btn--large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* ==========================================================================
   Suite Overview Section
   ========================================================================== */

.suite-overview {
  padding: var(--space-xl) 0;
  background-color: var(--color-bg-light);
}

.suite-overview__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.suite-overview__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.suite-overview__title {
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.suite-overview__description {
  font-size: 1.125rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

.suite-overview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

/* Service Card Component */
.service-card {
  background: white;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(225, 40, 172, 0.15);
  border-color: var(--color-primary-pink);
}

.service-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(225, 40, 172, 0.1) 0%, rgba(146, 19, 241, 0.1) 100%);
  border-radius: 20px;
  flex-shrink: 0;
}

.service-card__image {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.service-card__title {
  color: var(--color-text-dark);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  min-height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__description {
  color: var(--color-text-light);
  margin-bottom: 0;
  line-height: 1.6;
  font-size: 0.95rem;
  flex-grow: 1;
  display: flex;
  align-items: center;
}



/* ==========================================================================
   Why CurlSek Section
   ========================================================================== */

.why-curlsek {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, rgba(225, 40, 172, 0.02) 0%, rgba(146, 19, 241, 0.02) 100%);
}

.why-curlsek__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.why-curlsek__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.why-curlsek__title {
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-curlsek__description {
  font-size: 1.125rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

.why-curlsek__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

/* Value Card Component */
.value-card {
  background: white;
  border-radius: 16px;
  padding: var(--space-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  text-align: center;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(253, 98, 48, 0.15);
  border-color: var(--color-accent-orange);
}

.value-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(253, 98, 48, 0.1) 0%, rgba(225, 40, 172, 0.1) 100%);
  border-radius: 20px;
}

.value-card__image {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.value-card__title {
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
  font-size: 1.25rem;
}

.value-card__description {
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ==========================================================================
   CurlSek Advantage Section
   ========================================================================== */

.curlsek-advantage {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, rgba(225, 40, 172, 0.03) 0%, rgba(146, 19, 241, 0.02) 100%);
  position: relative;
}

.curlsek-advantage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(225, 40, 172, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(146, 19, 241, 0.04) 0%, transparent 50%);
  z-index: 1;
}

.curlsek-advantage__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 2;
}

.curlsek-advantage__content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.curlsek-advantage__title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
  background: linear-gradient(135deg, var(--color-primary-pink) 0%, var(--color-accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.curlsek-advantage__description {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--color-text-light);
  max-width: 800px;
  margin: 0 auto;
  font-weight: 400;
}

/* Responsive styles for CurlSek Advantage */
@media (max-width: 768px) {
  .curlsek-advantage__title {
    font-size: 2.5rem;
  }
  
  .curlsek-advantage__description {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .curlsek-advantage__title {
    font-size: 2rem;
    margin-bottom: var(--space-md);
  }
  
  .curlsek-advantage__description {
    font-size: 1.1rem;
  }
}

/* ==========================================================================
   Statistics Counter Section
   ========================================================================== */

.stats-counter {
  padding: var(--space-xl) 0;
  background: var(--gradient-primary);
  color: white;
}

.stats-counter__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.stats-counter__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  text-align: center;
}

.stat-item__number {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.stat-item__label {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* ==========================================================================
   Agent Showcase Section
   ========================================================================== */

/* ==========================================================================
   Demo Showcase Section - Clean & Consistent Design
   ========================================================================== */
.demo-showcase {
  padding: var(--space-lg) 0;
  background: var(--color-bg-light);
  position: relative;
}

.demo-showcase__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
}

.demo-showcase__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.demo-showcase__header {
  margin-bottom: var(--space-lg);
  max-width: 800px;
}

.demo-showcase__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: linear-gradient(135deg, var(--color-primary-pink), var(--color-accent-purple));
  color: white;
  padding: var(--space-sm) var(--space-md);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  box-shadow: 0 4px 20px rgba(225, 40, 172, 0.2);

}

.demo-showcase__badge-icon {
  font-size: 1rem;
}

.demo-showcase__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  padding-top: 20px;
}

.demo-showcase__description {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 0;
}

.demo-showcase__image-container {
  position: relative;
  margin: var(--space-lg) 0;
  width: 100%;
  max-width: 1000px;
}

.demo-showcase__image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(225, 40, 172, 0.1);
  background: white;
  padding: 8px;
}

.demo-showcase__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.demo-showcase__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
  cursor: pointer;
}

.demo-showcase__image-wrapper:hover .demo-showcase__overlay {
  opacity: 1;
}

.demo-showcase__image-wrapper:hover .demo-showcase__image {
  transform: scale(1.02);
}

.demo-showcase__preview-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
}

.demo-showcase__play-icon {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 4px 20px rgba(225, 40, 172, 0.3));
  transition: transform 0.3s ease;
}

.demo-showcase__preview-btn:hover .demo-showcase__play-icon {
  transform: scale(1.1);
}

.demo-showcase__preview-text {
  color: white;
  font-weight: 600;
  font-size: 1.125rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.demo-showcase__cta {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .demo-showcase {
    padding: var(--space-lg) 0;
  }
  
  .demo-showcase__title {
    font-size: 2rem;
  }
  
  .demo-showcase__description {
    font-size: 1rem;
  }
  
  .demo-showcase__image-container {
    margin: var(--space-md) 0;
  }
  
  .demo-showcase__image-wrapper {
    border-radius: 12px;
    padding: 4px;
  }
  
  .demo-showcase__image {
    border-radius: 8px;
  }
  
  .demo-showcase__play-icon {
    width: 60px;
    height: 60px;
  }
  
  .demo-showcase__preview-text {
    font-size: 1rem;
  }
  
  .demo-showcase__cta {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    width: 100%;
    max-width: 300px;
  }
  
  .demo-showcase__cta .btn {
    width: 100%;
    text-align: center;
  }
}
/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
  :root {
    --container-padding: 1.5rem;
  }
  
  .why-curlsek__grid {
    gap: var(--space-md);
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
    --space-xl: 3rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .suite-overview__grid,
  .why-curlsek__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .stats-counter__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .stat-item__number {
    font-size: 2.5rem;
  }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.text-center {
  text-align: center;
}

.text-gradient-primary {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-secondary {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
