/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: #1a1a2e; background: #fff; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

:root {
  --dark: #0d0d1a;
  --dark2: #1a1a2e;
  --blue: #0c57c6;
  --blue-dark: #0a45a0;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --text-gray: #666;
  --red: #cc2200;
  --orange: #e87722;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-label { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; background: rgba(12,87,198,0.08); padding: 5px 14px; border-radius: 20px; border: 1px solid rgba(12,87,198,0.2); }
.section-label.light { color: #7bb3f0; background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }
h2 { font-family: 'Montserrat', sans-serif; font-size: clamp(26px, 4vw, 42px); font-weight: 900; line-height: 1.15; margin-bottom: 16px; }
h2.light { color: var(--white); }
.section-sub { font-size: 16px; color: var(--text-gray); margin-bottom: 40px; max-width: 640px; }
.section-sub.light { color: rgba(255,255,255,0.7); }
.dark-section { background: var(--dark2); padding: 80px 0; }
.light-section { background: var(--light-gray); padding: 80px 0; }
section { padding: 90px 0; }
.dark-section { padding: 90px 0; }
.light-section { padding: 90px 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* BUTTONS */
.btn-primary { display: inline-block; background: var(--blue); color: #fff; padding: 14px 32px; border-radius: 4px; font-weight: 700; font-size: 15px; font-family: 'Montserrat', sans-serif; border: none; cursor: pointer; transition: background 0.2s; margin-top: 16px; }
.btn-primary:hover { background: var(--blue-dark); }
.btn-primary.full-width { width: 100%; text-align: center; display: block; }

/* NAV */
#navbar { position: fixed; top: 0; left: 0; right: 0; background: rgba(13,13,26,0.97); z-index: 1000; padding: 0 24px; }
.nav-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo img { height: 40px; object-fit: contain; }
.nav-links { list-style: none; display: flex; gap: 24px; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 12px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--blue); }
.nav-links .nav-cta { background: var(--blue); color: #fff; padding: 9px 16px; border-radius: 4px; }
.nav-links .nav-cta:hover { background: var(--blue-dark); }
.nav-links .nav-cta-login { background: transparent; border: 2px solid #fff; color: #fff; }
.nav-links .nav-cta-login:hover { background: rgba(255,255,255,0.15); }
.hamburger { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }
.mobile-menu { display: none; list-style: none; background: var(--dark2); padding: 16px 24px; flex-direction: column; gap: 16px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #fff; font-size: 15px; font-weight: 600; }

/* HERO SLIDESHOW */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 70px;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(20,20,30,0.70);
  z-index: 1;
}

/* Content wrapper */
.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 860px;
  padding: 40px 24px 60px;
  display: flex; flex-direction: column; align-items: center;
}

/* TOP TEXT */
.hero-top { text-align: center; width: 100%; }
.hero-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(13px, 1.8vw, 18px);
  font-weight: 600; letter-spacing: 3px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
}
.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 900; line-height: 1.05;
  margin-bottom: 16px; letter-spacing: 1px;
}
.hero-h1-bold { color: #fff; }
.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 15px; line-height: 1.65;
  margin-bottom: 8px;
  max-width: 520px; margin-left: auto; margin-right: auto;
}

/* BUTTONS */
.hero-btns {
  display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
  margin: 24px 0 32px;
}
.btn-hero-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.8);
  color: #fff; padding: 12px 28px;
  border-radius: 30px; font-weight: 700;
  font-size: 14px; font-family: 'Montserrat', sans-serif;
  transition: all 0.2s;
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.12); }
.btn-hero-solid {
  display: inline-block;
  background: #e87722; color: #fff;
  padding: 12px 28px; border-radius: 30px;
  font-weight: 700; font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  transition: background 0.2s;
}
.btn-hero-solid:hover { background: #cf6610; }

/* MIDDLE ROW */
.hero-middle {
  display: flex; gap: 20px;
  align-items: stretch; justify-content: center;
  width: 100%; margin-bottom: 32px;
}

/* Promo box — orange left panel */








/* Mockup panel — right side */
.hero-mockup {
  flex: 1; display: flex;
  align-items: center; justify-content: center;
}
.hero-mockup-inner {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px; padding: 28px 32px;
  text-align: center; width: 100%;
}
.hero-mockup-screen { color: #fff; }
.hero-mockup-icon { font-size: 36px; margin-bottom: 10px; }
.hero-mockup-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 10px; }
.hero-mockup-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px; font-weight: 900;
  color: #e87722; margin-bottom: 14px;
}
.hero-mockup-btn {
  display: inline-block;
  background: #0c57c6; color: #fff;
  padding: 9px 22px; border-radius: 20px;
  font-size: 13px; font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

/* FEATURE CIRCLES */
.hero-features {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 16px; width: 100%;
}
.hero-feat {
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  text-align: center; color: #fff;
}
.hero-feat-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #0c57c6;
  border: 3px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900; color: #fff;
  margin-bottom: 8px;
  box-shadow: 0 2px 12px rgba(12,87,198,0.4);
}
.hero-feat strong {
  font-size: 12px; font-weight: 700;
  color: #fff; font-family: 'Montserrat', sans-serif;
  line-height: 1.3;
}
.hero-feat span {
  font-size: 11px; color: rgba(255,255,255,0.6);
  line-height: 1.35;
}

