:root {
  --font-main: 'Instrument Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --lime: #d8f88d;
  --lime-hover: #c8f06f;
  --lime-glow: rgba(216, 248, 141, 0.35);
  --lime-soft: rgba(216, 248, 141, 0.12);
  --dark-bg: #0c0e12;
  --dark-surface: #14171d;
  --dark-card: #191d24;
  --dark-border: rgba(255, 255, 255, 0.08);
  --light-bg: #f7f9fb;
  --light-surface: #ffffff;
  --light-border: #e6e9ef;
  --text-main: #0f1319;
  --text-secondary: #586171;
  --text-muted: #8a94a6;
  --text-inverse: #ffffff;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-full: 9999px;
  --shadow-sm: 0 4px 16px rgba(12, 14, 18, 0.04);
  --shadow-md: 0 12px 36px rgba(12, 14, 18, 0.07);
  --shadow-lg: 0 24px 64px rgba(12, 14, 18, 0.12);
  --shadow-glow: 0 10px 40px var(--lime-glow);
  --transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--light-bg);
  color: var(--text-main);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* ---------------- HEADER / NAVBAR ---------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.header.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--light-border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--lime);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(216, 248, 141, 0.4);
  transition: transform 0.2s ease;
}

.brand-icon:hover {
  transform: scale(1.05) rotate(-2deg);
}

.brand-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand-name-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.brand-name {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-main);
}

.brand-sub {
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--dark-bg);
  color: #fff;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lime);
  transition: width 0.2s ease;
  border-radius: 2px;
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-header {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* ---------------- BUTTONS & PILLS ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--dark-bg);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(12, 14, 18, 0.15);
}

.btn-primary:hover {
  background: #202632;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(12, 14, 18, 0.25);
}

.btn-lime {
  background: var(--lime);
  color: #0c0e12;
  font-weight: 700;
  box-shadow: 0 6px 24px var(--lime-glow);
}

.btn-lime:hover {
  background: var(--lime-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(216, 248, 141, 0.6);
}

.btn-secondary {
  background: var(--light-surface);
  color: var(--text-main);
  border-color: var(--light-border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: #f1f3f7;
  border-color: #d8dde6;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--light-border);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* ---------------- HERO SECTION ---------------- */
.hero-section {
  position: relative;
  padding: 140px 0 65px;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(216, 248, 141, 0.25) 0%, rgba(247, 249, 251, 0) 60%),
              radial-gradient(circle at 10% 80%, rgba(200, 220, 255, 0.2) 0%, rgba(247, 249, 251, 0) 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 620px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text-main);
  margin: 20px 0 20px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #111827 0%, #374151 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.hero-title .lime-brush {
  position: relative;
  display: inline-block;
}

.hero-title .lime-brush::before {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 6px;
  height: 14px;
  background: var(--lime);
  z-index: -1;
  border-radius: 4px;
  transform: rotate(-1deg);
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.btn-text-mobile {
  display: none;
}

.btn-text-desktop {
  display: inline;
}

.store-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--dark-bg);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--dark-border);
  transition: var(--transition);
  min-width: 175px;
  box-sizing: border-box;
}

.store-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex-shrink: 0;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-btn-small {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.store-btn-title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.15;
}

.hero-qr-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
}

.hero-qr-box:hover {
  border-color: #b8e06a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.qr-thumb {
  width: 38px;
  height: 38px;
  background: #f1f3f7;
  border-radius: 6px;
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-thumb svg {
  width: 100%;
  height: 100%;
}

.qr-text {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-main);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--light-border);
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-val {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
}

.metric-val .star {
  color: #f59e0b;
}

.metric-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ---------------- HERO PHONE SHOWCASE ---------------- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(216, 248, 141, 0.45) 0%, rgba(216, 248, 141, 0) 70%);
  border-radius: 50%;
  z-index: 1;
  filter: blur(40px);
}

.phone-wrapper {
  position: relative;
  z-index: 2;
  width: 285px;
  background: #000000;
  border-radius: 46px;
  padding: 10px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25),
              0 0 0 1px rgba(255, 255, 255, 0.1),
              inset 0 0 0 2px rgba(255, 255, 255, 0.2);
  transform: perspective(1000px) rotateY(-4deg) rotateX(4deg);
  transition: transform 0.5s ease;
}

