/* FixIt Fashion — Professional Website Styles */
:root {
  --primary: #2D6A4F;
  --primary-dark: #1B4332;
  --primary-light: #D8F3DC;
  --primary-gradient: linear-gradient(135deg, #2D6A4F 0%, #40916C 50%, #52B788 100%);
  --secondary: #52B788;
  --accent: #F4A261;
  --accent-dark: #E76F51;
  --accent-light: #FFF1E6;
  --bg: #FFFFFF;
  --card: #FFFFFF;
  --text: #1B1B1B;
  --text-light: #57534E;
  --text-muted: #A8A29E;
  --border: #E7E5E4;
  --success: #22C55E;
  --glass: rgba(255,255,255,0.7);
  --glass-border: rgba(255,255,255,0.3);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-green: 0 8px 30px rgba(45,106,79,0.2);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── NAVBAR ─── */
.navbar {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
  padding-top: 20px;
  padding-bottom: 10px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.3px;
}
.nav-logo:hover { text-decoration: none; }
.nav-logo img {
  height: 150px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); text-decoration: none; }
.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: all 0.2s;
  box-shadow: var(--shadow-green);
}
.nav-cta:hover { background: var(--primary-dark) !important; transform: translateY(-1px); }
.mobile-menu { display: none; cursor: pointer; font-size: 24px; background: none; border: none; color: var(--text); }

/* ─── HERO ─── */
.hero {
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' width='60' height='60'%3E%3Cline x1='68' y1='28' x2='52' y2='92' stroke='%232D6A4F' stroke-width='3' stroke-linecap='round'/%3E%3Cellipse cx='67' cy='32' rx='2.5' ry='4' fill='none' stroke='%232D6A4F' stroke-width='1.5'/%3E%3Cpath d='M67,28 Q82,38 72,50 Q62,62 75,72 Q82,78 78,85' fill='none' stroke='%23F4A261' stroke-width='2.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-light), #B7E4C7);
  color: var(--primary-dark);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 18px;
  letter-spacing: -2px;
}
.hero h1 span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 19px;
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--primary-gradient);
  color: #fff;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(45,106,79,0.3); text-decoration: none; color: #fff; }
.btn-secondary {
  background: var(--card);
  color: var(--text);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; transform: translateY(-1px); }

/* Phone Mockups */
.hero-phones {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  gap: 16px;
  perspective: 1200px;
}
.phone {
  width: 220px;
  height: 440px;
  background: #111;
  border-radius: 28px;
  padding: 8px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.1) inset;
  transition: transform 0.4s ease;
}
.phone-left { transform: rotateY(8deg) translateY(12px); }
.phone-center { transform: translateY(-8px) scale(1.05); z-index: 2; box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.phone-right { transform: rotateY(-8deg) translateY(12px); }
.phone:hover { transform: translateY(-12px) scale(1.02); }
.phone-center:hover { transform: translateY(-16px) scale(1.07); }
.phone-notch {
  width: 80px;
  height: 6px;
  background: #333;
  border-radius: 3px;
  margin: 4px auto 6px;
}
.phone-screen {
  background: var(--bg);
  border-radius: 20px;
  height: calc(100% - 16px);
  padding: 14px;
  overflow: hidden;
}
/* Mock UI elements */
.mock-header { margin-bottom: 14px; }
.mock-logo { font-size: 13px; font-weight: 800; color: var(--primary); }
.mock-scan-btn {
  background: var(--primary-gradient);
  border-radius: 16px;
  padding: 20px 14px;
  text-align: center;
  margin-bottom: 12px;
}
.mock-scan-icon { font-size: 28px; display: block; margin-bottom: 6px; }
.mock-scan-text { font-size: 14px; font-weight: 700; color: #fff; display: block; }
.mock-scan-sub { font-size: 10px; color: rgba(255,255,255,0.7); display: block; margin-top: 2px; }
.mock-chips { display: flex; gap: 4px; flex-wrap: wrap; }
.mock-chip {
  font-size: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px 8px;
  font-weight: 600;
}
.mock-result-header {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  color: var(--text);
}
.mock-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 6px;
  background: var(--card);
  border-left: 3px solid;
}
.mock-card-green { border-left-color: var(--primary); }
.mock-card-orange { border-left-color: var(--accent); }
.mock-card-blue { border-left-color: #3B82F6; }
.mock-card-emoji { font-size: 20px; }
.mock-card-label { font-size: 8px; font-weight: 800; color: var(--text-muted); letter-spacing: 0.5px; display: block; }
.mock-card-title { font-size: 12px; font-weight: 700; color: var(--text); display: block; }
.mock-preview {
  background: var(--primary-light);
  border-radius: 12px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.mock-detail-title { font-size: 14px; font-weight: 700; text-align: center; margin-bottom: 6px; }
.mock-detail-badges { display: flex; gap: 6px; justify-content: center; margin-bottom: 10px; }
.mock-badge-green { font-size: 9px; background: #DCFCE7; color: #166534; padding: 3px 8px; border-radius: 8px; font-weight: 700; }
.mock-badge-gray { font-size: 9px; background: #F5F5F4; color: var(--text-light); padding: 3px 8px; border-radius: 8px; font-weight: 600; }
.mock-steps { padding-left: 4px; }
.mock-step { font-size: 11px; color: var(--text-light); margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
.mock-step-num {
  width: 18px;
  height: 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── STATS ─── */
.stats {
  padding: 48px 0;
  background: var(--primary-gradient);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
}
.stats .container {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  position: relative;
}
.stat-item { text-align: center; }
.stat-number { font-size: 40px; font-weight: 800; letter-spacing: -1px; }
.stat-label { font-size: 14px; opacity: 0.8; margin-top: 4px; }

/* ─── HOW IT WORKS ─── */
.how-it-works {
  padding: 100px 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(82,183,136,0.04) 0%, transparent 50%);
}
.section-title {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -1px;
}
.section-subtitle {
  text-align: center;
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 52px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--card);
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step-icon-wrap {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary-light), #B7E4C7);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.step-emoji { font-size: 32px; }
.step-number-badge {
  width: 28px;
  height: 28px;
  background: var(--primary-gradient);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin: -14px auto 12px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-green);
}
.step-card h3 { font-size: 18px; margin-bottom: 8px; font-weight: 700; }
.step-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ─── FEATURES ─── */
.features {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--primary-light) 0%, #EDF7F0 50%, var(--bg) 100%);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--card);
}
.feature-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}
.feature-card h3 { font-size: 17px; margin-bottom: 8px; font-weight: 700; }
.feature-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ─── DAMAGE TYPES ─── */
.damage-types {
  padding: 100px 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(244,162,97,0.05) 0%, transparent 50%);
}
.damage-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
}
.damage-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}
.damage-chip:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-2px);
}

