/* ═══════════════════════════════════════
   FIXFIT REDESIGN STYLESHEET
   Aesthetics: Premium, warm editorial, responsive, clean.
   ═══════════════════════════════════════ */

   :root {
    --primary: #F97316;
    --primary-hover: #EA580C;
    --primary-glow: rgba(249, 115, 22, 0.15);
    --primary-glow-lg: rgba(249, 115, 22, 0.25);
    --dark: #0D0C0B;
    --dark-tint: #1C1917;
    --dark-muted: #292524;
    --cream: #FCF8F2;
    --white: #FFFFFF;
    
    --text: #292524;
    --text-muted: #78716C;
    --text-light: #A8A29E;
    
    --border: rgba(13, 12, 11, 0.06);
    --border-active: rgba(249, 115, 22, 0.25);
    
    --shadow-sm: 0 2px 8px rgba(13, 12, 11, 0.04);
    --shadow-md: 0 8px 30px rgba(13, 12, 11, 0.06);
    --shadow-lg: 0 20px 50px rgba(13, 12, 11, 0.1);
    --shadow-glow: 0 12px 32px rgba(249, 115, 22, 0.18);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 36px;
    
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'DM Sans', sans-serif;
    --font-mono: 'DM Mono', monospace;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  /* Reset */
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  body {
    font-family: var(--font-sans);
    background-color: var(--cream);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
  }
  
  /* Custom Scrollbar */
  ::-webkit-scrollbar {
    width: 6px;
  }
  ::-webkit-scrollbar-track {
    background: var(--cream);
  }
  ::-webkit-scrollbar-thumb {
    background: #E8E2D9;
    border-radius: 10px;
    transition: var(--transition);
  }
  ::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
  }
  
  /* Typography & Global Elements */
  h1, h2, h3, h4 {
    font-weight: 500;
    color: var(--dark);
    line-height: 1.15;
  }
  
  h1 {
    font-family: var(--font-serif);
    font-size: clamp(40px, 6vw, 76px);
    font-weight: 600;
    letter-spacing: -1.5px;
  }
  
  h2 {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 600;
    letter-spacing: -0.8px;
  }
  
  h3 {
    font-family: var(--font-serif);
    font-size: clamp(22px, 2.5vw, 32px);
  }
  
  em {
    font-style: italic;
    font-family: var(--font-serif);
    color: var(--primary);
    font-weight: 500;
  }
  
  p {
    font-size: clamp(15px, 1.2vw, 17px);
    color: var(--text-muted);
    font-weight: 300;
  }
  
  a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
  }
  
  button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-sans);
    outline: none;
  }
  
  /* Custom Cursor */
  .custom-cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
  }
  
  .custom-cursor-ring {
    position: fixed;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(249, 115, 22, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  }
  
  body:has(a:hover, button:hover, [role="button"]:hover, .interactive-card:hover) .custom-cursor {
    transform: translate(-50%, -50%) scale(0);
  }
  
  body:has(a:hover, button:hover, [role="button"]:hover, .interactive-card:hover) .custom-cursor-ring {
    width: 48px;
    height: 48px;
    background: rgba(249, 115, 22, 0.08);
    border-color: var(--primary);
  }
  
  @media (max-width: 1024px) {
    .custom-cursor, .custom-cursor-ring {
      display: none;
    }
  }
  
  /* Layout Utilities */
  section {
    padding: 100px 6vw;
    position: relative;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 24px;
  }
  
  .eyebrow::before {
    content: '';
    display: block;
    width: 16px;
    height: 1.5px;
    background: var(--primary);
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
  }
  
  .btn-primary {
    background: var(--dark);
    color: var(--cream);
    border: 1px solid var(--dark);
  }
  
  .btn-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
  }
  
  .btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--border);
  }
  
  .btn-outline:hover {
    border-color: var(--dark);
    transform: translateY(-3px);
  }
  
  .btn-wa {
    background: #25D366;
    color: var(--white);
    border: 1px solid #25D366;
    font-weight: 600;
  }
  
  .btn-wa:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
  }
  
  .btn-wa-brand {
    background: var(--primary);
    color: var(--white);
  }
  
  .btn-wa-brand:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
  }
  
  /* ═══════════════════════════════════════
     NAVBAR
     ═══════════════════════════════════════ */
  #navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 76px;
    padding: 0 6vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(252, 248, 242, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: var(--transition-smooth);
  }
  
  #navbar.scrolled {
    height: 64px;
    background: rgba(252, 248, 242, 0.9);
    box-shadow: var(--shadow-sm);
  }
  
  .nav-logo {
    height: 66px;
    display: flex;
    align-items: center;
  }
  
  .nav-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
  }
  
  .nav-links {
    display: flex;
    gap: 36px;
  }
  
  .nav-links a {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--primary);
    transition: var(--transition);
  }
  
  .nav-links a:hover {
    color: var(--dark);
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  .nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .nav-phone-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  /* Mobile Nav Toggle */
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    cursor: pointer;
  }
  
  .nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
  }
  
  /* ═══════════════════════════════════════
     HERO SECTION
     ═══════════════════════════════════════ */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 130px;
    background-color: var(--cream);
    overflow: hidden;
  }
  
  .hero-background-glows {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
  }
  
  .hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.22;
  }
  
  .hero-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary), transparent);
    top: -150px;
    right: -100px;
  }
  
  .hero-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #FCD34D, transparent);
    bottom: -100px;
    left: -100px;
  }
  
  .hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    width: 100%;
  }
  
  .hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--primary-glow);
    border: 1px solid var(--border-active);
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 24px;
  }
  
  .hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 1.8s infinite;
  }
  
  @keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 5px rgba(249, 115, 22, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
  }
  
  .hero-title {
    margin-bottom: 24px;
  }
  
  .hero-subtitle {
    font-size: clamp(16px, 1.4vw, 19px);
    margin-bottom: 40px;
    max-width: 540px;
  }
  
  .hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
  }
  
  .hero-trust-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
  }
  
  .avatar-stack {
    display: flex;
  }
  
  .avatar-stack span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--cream);
    margin-left: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: var(--white);
  }
  
  .avatar-stack span:first-child {
    margin-left: 0;
  }
  
  .trust-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
  }
  
  .trust-text strong {
    color: var(--dark);
    font-weight: 600;
  }
  
  /* Hero Visual Card Stack */
  .hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .hero-main-card {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 4 / 5;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 8px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    transform: rotate(-1.5deg);
    transition: var(--transition-smooth);
  }
  
  .hero-main-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 6px);
  }
  
  .hero-visual:hover .hero-main-card {
    transform: rotate(0deg) scale(1.02);
  }
  
  /* Floating Status Widget */
  .floating-widget {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
  }
  
  .floating-widget:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-lg);
  }
  
  .widget-top {
    top: 40px;
    right: -20px;
  }
  
  .widget-bottom {
    bottom: 30px;
    left: -20px;
  }
  
  .widget-icon {
    width: 38px;
    height: 38px;
    background: var(--primary-glow);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }
  
  .widget-info {
    display: flex;
    flex-direction: column;
  }
  
  .widget-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
  }
  
  .widget-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
  }
  
  /* ═══════════════════════════════════════
     THE MOMENT (STORY & STATS)
     ═══════════════════════════════════════ */
  .moment {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  
  .moment-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
  }
  
  .moment-narrative {
    display: flex;
    flex-direction: column;
  }
  
  .moment-story-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.5vw, 42px);
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--dark);
  }
  
  .moment-story-text {
    margin-bottom: 30px;
    line-height: 1.7;
  }
  
  .moment-story-text strong {
    font-weight: 500;
    color: var(--dark);
  }
  
  .moment-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .stat-card {
    background: var(--cream);
    padding: 30px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
  }
  
  .stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-hover);
    background: var(--white);
    box-shadow: var(--shadow-md);
  }
  
  .stat-number {
    font-family: var(--font-serif);
    font-size: 52px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
  }
  
  .stat-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.4;
  }
  
  /* ═══════════════════════════════════════
     INTERACTIVE FIX ESTIMATOR
     ═══════════════════════════════════════ */
  .estimator {
    background: var(--cream);
  }
  
  .estimator-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
  }
  
  .estimator-header h2 {
    margin-bottom: 16px;
  }
  
  .estimator-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    align-items: start;
  }
  
  .estimator-panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
  }
  
  .estimator-step {
    margin-bottom: 40px;
  }
  
  .estimator-step:last-child {
    margin-bottom: 0;
  }
  
  .step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .step-num {
    width: 24px;
    height: 24px;
    background: var(--primary-glow);
    color: var(--primary);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .step-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-muted);
  }
  
  /* Garment Selector Row */
  .garment-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 12px;
  }
  
  .garment-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px 10px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .garment-card:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
  }
  
  .garment-card.active {
    background: var(--primary-glow);
    border-color: var(--primary);
    box-shadow: inset 0 0 0 1px var(--primary);
  }
  
  .garment-icon {
    font-size: 26px;
    line-height: 1;
  }
  
  .garment-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-muted);
  }
  
  /* Issue Selector List */
  .issue-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
  }
  
  .issue-btn {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--dark-muted);
    text-align: left;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .issue-btn:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
  }
  
  .issue-btn.active {
    background: var(--primary-glow);
    border-color: var(--primary);
    color: var(--primary-hover);
    font-weight: 600;
    box-shadow: inset 0 0 0 1px var(--primary);
  }
  
  .issue-btn::after {
    content: '+';
    font-family: var(--font-mono);
    font-size: 16px;
    color: var(--text-light);
    transition: var(--transition);
  }
  
  .issue-btn.active::after {
    content: '✓';
    color: var(--primary);
  }
  
  /* Estimator Result Box */
  .estimator-result-container {
    position: sticky;
    top: 110px;
  }
  
  .result-card {
    background: var(--dark-tint);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 36px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 28px;
    overflow: hidden;
    position: relative;
  }
  
  .result-card::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15), transparent);
    border-radius: 50%;
    pointer-events: none;
  }
  
  .result-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 16px;
  }
  
  .result-heading {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 6px;
  }
  
  .result-selection {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--cream);
  }
  
  .result-selection em {
    color: var(--primary);
  }
  
  .result-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .metric-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  
  .metric-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
  }
  
  .metric-value {
    font-family: var(--font-serif);
    font-size: 38px;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
  }
  
  .metric-value.small {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 500;
    margin-top: 10px;
  }
  
  .metric-value span {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font-sans);
    color: rgba(255, 255, 255, 0.4);
  }
  
  .result-tier-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin-top: 4px;
    width: fit-content;
  }
  
  .tier-spot { background: #FEF3C7; color: #92400E; }
  .tier-quick { background: #E6F1FB; color: #185FA5; }
  .tier-sched { background: #EEEDFE; color: #3C3489; }
  
  .result-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .res-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .res-feature::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
  }
  
  .result-cta {
    width: 100%;
    margin-top: 8px;
  }
  
  /* ═══════════════════════════════════════
     HOW IT WORKS (TIMELINE & CHAT SIMULATOR)
     ═══════════════════════════════════════ */
  .how {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  
  .how-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  
  /* Steps Stepper */
  .stepper {
    display: flex;
    flex-direction: column;
    position: relative;
  }
  
  .stepper::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 20px;
    bottom: 30px;
    width: 1px;
    background: var(--border);
    z-index: 1;
  }
  
  .step-item {
    position: relative;
    padding-left: 56px;
    padding-bottom: 40px;
    z-index: 2;
    cursor: pointer;
  }
  
  .step-item:last-child {
    padding-bottom: 0;
  }
  
  .step-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: var(--cream);
    border: 1.5px solid var(--border);
    color: var(--text-light);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
  }
  
  .step-item:hover .step-indicator,
  .step-item.active .step-indicator {
    border-color: var(--primary);
    background: var(--primary-glow);
    color: var(--primary);
    transform: scale(1.05);
  }
  
  .step-item-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .step-duration {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    background: var(--border);
    color: var(--text-muted);
    border-radius: 10px;
  }
  
  .step-item.active .step-duration {
    background: var(--primary-glow);
    color: var(--primary);
  }
  
  .step-item-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
  }
  
  /* WhatsApp Chat Widget */
  .phone-simulator-container {
    position: sticky;
    top: 110px;
    display: flex;
    justify-content: center;
  }
  
  .phone-mockup {
    width: 100%;
    max-width: 360px;
    background: var(--dark-tint);
    border: 10px solid var(--dark);
    border-radius: 40px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
  }
  
  .phone-screen {
    background: #0f1c15; /* Dark forest theme for WhatsApp simulation */
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2v2h-2V0zm0 4h2v2h-2V4zM4 40h2v2H4v-2zm72 12h2v2h-2v-2zm-4 12h2v2h-2v-2zM0 80h80v-2H0v2zm0-40h80v-2H0v2zm0-38h40v2H0V2zm40 40h40v2H40v-2z'/%3E%3C/g%3E%3C/svg%3E");
    padding: 16px;
    min-height: 480px;
    display: flex;
    flex-direction: column;
  }
  
  .phone-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 16px;
  }
  
  .phone-avatar {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 16px;
    color: var(--white);
    font-weight: bold;
  }
  
  .phone-user-info {
    display: flex;
    flex-direction: column;
  }
  
  .phone-username {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
  }
  
  .phone-status-text {
    font-size: 10px;
    color: #25D366;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  
  .phone-status-dot {
    width: 4px;
    height: 4px;
    background: #25D366;
    border-radius: 50%;
    animation: pulse 1.8s infinite;
  }
  
  /* Chat bubble styling */
  .chat-thread {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
  }
  
  .bubble {
    max-width: 82%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 12.5px;
    line-height: 1.5;
    position: relative;
    animation: popIn 0.3s ease forwards;
    opacity: 0;
    transform: translateY(10px);
  }
  
  @keyframes popIn {
    to { opacity: 1; transform: translateY(0); }
  }
  
  .bubble-in {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
  }
  
  .bubble-out {
    background: #054735;
    border: 1px solid rgba(37, 211, 102, 0.1);
    color: #E2F6F0;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
  }
  
  .bubble-image {
    padding: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
  }
  
  .bubble-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    max-height: 120px;
  }
  
  .bubble-meta {
    display: block;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.3);
    text-align: right;
    margin-top: 4px;
  }
  
  .bubble-out .bubble-meta {
    color: rgba(255, 255, 255, 0.4);
  }
  
  .typing-indicator {
    display: flex;
    gap: 4px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    width: 50px;
    align-self: flex-start;
    margin-top: 4px;
  }
  
  .typing-indicator span {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: typing 1.4s infinite;
  }
  
  .typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
  .typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
  
  @keyframes typing {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
  }
  
  /* ═══════════════════════════════════════
     STYLE EXECUTIVE & TRUST
     ═══════════════════════════════════════ */
  .trust {
    background: var(--cream);
  }
  
  .trust-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
  }
  
  .trust-badge-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
  }
  
  .trust-badge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #FCD34D);
  }
  
  .exec-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
  }
  
  .exec-photo {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    border: 2px solid var(--primary-glow);
    overflow: hidden;
    object-fit: cover;
  }
  
  .exec-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .exec-details {
    display: flex;
    flex-direction: column;
  }
  
  .exec-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
  }
  
  .exec-title {
    font-size: 12px;
    color: var(--text-muted);
  }
  
  .exec-active-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 600;
    color: var(--primary);
    margin-top: 4px;
  }
  
  .exec-active-dot {
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 1.8s infinite;
  }
  
  .exec-meta-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    background: var(--cream);
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid var(--border);
    margin-bottom: 24px;
    width: fit-content;
  }
  
  .exec-meta-dot {
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
  }
  
  .exec-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .exec-stat-box {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
  }
  
  .exec-stat-num {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
  }
  
  .exec-stat-label {
    font-size: 9.5px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  /* Trust checklist */
  .trust-checklist {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .checklist-item {
    display: flex;
    gap: 16px;
  }
  
  .checklist-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
  }
  
  .checklist-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  
  .checklist-title {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--dark);
  }
  
  .checklist-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.5;
  }
  
  /* Protection Guarantee Banner */
  .guarantee-banner {
    margin-top: 40px;
    background: var(--dark-tint);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .guarantee-icon {
    font-size: 24px;
    line-height: 1;
  }
  
  .guarantee-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--cream);
  }
  
  .guarantee-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
  }
  
  /* ═══════════════════════════════════════
     FAQ (ACCORDION)
     ═══════════════════════════════════════ */
  .faq {
    background: var(--white);
  }
  
  .faq-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
  }
  
  .faq-header h2 {
    margin-bottom: 16px;
  }
  
  .faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .faq-item {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
  }
  
  .faq-item:hover {
    border-color: var(--primary-hover);
  }
  
  .faq-question {
    width: 100%;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-muted);
    transition: var(--transition);
  }
  
  .faq-question:hover {
    color: var(--primary);
  }
  
  .faq-trigger {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-family: var(--font-mono);
    transition: var(--transition-smooth);
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 28px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
  }
  
  /* Active State */
  .faq-item.active {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
  }
  
  .faq-item.active .faq-question {
    color: var(--primary);
  }
  
  .faq-item.active .faq-trigger {
    transform: rotate(45deg);
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
  }
  
  .faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 24px;
  }
  
  /* ═══════════════════════════════════════
     CTA & FOOTER
     ═══════════════════════════════════════ */
  .cta {
    background: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 120px 6vw;
    overflow: hidden;
  }
  
  .cta::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1), transparent);
    border-radius: 50%;
    pointer-events: none;
  }
  
  .cta-inner {
    max-width: 620px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  
  .cta-title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 56px);
    color: var(--cream);
    margin-bottom: 20px;
  }
  
  .cta-title em {
    color: var(--primary);
  }
  
  .cta-desc {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
  }
  
  .cta-btn {
    padding: 16px 36px;
    font-size: 15px;
  }
  
  .cta-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 16px;
    letter-spacing: 0.5px;
  }
  
  footer {
    background: var(--dark-tint);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 6vw 40px;
    color: rgba(255, 255, 255, 0.6);
  }
  
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .footer-logo {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
  }
  
  .footer-logo span {
    color: var(--primary);
  }
  
  .footer-desc {
    font-size: 13px;
    line-height: 1.6;
    max-width: 280px;
  }
  
  .footer-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  
  .footer-col h4 {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
  }
  
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
  }
  
  .footer-links a:hover {
    color: var(--primary);
  }
  
  .footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
  }
  
  .footer-love span {
    color: var(--primary);
  }
  
  /* ═══════════════════════════════════════
     RESPONSIVE DESIGN (MEDIA QUERIES)
     ═══════════════════════════════════════ */
  @media (max-width: 1024px) {
    .hero-inner {
      grid-template-columns: 1fr;
      gap: 60px;
      text-align: center;
    }
    
    .hero-badge-pill {
      justify-content: center;
    }
    
    .hero-subtitle {
      margin-left: auto;
      margin-right: auto;
    }
    
    .hero-ctas {
      justify-content: center;
    }
    
    .hero-trust-bar {
      justify-content: center;
    }
    
    .estimator-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    
    .estimator-result-container {
      position: static;
    }
    
    .how-inner {
      grid-template-columns: 1fr;
      gap: 60px;
    }
    
    .phone-simulator-container {
      position: static;
    }
    
    .trust-inner {
      grid-template-columns: 1fr;
      gap: 60px;
    }
    
    .footer-inner {
      grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
      gap: 40px;
    }
  }
  
  @media (max-width: 768px) {
    section {
      padding: 70px 6vw;
    }
    
    #navbar {
      padding: 0 6vw;
    }
    
    .nav-links {
      display: none;
    }
    
    .nav-toggle {
      display: flex;
    }
    
    .moment-inner {
      grid-template-columns: 1fr;
      gap: 50px;
    }
    
    .moment-stats-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .footer-inner {
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }
    
    .footer-bottom {
      flex-direction: column;
      gap: 16px;
      text-align: center;
    }
  }
  
  @media (max-width: 480px) {
    .hero-ctas {
      flex-direction: column;
      gap: 12px;
    }
    
    .btn {
      width: 100%;
    }
    
    .garment-row {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .issue-list {
      grid-template-columns: 1fr;
    }
    
    .footer-inner {
      grid-template-columns: 1fr;
    }
    
    .estimator-panel {
      padding: 24px;
    }
    
    .result-card {
      padding: 24px;
    }
  }