/* Dots */
.hero-dots {
  position: absolute; bottom: 20px;
  left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 10px;
}
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer; transition: background 0.3s;
}
.dot.active { background: #0c57c6; }

@media (max-width: 720px) {
  .hero-middle { flex-direction: column; align-items: center; }
  
  .hero-features { grid-template-columns: repeat(2,1fr); }
}


/* PRICING PREVIEW */
#pricing-preview { background: #fff; padding: 70px 0; text-align: center; }
.pricing-tagline { font-size: 17px; color: var(--text-gray); margin-bottom: 6px; }
.pricing-headline { font-family: 'Montserrat', sans-serif; font-size: clamp(22px, 4vw, 36px); font-weight: 900; color: var(--blue); margin-bottom: 40px; }
.pricing-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; max-width: 1200px; margin: 0 auto 32px; }
.pricing-card { text-align: center; }
.pricing-card p { color: var(--text-gray); font-size: 14px; margin-top: 12px; }
.pricing-img-wrap { border-radius: 10px; overflow: hidden; }
.pricing-img-wrap img { width: 100%; height: 220px; object-fit: cover; display: block; border-radius: 10px; }
.pricing-img-wrap img.wardrobe-img { object-fit: contain; background: #f5f5f5; padding: 10px; box-sizing: border-box; }
/* pricing-badge removed - badge is baked into image */



/* INFOBAR */
#infobar { background: var(--dark); padding: 20px 24px; }
.infobar-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.info-item { color: #fff; font-size: 15px; padding: 10px 40px; text-align: center; }
.info-item strong { color: var(--blue); }
.info-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* ABOUT */
#about { background: #fff; }
.about-text h2 { color: var(--dark2); }
.about-text p { color: #444; line-height: 1.7; margin-bottom: 16px; font-size: 16px; }
.about-image img { width: 100%; border-radius: 8px; object-fit: cover; max-height: 480px; }

/* HOW IT WORKS */
.steps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; align-content: stretch; }
.step-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 28px 20px; display: flex; flex-direction: column; }
.step-number { font-family: 'Montserrat', sans-serif; font-size: 32px; font-weight: 900; color: var(--blue); margin-bottom: 12px; }
.step-card h3 { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step-card p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.6; }

/* FAST TURNAROUND */
#turnaround { background: #fff; padding: 80px 0; }
.turnaround-banner { display: grid; grid-template-columns: 1fr 1fr; border-radius: 10px; overflow: hidden; margin-bottom: 60px; box-shadow: 0 4px 24px rgba(0,0,0,0.12); }
.turnaround-img img { width: 100%; height: 280px; object-fit: cover; object-position: center 30%; display: block; border-radius: 8px 0 0 8px; }
.turnaround-text { background: var(--dark2); padding: 36px 32px; display: flex; flex-direction: column; justify-content: center; }
.turnaround-icon { font-size: 36px; margin-bottom: 12px; }
.turnaround-text h3 { font-family: 'Montserrat', sans-serif; font-size: 28px; font-weight: 900; color: #fff; margin-bottom: 10px; }
.turnaround-text p { color: rgba(255,255,255,0.7); font-size: 15px; margin-bottom: 6px; }
.turnaround-highlight { color: #fff !important; font-size: 15px !important; }
.turnaround-highlight strong { color: var(--blue); }

/* QUALITY VS */
.quality-section { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: center; }
.quality-left h2 { color: var(--dark2); font-size: clamp(28px, 4vw, 48px); }
.quality-left p { color: #555; line-height: 1.7; margin-top: 16px; font-size: 15px; }
.quality-vs { display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; align-items: center; }
.vs-card { background: var(--dark2); border-radius: 8px; padding: 24px 20px; position: relative; }
.vs-card.good { border-top: 4px solid #22aa44; }
.vs-card.bad { border-top: 4px solid var(--red); opacity: 0.75; }
.vs-tick { width: 32px; height: 32px; background: #22aa44; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 900; font-size: 16px; margin-bottom: 12px; }
.vs-cross { width: 32px; height: 32px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 900; font-size: 16px; margin-bottom: 12px; }
.vs-card h4 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.vs-card p { color: rgba(255,255,255,0.65); font-size: 13px; line-height: 1.6; }
.vs-middle { background: var(--dark); color: #fff; font-weight: 900; font-size: 14px; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* STOP GUESSING */
#stop-guessing { background: var(--light-gray); }
.guessing-text h2 { color: var(--dark2); }
.guessing-text p { color: #555; line-height: 1.7; margin-bottom: 14px; font-size: 16px; }
.phone-mockup { display: flex; justify-content: center; align-items: center; }
.phone-screen { background: var(--dark2); border-radius: 32px; width: 220px; height: 380px; padding: 32px 20px; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 40px rgba(0,0,0,0.25); border: 6px solid #333; }
.phone-screen-content { text-align: center; color: #fff; width: 100%; }
.phone-cabinet-icon { font-size: 48px; margin-bottom: 12px; }
.phone-screen-content p { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.phone-price { font-family: 'Montserrat', sans-serif; font-size: 32px; font-weight: 900; color: var(--blue); margin-bottom: 16px; }
.phone-btn { background: var(--blue); color: #fff; padding: 10px 20px; border-radius: 6px; font-size: 13px; font-weight: 700; }

/* NO FANCY SOFTWARE */
#no-software { background: #fff; }
.software-text h2 { color: var(--dark2); }
.software-text p { color: #555; line-height: 1.7; margin-bottom: 16px; font-size: 16px; }

/* WHO WE HELP */
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; padding: 28px 20px; }
.card-num { font-family: 'Montserrat', sans-serif; font-size: 28px; font-weight: 900; color: var(--blue); margin-bottom: 10px; }
.card h3 { color: #fff; font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.card p { color: rgba(255,255,255,0.7); font-size: 13px; line-height: 1.6; }

/* BENEFIT BY */
#benefit-by { background: #fff; }
#benefit-by h2 { color: var(--dark2); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.benefit-card { background: #ffffff; border-radius: 8px; padding: 32px 24px; color: #1a1a2e; border: 1px solid #e0e0e0; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.benefit-card h3 { font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 900; margin-bottom: 4px; text-transform: uppercase; color: #1a1a2e; }
.benefit-sub { font-size: 12px; font-weight: 700; letter-spacing: 1px; margin-bottom: 20px; color: var(--blue); }
.benefit-card ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.benefit-card ul li { font-size: 14px; line-height: 1.5; color: #444; }

/* RED BANNERS */
#banners { padding: 0; }
.banner-item { background: var(--red); color: #fff; text-align: center; padding: 18px 24px; font-size: 17px; font-weight: 700; font-family: 'Montserrat', sans-serif; border-bottom: 1px solid rgba(255,255,255,0.15); }

/* COMPARE TABLE */
#compare { background: var(--light-gray); }
#compare h2 { color: var(--dark2); }
.table-wrap { overflow-x: auto; margin-top: 32px; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare-table th { background: var(--dark2); color: #fff; padding: 14px 16px; text-align: left; font-family: 'Montserrat', sans-serif; }
.compare-table td { padding: 14px 16px; border-bottom: 1px solid #ddd; vertical-align: top; }
.compare-table tr:nth-child(even) td { background: #fff; }
.compare-table tr:nth-child(odd) td { background: #f0f0f0; }
.compare-table td.yes { color: #22aa44; font-size: 20px; text-align: center; }
.compare-table td.no { color: #cc2200; font-size: 20px; text-align: center; }

/* GUARANTEE */
.guarantee-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.guarantee-item { text-align: center; padding: 24px 16px; }
.guarantee-icon { font-size: 36px; margin-bottom: 14px; }
.guarantee-item h4 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.guarantee-item p { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.6; }

/* SERVICE AREAS + MAP */
#service-areas { background: #fff; padding: 80px 0 0; }
#service-areas h2 { color: var(--dark2); }
.areas-grid { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0; }
.areas-grid span { background: var(--dark2); color: #fff; padding: 8px 20px; border-radius: 40px; font-size: 14px; font-weight: 600; }
.areas-note { color: var(--text-gray); font-size: 15px; margin-bottom: 40px; }
.areas-note a { color: var(--blue); font-weight: 600; }
.map-wrap { margin-top: 32px; }
.map-wrap iframe { width: 100%; border-radius: 0; box-shadow: none; }

/* FAQ */
#faq { background: var(--light-gray); }
#faq h2 { color: var(--dark2); margin-bottom: 40px; }
.faq-list { max-width: 800px; }
.faq-item { border-bottom: 1px solid #ddd; }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: 18px 0; font-size: 16px; font-weight: 600; cursor: pointer; color: var(--dark2); display: flex; justify-content: space-between; align-items: center; }
.faq-q span { font-size: 22px; color: var(--blue); transition: transform 0.3s; }
.faq-q.open span { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 18px; }
.faq-a.open { display: block; }
.faq-a p { color: #555; font-size: 15px; line-height: 1.7; }

/* CONTACT */
.contact-wrap { display: grid; grid-template-columns: 1fr 340px; gap: 60px; margin-top: 40px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input, .contact-form select, .contact-form textarea { padding: 12px 16px; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); color: #fff; border-radius: 4px; font-size: 15px; font-family: 'Open Sans', sans-serif; width: 100%; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.5); }
.contact-form select option { background: var(--dark2); color: #fff; }
.contact-details { color: rgba(255,255,255,0.85); }
.contact-details h3 { color: #fff; font-size: 22px; margin-bottom: 20px; }
.contact-details p { margin-bottom: 12px; font-size: 15px; }
.contact-details a { color: var(--blue); }
.contact-social { display: flex; gap: 16px; margin-top: 24px; }
.contact-social a { background: var(--blue); color: #fff; padding: 8px 20px; border-radius: 4px; font-size: 14px; font-weight: 600; }

/* FOOTER */
footer { background: var(--dark); padding: 32px 24px; text-align: center; }
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-logo { height: 40px; margin: 0 auto 16px; object-fit: contain; }
footer p { color: rgba(255,255,255,0.5); font-size: 13px; margin-bottom: 16px; }
.footer-links { display: flex; justify-content: center; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 13px; }
.footer-links a:hover { color: var(--blue); }

/* RESPONSIVE */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .two-col, .two-col.reverse { grid-template-columns: 1fr; direction: ltr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: 1fr; }
  .guarantee-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .infobar-inner { flex-direction: column; gap: 12px; }
  .info-divider { display: none; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 420px; }
  .turnaround-banner { grid-template-columns: 1fr; }
  .quality-section { grid-template-columns: 1fr; }
  .quality-vs { grid-template-columns: 1fr; }
  .vs-middle { margin: 0 auto; }
}
@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .guarantee-grid { grid-template-columns: 1fr; }
}

/* PRICING PLACEHOLDER */
.pricing-placeholder {
  width: 100%;
  height: 340px;
  background: #e8e8e8;
  border: 2px dashed #bbb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #999;
  font-weight: 600;
}

/* NO-SOFTWARE — image left, text right */
#no-software .two-col {
  direction: ltr;
}

/* RECENT WORKS GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.04);
}

@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .map-wrap iframe { width: 100%; }
}

/* ========== PROMO BANNER ========== */
#promo-banner { padding: 0; }
.promo-bg {
  position: relative;
  background-image: url('../images/about.png');
  background-size: cover;
  background-position: center;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.promo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 30, 75, 0.82);
}
.promo-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 70px 24px;
}
.promo-text { color: #fff; }
.promo-line1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 4px;
}
.promo-line2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1.05;
  margin-bottom: 4px;
}
.promo-line3 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(20px, 3.5vw, 38px);
  font-weight: 900;
  color: #5b9fef;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.promo-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 10px;
  max-width: 480px;
}
.promo-btns {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.btn-promo-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  padding: 13px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.2s;
}
.btn-promo-outline:hover { background: rgba(255,255,255,0.12); }
.btn-promo-solid {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  padding: 13px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  transition: background 0.2s;
}
.btn-promo-solid:hover { background: var(--blue-dark); }

/* Promo feature cards */
.promo-feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.promo-feat {
  background: rgba(12, 87, 198, 0.25);
  border: 1px solid rgba(91, 159, 239, 0.4);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.promo-feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 6px;
  color: #fff;
}
.promo-feat strong {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}
.promo-feat span {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .promo-inner { grid-template-columns: 1fr; gap: 32px; }
  .promo-feature-cards { grid-template-columns: 1fr 1fr; }
}


/* Trade Login button — logo blue */
.btn-hero-blue {
  background: #0c57c6 !important;
}
.btn-hero-blue:hover {
  background: #0944a0 !important;
}

/* Mockup price — logo blue */
.hero-mockup-price-blue {
  color: #0c57c6 !important;
}

/* Hero headline — mixed style */
.hero-h1-plain {
  color: rgba(255,255,255,0.80);
  font-weight: 400;
  font-size: 0.72em;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 4px;
}
.hero-h1-bold {
  color: #fff;
}

/* ── LAPTOP PHONE IMAGE ── */
.laptop-phone-img {
  width: 100%;
  max-width: 520px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
}

/* ── BENEFIT BY IMAGES ── */
.benefit-images-row {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 40px;
}
.benefit-img {
  width: calc(33.333% - 22px);
  max-width: 280px;
  min-width: 200px;
  height: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 720px) {
  .benefit-img { width: 80%; max-width: 300px; }
  .benefit-images-row { gap: 20px; }
}

/* ── COMPARE TABLE IMAGE ── */
.compare-table-img {
  width: 100%;
  max-width: 680px;
  height: auto;
  display: block;
  margin: 32px auto 0;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}


/* ── BANNER IMAGES (replacing text banners) ── */
#banners {
  background: #fff;
  padding: 32px 20px;
}
.banner-images {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.banner-img {
  width: 100%;
  max-width: 860px;
  height: auto;
  display: block;
}
@media (max-width: 600px) {
  .banner-img { max-width: 100%; }
}

/* ── BANNER IMAGES — consistent size fix ── */
.banner-img {
  width: 100% !important;
  max-width: 860px !important;
  height: auto !important;
}


/* Instagram icon */
.social-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: color 0.2s, transform 0.2s;
}
.social-instagram:hover {
  color: #E1306C;
  transform: scale(1.15);
}

/* ========== PRICING CARDS — INCLUSIONS ========== */
.pricing-badge {
  background: #2d2d2d;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.badge-from {
  color: #888;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.badge-price {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  margin-left: auto;
}
.pricing-card-body {
  padding: 18px 20px 22px;
}
.pricing-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pricing-inclusions {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.pricing-inclusions li {
  font-size: 0.88rem;
  color: #444;
  padding: 5px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pricing-inclusions li:last-child {
  border-bottom: none;
}
.btn-card {
  display: block;
  text-align: center;
  background: #0c57c6;
  color: #fff;
  padding: 11px 0;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.btn-card:hover {
  background: #0a47a8;
}


/* ========== HOW IT WORKS — VIDEO + 2x2 LAYOUT ========== */
.hiw-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 0;
}
.hiw-video {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.hiw-video-wrap {
  flex: 1;
  position: relative;
  width: 100%;
  min-height: 200px;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}
.hiw-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .hiw-layout {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}