.phone-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.phone-screen {
  position: relative;
  width: 100%;
  border-radius: 38px;
  overflow: hidden;
  background: #ffffff;
  aspect-ratio: 9 / 19.5;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating Badges */
.floating-widget {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float-widget 4s ease-in-out infinite alternate;
}

.widget-top-left {
  top: 15%;
  left: -35px;
  animation-delay: 0s;
}

.widget-bottom-right {
  bottom: 18%;
  right: -30px;
  animation-delay: 1.5s;
}

@keyframes float-widget {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

.widget-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.widget-content {
  display: flex;
  flex-direction: column;
}

.widget-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
}

.widget-subtitle {
  font-size: 0.75rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

/* ---------------- SECTION HEADERS ---------------- */
.section {
  padding: 90px 0;
}

.section-dark {
  background-color: var(--dark-bg);
  color: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  background: var(--lime);
  color: #0c0e12;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-dark .section-tag {
  background: var(--lime);
  color: #0c0e12;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.section-dark .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

/* ---------------- BENTO GRID SERVICES ---------------- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.bento-card {
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #cbd2df;
}

.bento-span-8 { grid-column: span 8; }
.bento-span-7 { grid-column: span 7; }
.bento-span-6 { grid-column: span 6; }
.bento-span-5 { grid-column: span 5; }
.bento-span-4 { grid-column: span 4; }

.bento-card-header {
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.bento-category-tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 8px;
  display: block;
}

.bento-title {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 8px;
}

.bento-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 320px;
}

.bento-span-8 .bento-desc,
.bento-span-7 .bento-desc {
  max-width: 440px;
}

.bento-image-wrap {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 170px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  z-index: 1;
}

.bento-card:hover .bento-image-wrap {
  transform: scale(1.08) translateY(-4px);
}

.bento-image-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.08));
}

.bento-footer {
  margin-top: 40px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bento-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  background: #f1f4f8;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}

.bento-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--text-main);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.bento-card:hover .bento-arrow {
  background: var(--lime);
  color: #0c0e12;
  transform: translateX(4px);
}

/* ---------------- INTERACTIVE SERVICE CALCULATOR TABS ---------------- */
.calc-section {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-md);
  padding: 40px;
  margin-top: 40px;
}

.calc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.calc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: #f3f5f8;
  padding: 6px;
  border-radius: var(--radius-sm);
}

.calc-tab {
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  color: var(--text-secondary);
  transition: var(--transition);
}

.calc-tab.active {
  background: #ffffff;
  color: var(--text-main);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.calc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.calc-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.calc-option-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: #f8fafc;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.calc-option-row:hover,
.calc-option-row.selected {
  border-color: #111827;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.calc-option-info {
  display: flex;
  flex-direction: column;
}

.calc-option-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
}

.calc-option-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.calc-option-price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-main);
}

.calc-summary-card {
  background: var(--dark-bg);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

.calc-summary-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--lime-glow) 0%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
}

.calc-total-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}

.calc-total-val {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--lime);
  margin-bottom: 12px;
}

.calc-total-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
  margin-bottom: 24px;
}

.calc-summary-card .btn {
  white-space: normal;
  text-align: center;
  padding: 14px 18px;
  font-size: 0.95rem;
  width: 100%;
}

/* ---------------- ADVANTAGES / FEATURES ---------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 248, 141, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.feature-img-wrap {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

/* ---------------- HOW IT WORKS ---------------- */
.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.step-card {
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.step-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--lime);
  color: #0c0e12;
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px var(--lime-glow);
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ---------------- TEAM & MASCOT ---------------- */
.team-banner {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 60px;
  color: var(--text-main);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-md);
}

.team-banner::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(216, 248, 141, 0.3) 0%, rgba(216, 248, 141, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.team-tag {
  background: var(--lime);
  color: #0c0e12;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 16px;
}

.team-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text-main);
}

.team-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
}

.team-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.team-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 500;
}

.team-point-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lime);
  color: #0c0e12;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.team-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.team-visual img {
  max-width: 380px;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.08));
}

