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

:root {
  --orange: #f77e53;
  --orange-light: #ff844b;
  --dark: #1b1b1b;
  --black: #000000;
  --gray: #6d6d6d;
  --gray-light: #5d5d5d;
  --text-dark: #454545;
  --white: #ffffff;
  --bg-light: #f6f6f6;
  --border: #d1d1d1;
  --divider: #e9eaeb;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 100px;
  border-bottom: 1px solid #000;
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.navbar-logo { height: 37px; }

.navbar-links {
  display: flex;
  gap: 45px;
  list-style: none;
}

.navbar-links a {
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
  transition: color 0.3s;
}

.navbar-links a:hover { color: var(--orange); }

.btn-getapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 25px;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s;
}

.btn-getapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(247,126,83,0.4);
}

.btn-getapp svg { width: 17px; height: 12px; fill: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 60px 100px 80px;
  min-height: 900px;
  overflow: hidden;
  text-align: center;
}

.hero-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-wave img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto 50px;
}

.hero-content h1 {
  font-family: 'Inter', sans-serif;
  font-size: 55px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
  max-width: 577px;
  margin: 0 auto;
}

.hero-phones {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.hero-phones .phone-left {
  width: 250px;
  margin-right: -40px;
  z-index: 1;
}

.hero-phones .phone-main {
  width: 340px;
  z-index: 3;
}

.hero-phones .phone-right {
  width: 250px;
  margin-left: -40px;
  z-index: 1;
}

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 80px 100px;
}

.stats-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1240px;
  margin: 0 auto;
}

.stats-text {
  flex: 0 0 400px;
}

.stats-text h2 {
  font-family: 'Inter', sans-serif;
  font-size: 38px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 12px;
}

.stats-text p {
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 30px;
}

.stats-visual {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 30px;
}

.stats-phones-img {
  max-width: 363px;
}

.stats-numbers {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.stat-item h3 {
  font-size: 22px;
  font-weight: 700;
  color: #252323;
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
}

/* ===== FEATURE SECTIONS (alternating) ===== */
.feature-section {
  padding: 0 100px 0;
  position: relative;
  overflow: hidden;
}

.feature-section .wave-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(180deg, #fef3ee 0%, #fde8de 30%, #ffffff 100%);
}

.feature-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 0;
  position: relative;
  z-index: 2;
}

.feature-inner.reverse { flex-direction: row-reverse; }

.feature-visual {
  flex: 0 0 420px;
  position: relative;
}

.feature-visual img {
  max-width: 100%;
}

.feature-visual .small-photos {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
}

.feature-visual .small-photos img {
  width: 200px;
  border-radius: 11px;
}

.feature-text {
  flex: 1;
  max-width: 625px;
}

.feature-text h2 {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 12px;
}

.feature-text > p {
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 30px;
}

.feature-list {
  list-style: none;
  margin-bottom: 30px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 15px;
}

.feature-list li .check-icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 4px;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 25px;
  font-size: 18px;
  font-weight: 500;
  color: var(--dark);
  background: transparent;
  border: 1px solid var(--orange-light);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-outline-dark:hover {
  background: rgba(247,126,83,0.08);
}

.btn-outline-dark svg { width: 17px; height: 12px; }

/* ===== WHY TEAMS LOVE IT ===== */
.why-teams {
  position: relative;
  padding: 80px 100px;
  overflow: hidden;
}

.why-teams .wave-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(180deg, #fef3ee 0%, #fde8de 30%, #ffffff 100%);
}

.why-teams-content {
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
  max-width: 625px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1240px;
  margin: 0 auto;
  border: 1px solid #000;
  border-bottom: 0;
}

.why-card {
  padding: 30px;
  border-bottom: 1px solid #000;
  position: relative;
}

.why-card:not(:nth-child(3n))::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15px;
  bottom: 15px;
  width: 1px;
  background: #000;
}

.why-card .dot-accent {
  width: 5px;
  height: 25px;
  background: var(--orange);
  position: absolute;
  left: 0;
  top: 28px;
}

.why-card-icon {
  width: 35px;
  height: 35px;
  margin-bottom: 25px;
}

.why-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.5;
}

/* ===== CHALLENGES ===== */
.challenges {
  position: relative;
  padding: 80px 100px;
  overflow: hidden;
}

.challenges .wave-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(180deg, #fef3ee 0%, #fde8de 30%, #ffffff 100%);
}

.challenges-content {
  position: relative;
  z-index: 2;
}

.challenges-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  max-width: 1240px;
  margin: 0 auto;
}

.challenges-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.challenge-item {
  padding: 18px 0;
  border-left: 1px solid #000;
  padding-left: 30px;
  position: relative;
}

.challenge-item .dot-accent {
  width: 5px;
  height: 25px;
  background: var(--orange);
  position: absolute;
  left: -3px;
  top: 18px;
}

.challenge-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 15px;
}

.challenge-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.challenge-item p {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
}

.challenges-phone {
  flex: 0 0 280px;
  display: flex;
  justify-content: center;
}

.challenges-phone img {
  max-width: 277px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 80px 100px;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 20px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: #e8e8e8;
  border-radius: 12px;
}

.testimonial-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial-info p {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
}

.testimonial-card > p {
  font-size: 16px;
  font-weight: 400;
  color: var(--gray-light);
  line-height: 1.5;
}

.testimonials-fade {
  position: relative;
}

.testimonials-fade::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(transparent, var(--white));
  pointer-events: none;
}

/* ===== FAQ ===== */
.faq {
  padding: 80px 100px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1244px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 15px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 26px;
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
}

.faq-question span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  flex: 1;
}

