/* ============================================================
   StoriOUT - styles.css
   Design System + Component Styles
   BEM naming convention throughout
   Bootstrap 4 + Custom Responsive CSS
   ============================================================ */

/* ============================================================
   1. CSS VARIABLES — Design Tokens
   ============================================================ */
:root {
  --primary-color: #CC5600;
  --primary-hover: #e66e00;
  --secondary-color: #12122b;
  --tertiary-color: #0D0B14;
  --bg-dark: #0b0b1d;
  --bg-card: #13132a;
  --bg-card-alt: #252134;
  --text-primary: #ffffff;
  --text-secondary: #D1D5DC;
  --text-tertiary: #99A1AF;
  --text-muted: #7a7a9a;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-sm-16: 16px;
  --border-radius-lg: 20px;
  --transition: all 0.3s ease;
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-btn: 0 4px 16px rgba(255, 122, 0, 0.35);
  --font-main: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --container-max: 1200px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

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

ul { list-style: none; padding: 0; margin: 0; }

.numbered-list {
  counter-reset: item;
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.numbered-list > li {
  counter-increment: item;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
}

.numbered-list > li::before {
  content: counter(item) ". ";
  position: absolute;
  left: 0;
  font-weight: 700;
}

.numbered-sublist {
  counter-reset: subitem;
  list-style: none;
  padding-left: 0;
  margin-top: 0.75rem;
}

.numbered-sublist > li {
  counter-increment: subitem;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 0.75rem;
}

.numbered-sublist > li::before {
  content: counter(item) "." counter(subitem) ". ";
  position: absolute;
  left: 0;
  font-weight: 600;
}

.numbered-list li,
.numbered-sublist li {
  background: transparent;
  border: none;
  padding-left: 32px;
}

/* ============================================================
   3. CONTAINER
   ============================================================ */
.container {
  max-width: var(--container-max);
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* ============================================================
   4. TYPOGRAPHY — Responsive clamp()
   ============================================================ */
h1 {
  font-size: clamp(1.875rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(0.9375rem, 2vw, 1.2rem);
  font-weight: 700;
  line-height: 1.4;
}

p {
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ============================================================
   5. UTILITIES
   ============================================================ */
.section-padding { padding-top: 80px; padding-bottom: 80px; }

.text-orange , h2 .text-orange, .hero__title .text-orange{ color: var(--primary-color); }
.text-white { color: #ffffff !important; }
.text-muted-custom { color: var(--text-muted); font-size: 0.85rem; }

.section__subtitle {
  color: var(--text-tertiary);
  font-size: clamp(0.9rem, 1.5vw, 1.125rem);
  margin-top: 8px;
  margin-bottom: 0;
}

.section__header { margin-bottom: 48px; }

/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  padding: 10px 22px;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  transition: var(--transition);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn-primary-custom:hover {
  background-color: var(--primary-hover);
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 122, 0, 0.45);
  text-decoration: none;
}

.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #000000;
  color: var(--text-primary);
  font-family: var(--font-main);
  padding: 14px 20px;
  border-radius: var(--border-radius-sm-16);
  border: 1px solid #1E2939;
  transition: var(--transition);
  text-decoration: none;
}

.app-btn:hover {
  border-color: var(--primary-color);
  color: var(--text-primary);
  background-color: #1f1f40;
  text-decoration: none;
}

.app-btn__text-small {
  display: block;
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 400;
  color: var(--text-tertiary);
  line-height: 1.2;
}

.app-btn__text-main {
  display: block;
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 2px;
}

/* ============================================================
   7. NAVBAR
   ============================================================ */
.navbar {
  background-color: rgba(11, 11, 29, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 5px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  width: 75px;
  height: 75px;
  flex-shrink: 0;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
}

.navbar__nav .nav-link {
    color: var(--text-secondary);
    font-size: clamp(0.78rem, 1.1vw, 0.875rem);
    font-weight: 500;
    padding: 8px 10px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.navbar__nav-link img { width: 16px; height: 16px; }

.navbar__nav .nav-link:hover {
  color: var(--text-primary);
  background-color: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.navbar-toggler {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  padding: 6px 10px;
  background: transparent;
  color: var(--text-primary);
}

.navbar-toggler:focus { outline: none; box-shadow: none; }

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   8. HERO SECTION
   ============================================================ */
.hero {
  background-color: var(--secondary-color);
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content { padding-right: 32px; }

.hero__title { margin-bottom: 24px; color: var(--text-primary); }

.hero__description {
  color: var(--text-secondary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero__app-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0;
}

.hero__image-wrapper {
  position: relative;
  padding: 20px 10px 20px 10px;
}

.hero__image-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  aspect-ratio: 4/3;
  background-color: var(--bg-card);
}

.hero__image-card img { width: 100%; height: 100%; object-fit: cover; }

.hero__stat-badge {
  position: absolute;
  background-color: #252134;
  backdrop-filter: blur(8px);
  border: 1px solid #1E2939;
  border-radius: var(--border-radius-sm-16);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 110px;
  z-index: 2;
}
.hero__stat-badge--bottom-left p,.hero__stat-badge--top-right p{
  margin:0px;
}
.hero__stat-badge--top-right { top: 0; right: 0; }
.hero__stat-badge--bottom-left { bottom: 0; left: 0; }

.hero__stat-number {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.2;
}

.hero__stat-label {
  font-size: clamp(11px, 1vw, 14px);
  color: var(--text-tertiary);
  line-height: 1.2;
}

/* ============================================================
   9. FEATURES SECTION
   ============================================================ */
.features { background: linear-gradient(180deg, #1F1B2E 0%, #252134 100%); }

.features__content { padding-right: 48px; }
.features__title { margin-bottom: 16px; }

.features__description {
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 480px;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.features__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.features__item { display: flex; align-items: flex-start; gap: 16px; }

.features__item-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--primary-color);
  border: 1px solid rgba(255, 122, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.features__item-icon img { width: 22px; height: 22px; }

.features__item-title {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.features__item-text {
  font-size: clamp(13px, 1.5vw, 16px);
  color: var(--text-tertiary);
  font-weight: 400;
  margin: 0;
}

.features__trusted {    margin-left: 16px; display: flex; align-items: center; gap: 10px; color: var(--text-secondary); font-size: clamp(0.8rem, 1.2vw, 0.875rem); }

.features__trusted-icon {
  width: 16px;
  height: 16px;
  border: 1.67px solid #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.features__image-wrapper {
  position: relative;
  padding: 30px 10px 30px 20px;
}

.features__image-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  aspect-ratio: 4/3.2;
  background-color: var(--bg-card);
}

.features__image-card img { width: 100%; height: 100%; object-fit: cover; }

.features__stat-badge {
  position: absolute;
  background-color: #252134;
  backdrop-filter: blur(8px);
  border: 1px solid #1E2939;
  border-radius: var(--border-radius-sm-16);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.features__stat-badge--top-right { top: 0; right: 0; }
.features__stat-badge--bottom-left { bottom: 0; left: 0; }
.features__stat-badge img { width: 32px; height: 32px; }

.features__stat-badge-number {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.2;
}

.features__stat-badge-label {
  font-size: clamp(11px, 1vw, 14px);
  color: var(--text-tertiary);
  line-height: 1.2;
}

/* ============================================================
   10. HOW IT WORKS
   ============================================================ */
.how-it-works { background-color: var(--tertiary-color); }

.how-it-works__preview { position: relative; padding: 30px 0 20px 0; }

.how-it-works__preview-img {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  aspect-ratio: 4/3;
  background: linear-gradient(180deg, #252134 0%, #1F1B2E 100%);
  padding: 24px;
}

.how-it-works__preview img.main_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-sm-16);
}

.how-it-works__preview-badge {
  position: absolute;
  background-color: #252134;
  backdrop-filter: blur(8px);
  border: 1px solid #1E2939;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.how-it-works__preview-badge.bottom_left { bottom: 0; left: -5px; }
.how-it-works__preview-badge.top_right { top: 0; right: -5px; }
.how-it-works__preview-badge img { width: 24px; height: 24px; }

.how-it-works__preview-badge-text {
  font-size: clamp(0.75rem, 1vw, 0.8125rem);
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

.how-it-works__steps { display: flex; flex-direction: column; gap: 28px; }

.step-card { display: flex; align-items: flex-start; gap: 20px; transition: var(--transition); }
.step-card:hover { transform: translateX(4px); }

.step-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius-sm-16);
  background: var(--primary-color);
  box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-card__icon img { width: 26px; height: 26px; }

.step-card__title { font-size: clamp(16px, 2vw, 20px); font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.step-card__text { font-size: clamp(13px, 1.5vw, 16px); color: var(--text-tertiary); margin: 0; line-height: 1.6; }

.how-it-works__feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-top: 1px solid #1E2939;
  padding-top: 28px;
}

.feature-mini-card {
  background-color: var(--bg-card-alt);
  border-radius: var(--border-radius);
  border: 1px solid #1E2939;
  padding: 20px;
  transition: var(--transition);
}

.feature-mini-card:hover { border-color: rgba(255, 122, 0, 0.2); }
.feature-mini-card__icon-svg { margin-bottom: 8px; }
.feature-mini-card__icon-svg img { width: 28px; height: 28px; }

.feature-mini-card__title { font-size: clamp(14px, 1.5vw, 16px); font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.feature-mini-card__text { font-size: clamp(11px, 1vw, 0.75rem); color: var(--text-secondary); margin: 0; }

/* ============================================================
   12. TESTIMONIALS
   ============================================================ */
.testimonials { background-color: var(--secondary-color); }

.testimonial-card {
  background-color: var(--bg-card-alt);
  border-radius: var(--border-radius);
  border: 1px solid #1E2939;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(255, 122, 0, 0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.testimonial-card .testimonial-header { display: flex; justify-content: space-between; }
.testimonial-card .testimonial-header img { width: 35px; height: 35px; opacity: 0.1; }

.testimonial-card__stars { display: flex; gap: 3px; margin-bottom: 12px; }

.star {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url('../images/svg/star-orange.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.testimonial-card__text {
  font-size: clamp(13px, 1.5vw, 16px);
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
  margin: 0;
}

.testimonial-card__author { display: flex; align-items: center; gap: 12px; margin-top: 24px; }

.testimonial-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--bg-card-alt);
  flex-shrink: 0;
}

.testimonial-card__avatar-placeholder {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), #ff9a40);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
  object-fit: contain;
}
.testimonial-card__avatar-img{
    object-fit: cover;
}
.testimonial-card__name { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.testimonial-card__role { font-size: clamp(12px, 1vw, 14px); color: var(--text-tertiary); margin: 0; }

.testimonials__metrics {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.testimonials__metric-value { font-size: clamp(1.25rem, 2.5vw, 1.88rem); font-weight: 800; color: var(--primary-color); margin-bottom: 4px; }
.testimonials__metric-label { font-size: clamp(12px, 1vw, 14px); color: var(--text-tertiary); margin: 0; }

/* ============================================================
   13. FAQ SECTION
   ============================================================ */
.faq { 
  background: linear-gradient(180deg, #1F1B2E 0%, #252134 100%);
}
.faq .faq-inner {
  max-width: 768px;
  margin: 0 auto;
}

.faq__question[aria-expanded="true"] .faq__question-icon { transform: rotate(180deg); }
.faq__question-icon { transition: transform 0.3s ease; flex-shrink: 0; }
.faq__arrow-icon { width: 20px; height: 20px; }

.faq__item {
  border: 1px solid #1E2939;
  border-radius: 14px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq__item:hover { border-color: rgba(255, 122, 0, 0.2); }

.faq__question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  font-weight: 600;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: var(--transition);
}

button.faq__question:focus { outline: none; }
.faq__question:hover { background-color: rgba(255, 255, 255, 0.03); }

.faq__answer {
  padding: 0 24px 20px;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}
.faq__answer p{ margin: 0; }

.faq__support { text-align: center; margin-top: 40px; }
.faq__support-text { color: var(--text-tertiary); font-size: clamp(0.875rem, 1.5vw, 1rem); margin-bottom: 16px; }

/* ============================================================
   14. BLOG SECTION
   ============================================================ */
.blog { background-color: var(--secondary-color); }

.blog__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 12px;
}

.blog__view-all {
  color: var(--primary-color);
  font-size: clamp(0.8rem, 1.2vw, 0.875rem);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
  white-space: nowrap;
  margin-top: 8px;
  cursor: pointer;
}

.blog__view-all:hover {  color: var(--primary-color); gap: 8px;text-decoration: none; }

.blog-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.blog-card:hover {
  border-color: rgba(255, 122, 0, 0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.blog-card__image { aspect-ratio: 16/9; overflow: hidden; background-color: var(--bg-card-alt); position: relative; }
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card__image img { transform: scale(1.05); }

.blog-card__image.no-image { background: #F3F4F6; display: flex; align-items: center; justify-content: center; }
.blog-card__image img.gallery-img { max-width: 100px; width: 88px; height: 88px; object-fit: contain; }

.blog-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }

.blog-card__tag {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: capitalize;
  width: fit-content;
  position: absolute;
  top: 16px;
  left: 16px;
}

.blog-card__title { font-size: clamp(0.875rem, 1.5vw, 0.9375rem); font-weight: 700; color: var(--text-primary); line-height: 1.45; margin: 0; }
.blog-card__title a:hover{
  text-decoration: none;
  color: var(--text-primary);
}
.blog-card__excerpt { font-size: clamp(0.8rem, 1.2vw, 0.8375rem); color: var(--text-tertiary); line-height: 1.65; margin: 0; flex: 1; }

.blog-card__meta { display: flex; align-items: center; gap: 6px; font-size: clamp(0.75rem, 1vw, 0.8rem); color: #6A7282; padding-top: 8px; margin-top: auto; flex-wrap: wrap; }

.blog-card__read-more { color: var(--primary-color); font-size: clamp(0.75rem, 1.2vw, 0.8125rem); font-weight: 600; display: flex; align-items: center; gap: 4px; transition: var(--transition); text-decoration: none; margin-top: 4px; width: fit-content; }
.blog-card__read-more:hover { gap: 8px; color: var(--primary-color); text-decoration: none; }

/* ============================================================
   15. BLOG PAGE HEADER
   ============================================================ */
.blog-header { background-color: var(--secondary-color); text-align: center; }

.blog-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.blog-header__subtitle {
  color: var(--text-secondary);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ============================================================
   15.5 BLOG LISTING
   ============================================================ */
.blog-listing { background-color: var(--bg-dark); }

/* ============================================================
   16. FOOTER
   ============================================================ */
.footer {
  background-color: #000000;
  border-top: 1px solid #101828;
  padding-top: 64px;
  padding-bottom: 32px;
}

.footer__brand-logo { width: 48px; height: 48px; }

.footer__tagline { color: var(--text-tertiary); font-size: clamp(0.8rem, 1.2vw, 0.875rem); line-height: 1.65; margin-top: 14px; margin-bottom: 18px; }

.footer__app-buttons { display: flex; flex-direction: column; gap: 10px; max-width: 160px; }
.footer__app-buttons .app-btn { background-color: #252134; border: 1px solid #1E2939; border-radius: 10px; padding: 10px 18px; width: 138px; }
.footer__app-buttons .app-btn img { max-width: 15px; }

.footer__heading { font-size: clamp(0.8rem, 1vw, 0.875rem); font-weight: 700; color: var(--text-primary); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 20px; }

.footer__links { display: flex; flex-direction: column; gap: 10px; }

.footer__link { color: var(--text-secondary); font-size: clamp(0.8rem, 1.2vw, 0.875rem); transition: var(--transition); }
.footer__link:hover { color: var(--primary-color); padding-left: 4px; }

.footer__bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.footer__copyright { font-size: clamp(0.8rem, 1vw, 0.875rem); color: var(--text-tertiary); margin: 0; }

.footer__socials { display: flex; gap: 10px; }

.footer__social-link { width: 40px; height: 40px; border-radius: 50px; background-color: var(--bg-card-alt); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer__social-link:hover { background-color: var(--primary-color); transform: translateY(-2px); }

/* ============================================================
   16. GET IN TOUCH / CONTACT FORM
   ============================================================ */
.get-in-touch { background-color: var(--secondary-color); }

.get-in-touch__content { text-align: center; }

.get-in-touch h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.text-orange { 
  color: var(--text-primary);
 }

.get-in-touch__subtitle {
  color: var(--text-secondary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  margin-bottom: 32px;
  line-height: 1.6;
}

.form-control {
  background-color: #1E1C2A;
  border: none;
  color: #6A7282;
  padding: 12px 16px;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 0.9rem;
  transition: var(--transition);
  margin-bottom: 16px;
  min-height: 50px;
}

.form-control::placeholder {
  color: #999999;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(230, 30, 140, 0.1);
}

.btn-send {
  width: 100%;
  background-color: var(--primary-color);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-send:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
    border-color: transparent;
    padding: 0px;
    font-size: 14px;
}
.wpcf7 form.failed .wpcf7-response-output{
  color: #dc3232;
}
.wpcf7 form.sent .wpcf7-response-output{
  color: #46b450;
}
.wpcf7-form-control-wrap{
    display:block;
    width:100%;
}

.get-in-touch__form .form-control{
    width:100%;
}
.get-in-touch__form .form-control:focus{
  background-color: transparent;
  box-shadow: none;
  border: 1px solid #1E1C2A;
}
.wpcf7-spinner{
  margin: 12px 24px 0px;
}

.get-in-touch__contact-info {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border: 1px solid rgba(255, 122, 0, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.contact-value {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.contact-value:hover {
  color: var(--primary-color-hover);
}

.contact-text {
  text-align: left;
}

/* ============================================================
   17. SECTION BACKGROUNDS
   ============================================================ */
.section--dark { background: linear-gradient(180deg, #1F1B2E 0%, #252134 100%); }
.section--secondary { background-color: var(--secondary-color); }