/* ─── PRICING ─── */
.pricing {
  padding: 100px 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
  align-items: start;
}
.pricing-two-col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.price-card {
  background: var(--card);
  border-radius: 20px;
  padding: 36px 28px;
  border: 2px solid var(--border);
  text-align: center;
  position: relative;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-green);
  transform: scale(1.04);
  background: linear-gradient(180deg, #FFFFFF 0%, #F0FAF4 100%);
}
.price-card.featured:hover { transform: scale(1.04) translateY(-4px); }
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  padding: 5px 18px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(244,162,97,0.3);
}
.price-name { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.price-amount {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -2px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-period { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.price-features { list-style: none; text-align: left; margin-bottom: 28px; }
.price-features li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-light);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-features li::before {
  content: "✓";
  color: var(--success);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

/* ─── CTA ─── */
.cta {
  padding: 100px 0;
  background: var(--primary-gradient);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 160%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 60%);
}
.cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 40%;
  height: 160%;
  background: radial-gradient(circle, rgba(244,162,97,0.1) 0%, transparent 60%);
}
.cta .container { position: relative; z-index: 1; }
.cta-logo { width: 320px; height: auto; margin-bottom: 28px; filter: brightness(0) invert(1); }
.footer-logo-icon { width: 200px; height: auto; display: block; margin-bottom: 12px; }
.cta h2 { font-size: 40px; font-weight: 800; margin-bottom: 14px; letter-spacing: -1px; }
.cta p { font-size: 18px; opacity: 0.85; margin-bottom: 32px; }
.btn-white {
  background: #fff;
  color: var(--primary) !important;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover { background: #f5f5f5; transform: translateY(-2px); text-decoration: none; color: var(--primary) !important; }

/* ─── FOOTER ─── */
.footer {
  padding: 56px 0 32px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, #F2F1EE 100%);
}
.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-brand { max-width: 280px; }
.footer-brand h3 { font-size: 18px; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.footer-links h4 { font-size: 13px; font-weight: 700; margin-bottom: 14px; color: var(--text); text-transform: uppercase; letter-spacing: 0.5px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 14px; color: var(--text-muted); }
.footer-links a:hover { color: var(--primary); text-decoration: none; }
.footer-bottom {
  text-align: center;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
}

/* ─── LEGAL PAGES ─── */
.legal-page {
  padding: 60px 0 80px;
  max-width: 720px;
  margin: 0 auto;
}
.legal-page h1 { font-size: 36px; font-weight: 800; margin-bottom: 8px; letter-spacing: -1px; }
.legal-page .last-updated { font-size: 13px; color: var(--text-muted); margin-bottom: 36px; }
.legal-page h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary-light);
}
.legal-page p, .legal-page li { font-size: 15px; color: var(--text-light); line-height: 1.7; margin-bottom: 10px; }
.legal-page ul { padding-left: 24px; }
.legal-page strong { color: var(--text); }

/* ─── SUPPORT PAGE ─── */
.support-page { padding: 60px 0 80px; }
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 40px auto 0;
}
.support-card {
  background: var(--card);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.support-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.support-card .emoji { font-size: 40px; margin-bottom: 12px; }
.support-card h3 { font-size: 17px; margin-bottom: 8px; font-weight: 700; }
.support-card p { font-size: 14px; color: var(--text-light); margin-bottom: 14px; line-height: 1.5; }
.support-card a { font-weight: 600; }
.faq { max-width: 700px; margin: 56px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-item h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.faq-item p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ─── ANIMATIONS ─── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero h1 { font-size: 36px; letter-spacing: -1px; }
  .hero p { font-size: 16px; }
  .section-title { font-size: 28px; }
  .steps-grid, .features-grid, .pricing-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .stats .container { gap: 32px; }
  .stat-number { font-size: 32px; }
  .nav-links { display: none; }
  .nav-links.show {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--card);
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .mobile-menu { display: block; }
  .hero-phones { gap: 8px; }
  .phone { width: 160px; height: 320px; border-radius: 20px; padding: 5px; }
  .phone-left, .phone-right { display: none; }
  .phone-center { transform: none; }
  .phone-center:hover { transform: translateY(-8px); }
  .phone-screen { border-radius: 16px; padding: 10px; }
  .footer .container { flex-direction: column; gap: 24px; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }
  .cta h2 { font-size: 28px; }
  .pricing-grid { max-width: 400px; }
}