/* ---------------- REVIEWS ---------------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.review-text {
  font-size: 0.96rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--light-border);
  padding-top: 14px;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f1f3f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-main);
  font-size: 0.95rem;
}

.author-name {
  font-size: 0.92rem;
  font-weight: 700;
}

.author-city {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.review-service-badge {
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--lime-soft);
  color: #2b4800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* ---------------- FAQ ACCORDION ---------------- */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.faq-item:hover {
  border-color: #cbd2df;
}

.faq-trigger {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  background: transparent;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f1f3f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-secondary);
  transition: transform 0.28s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--lime);
  color: #0c0e12;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-body {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------------- FINAL CTA ---------------- */
.cta-banner {
  background: radial-gradient(circle at 10% 20%, rgba(216, 248, 141, 0.2) 0%, rgba(12, 14, 18, 1) 60%),
              #0c0e12;
  border-radius: var(--radius-lg);
  padding: 70px 60px;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--dark-border);
  box-shadow: var(--shadow-lg);
}

.cta-banner-content {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-banner-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-banner-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  line-height: 1.6;
}

.cta-btn-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.cta-btn-group .store-btn {
  min-width: 185px;
  justify-content: center;
}

/* ---------------- FOOTER ---------------- */
.footer {
  background: #08090b;
  color: #ffffff;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-brand-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
  max-width: 320px;
  line-height: 1.6;
}

.footer-col-title {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--lime);
}

.footer-contacts p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 8px;
}

.footer-contacts a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-contacts a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .hero-title .lime-brush::before {
    left: 0;
    right: 0;
  }
  
  .hero-cta-group {
    justify-content: center;
  }
  
  .hero-metrics {
    justify-content: center;
  }
  
  .bento-span-8, .bento-span-7, .bento-span-6, .bento-span-5, .bento-span-4 {
    grid-column: span 6;
  }
  
  .calc-body {
    grid-template-columns: 1fr;
  }
  
  .steps-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 24px;
  }
  
  .team-points {
    align-items: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 12px 0;
  }

  .header.scrolled {
    padding: 8px 0;
  }

  .header-inner {
    gap: 8px;
  }

  .container {
    padding: 0 16px;
  }

  .brand-logo {
    gap: 8px;
  }

  .brand-icon {
    width: 36px;
    height: 36px;
  }

  .brand-icon img {
    width: 26px;
    height: 26px;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .brand-sub {
    font-size: 0.7rem;
    padding: 2px 6px;
  }

  .btn-header {
    padding: 8px 14px;
    font-size: 0.84rem;
  }

  .btn-text-desktop {
    display: none;
  }

  .btn-text-mobile {
    display: inline;
  }

  .nav-menu {
    display: none;
  }
  
  .hero-section {
    padding: 110px 0 60px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .store-badge-row {
    justify-content: center;
    width: 100%;
  }

  .store-btn {
    min-width: 160px;
    justify-content: center;
  }

  .bento-span-8, .bento-span-7, .bento-span-6, .bento-span-5, .bento-span-4 {
    grid-column: span 12;
  }
  
  .bento-image-wrap {
    width: 130px;
    height: 130px;
  }
  
  .calc-section {
    padding: 20px 14px;
  }

  .calc-summary-card {
    padding: 24px 16px;
  }

  .calc-summary-card .btn {
    padding: 12px 14px;
    font-size: 0.88rem;
  }

  .steps-wrapper {
    grid-template-columns: 1fr;
  }
  
  .cta-banner {
    padding: 40px 20px;
  }

  .cta-btn-group {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn-group .store-btn {
    width: 100%;
    max-width: 260px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .metric-label {
    font-size: 0.74rem;
  }
  
  .widget-top-left {
    left: 0px;
    top: 5%;
  }
  
  .widget-bottom-right {
    right: 0px;
    bottom: 5%;
  }
  
  .phone-wrapper {
    width: 270px;
    transform: none;
  }
}

@media (max-width: 380px) {
  .brand-sub {
    display: none;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .btn-header {
    padding: 7px 10px;
    font-size: 0.8rem;
  }

  .store-btn {
    width: 100%;
    max-width: 260px;
  }
}