.faq-question svg {
  width: 14px;
  height: 6px;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s;
  stroke: var(--text-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 26px 20px;
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.5;
}

.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-item.active .faq-answer { max-height: 200px; }

/* ===== CTA ===== */
.cta {
  padding: 40px 100px 80px;
}

.cta-inner {
  background: linear-gradient(135deg, var(--orange), #ff6b3d, var(--orange-light));
  border-radius: 40px;
  padding: 70px 70px;
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.cta-text {
  flex: 1;
  z-index: 2;
}

.cta-text h2 {
  font-family: 'Inter', sans-serif;
  font-size: 45px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 12px;
}

.cta-text p {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 30px;
  max-width: 580px;
}

.cta-text .btn-getapp {
  background: linear-gradient(135deg, var(--orange), #e65c2a);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.cta-phones {
  flex: 0 0 400px;
  display: flex;
  align-items: flex-end;
  gap: -10px;
  z-index: 2;
}

.cta-phones .cta-phone-left {
  width: 200px;
  margin-right: -20px;
  z-index: 1;
}

.cta-phones .cta-phone-right {
  width: 260px;
  z-index: 2;
}

.cta-bg-shape {
  position: absolute;
  right: -50px;
  top: -50px;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  z-index: 0;
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 100px 30px;
  border-top: 1px solid #000;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand { display: flex; flex-direction: column; }

.footer-logo { height: 37px; margin-bottom: 18px; }

.footer-brand p {
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
  max-width: 356px;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 6px; }

.footer-col ul li a {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  transition: color 0.3s;
}

.footer-col ul li a:hover { color: var(--orange); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.footer-contact-item svg {
  width: 24px;
  height: 24px;
  stroke: var(--dark);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item span {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
}

.footer-newsletter h4 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

.footer-newsletter > p {
  font-size: 14px;
  font-weight: 400;
  color: #303030;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border: none;
  outline: none;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
}

.newsletter-form button {
  padding: 10px 16px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.3s;
}

.newsletter-form button:hover { background: #e56d44; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--divider);
}

.footer-bottom p {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.social-icons { display: flex; gap: 15px; }

.social-icon {
  width: 44px;
  height: 44px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.social-icon:hover { background: rgba(247,126,83,0.1); }

.social-icon svg { width: 16px; height: 16px; }

/* ===== CHECKMARK SVG ===== */
.check-icon {
  display: inline-block;
  width: 17px;
  height: 17px;
  background-image: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8.5' cy='8.5' r='7' fill='%23ff844b'/%3E%3Ccircle cx='8.5' cy='8.5' r='3' fill='%23ff844b'/%3E%3Ccircle cx='8.5' cy='8.5' r='8' stroke='%23ff844b' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

/* ===== ARROW SVG ===== */
.arrow-right {
  display: inline-block;
  width: 17px;
  height: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .navbar, .hero, .stats-section, .feature-section,
  .why-teams, .challenges, .testimonials, .faq,
  .cta, .footer { padding-left: 40px; padding-right: 40px; }

  .hero-phones .phone-main { width: 280px; }
  .hero-phones .phone-left, .hero-phones .phone-right { width: 200px; }

  .feature-visual { flex: 0 0 350px; }
  .cta-phones { flex: 0 0 340px; }
}

@media (max-width: 1024px) {
  .navbar-links { display: none; }
  .hamburger { display: flex; }

  .navbar-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 40px;
    border-bottom: 1px solid #000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .hero-content h1 { font-size: 42px; }
  .hero { min-height: 700px; }
  .hero-phones .phone-main { width: 240px; }
  .hero-phones .phone-left, .hero-phones .phone-right { width: 170px; }

  .stats-inner { flex-direction: column; }
  .stats-text { flex: 0 0 auto; }
  .stats-visual { justify-content: center; }

  .feature-inner { flex-direction: column; }
  .feature-inner.reverse { flex-direction: column; }
  .feature-visual { flex: 0 0 auto; max-width: 400px; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-card:nth-child(2n)::after { display: none; }

  .challenges-layout { flex-direction: column; }
  .challenges-phone { flex: 0 0 auto; order: -1; }

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

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-phones { flex: 0 0 auto; justify-content: center; }

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

  .section-header h2 { font-size: 38px; }
  .feature-text h2 { font-size: 38px; }
}

@media (max-width: 768px) {
  .navbar, .hero, .stats-section, .feature-section,
  .why-teams, .challenges, .testimonials, .faq,
  .cta, .footer { padding-left: 20px; padding-right: 20px; }

  .hero-content h1 { font-size: 34px; }
  .hero { min-height: auto; padding-top: 40px; padding-bottom: 40px; }
  .hero-phones .phone-main { width: 200px; }
  .hero-phones .phone-left, .hero-phones .phone-right { width: 140px; margin-left: -20px; margin-right: -20px; }

  .stats-phones-img { max-width: 250px; }

  .why-grid { grid-template-columns: 1fr; }
  .why-card::after { display: none !important; }

  .faq-grid { grid-template-columns: 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .cta-inner { padding: 40px 30px; }
  .cta-text h2 { font-size: 32px; }
  .cta-phones .cta-phone-right { width: 200px; }
  .cta-phones .cta-phone-left { width: 150px; }

  .feature-visual .small-photos {
    position: static;
    flex-direction: row;
    transform: none;
    margin-top: 20px;
  }
  .feature-visual .small-photos img { width: 150px; }

  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }

  .section-header h2 { font-size: 32px; }
  .feature-text h2 { font-size: 32px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 28px; }
  .hero-phones .phone-main { width: 170px; }
  .hero-phones .phone-left, .hero-phones .phone-right { width: 120px; }
  .section-header h2 { font-size: 28px; }
  .feature-text h2 { font-size: 28px; }
  .cta-text h2 { font-size: 26px; }
  .stats-text h2 { font-size: 30px; }
}
