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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #555555;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

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

input, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  padding: 14px 32px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
}

.btn-primary {
  background: #0c4ce2;
  color: #ffffff;
  border-color: #0c4ce2;
  box-shadow: 0 4px 15px rgba(12, 76, 226, 0.3);
}
.btn-primary:hover {
  background: #0a3fc5;
  border-color: #0a3fc5;
  box-shadow: 0 6px 20px rgba(12, 76, 226, 0.4);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: #0c4ce2;
  border-color: #0c4ce2;
}
.btn-ghost:hover {
  background: #0c4ce2;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(12, 76, 226, 0.3);
  transform: translateY(-1px);
}

.btn-secondary {
  background: #feeb00;
  color: #1a1a2e;
  border-color: #feeb00;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.btn-secondary:hover {
  background: #e6d500;
  border-color: #e6d500;
  color: #1a1a2e;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.btn-ghost-white {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 14px;
}

.header-actions .btn-primary {
  background: #feeb00;
  color: #1a1a2e;
  border-color: #feeb00;
  box-shadow: none;
}
.header-actions .btn-primary:hover {
  background: #e6d500;
  border-color: #e6d500;
  box-shadow: none;
}

.btn-full {
  width: 100%;
}

/* ===== HEADER ===== */
.main-header {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}
.main-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 60px;
  width: auto;
}

/* ===== NAV ===== */
.main-nav {
  flex: 1;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #2D2D2D;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-link:hover {
  color: #0c4ce2;
  background: rgba(12, 76, 226, 0.05);
}

.chevron {
  transition: transform 0.3s ease;
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  z-index: 100;
}
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: #555;
  transition: background 0.2s, color 0.2s;
}
.dropdown-menu li a:hover {
  background: #eef2fd;
  color: #0c4ce2;
}

/* Desktop hover */
@media (min-width: 993px) {
  .has-dropdown:hover .dropdown-menu {
    display: block;
  }
  .has-dropdown:hover .chevron {
    transform: rotate(180deg);
  }
}

/* Dropdown open state (mobile) */
.has-dropdown.open > .dropdown-menu {
  display: block;
}
.has-dropdown.open > .dropdown-toggle .chevron {
  transform: rotate(180deg);
}

/* ===== HEADER ACTIONS ===== */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #2D2D2D;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.header-phone:hover {
  color: #0c4ce2;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #2D2D2D;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== MOBILE OVERLAY ===== */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
}
.mobile-overlay.active {
  display: block;
}

/* ===== MOBILE NAV ===== */
@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }
  .header-phone span {
    display: none;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 80px 20px 30px;
    overflow-y: auto;
    transition: right 0.3s ease;
  }
  .main-nav.open {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-link {
    padding: 12px 16px;
    font-size: 15px;
    justify-content: space-between;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 0 16px;
    background: #fafafa;
  }
  .dropdown-menu li a {
    padding: 10px 16px;
  }
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #eef2fd 0%, #f8faff 40%, #ffffff 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(254, 235, 0, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.hero-text h1 {
  font-size: 44px;
  font-weight: 700;
  color: #1A1A2E;
  line-height: 1.15;
  margin-bottom: 24px;
  position: relative;
}
.hero-text h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #feeb00;
  border-radius: 2px;
  margin-top: 16px;
}

.hero-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 12px;
  font-weight: 500;
}

.hero-small {
  font-size: 15px;
  color: #0c4ce2;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  color: #555;
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

/* ===== HERO IMAGE ===== */
.hero-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(12, 76, 226, 0.12);
  object-fit: cover;
}

/* ===== SECTIONS ===== */
.section {
  padding: 90px 0;
}
.section-gray {
  background: #f6f6f6;
}
.section-white {
  background: #ffffff;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #1A1A2E;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.3;
  position: relative;
  display: inline-block;
  width: 100%;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #feeb00;
  border-radius: 2px;
  margin: 16px auto 0;
}

.section-subtitle {
  font-size: 17px;
  color: #666;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.section-conclusion {
  font-size: 17px;
  color: #555;
  text-align: center;
  max-width: 700px;
  margin: 48px auto 0;
  line-height: 1.7;
}

.tagline {
  font-size: 18px;
  font-weight: 600;
  color: #1A1A2E;
  text-align: center;
  margin-top: 48px;
  line-height: 1.5;
}

/* ===== NEED GRID (Section 2) ===== */
.need-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 40px auto 0;
}

.need-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.need-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.need-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.need-card-body {
  padding: 20px;
}

.need-card-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0;
  text-align: center;
}

.need-grid-wide {
  grid-template-columns: repeat(3, 1fr);
  max-width: 100%;
}

@media (max-width: 900px) {
  .need-grid,
  .need-grid-wide {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .need-grid,
  .need-grid-wide {
    grid-template-columns: 1fr;
  }
}


/* ===== PROBLEMS GRID ===== */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 40px auto 0;
}

.problem-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #feeb00;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.problem-icon {
  margin-bottom: 16px;
}

.problem-card p {
  font-size: 16px;
  font-weight: 500;
  color: #2D2D2D;
}

/* ===== STORAGE TWO-COL ===== */
.storage-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.storage-two-col-image {
  max-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  overflow: hidden;
}

.storage-two-col-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
}

.storage-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: #2D2D2D;
  border-bottom: 1px solid #f0f0f0;
}
.storage-list-item:last-child {
  border-bottom: none;
}
.storage-list-item svg {
  flex-shrink: 0;
}

/* ===== HOW IT WORKS / STEPS ===== */
.how-it-works {
  margin-top: 64px;
  text-align: center;
}

.how-it-works h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1A1A2E;
  margin-bottom: 40px;
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}

.step {
  text-align: center;
  flex: 1;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #0c4ce2;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 4px 15px rgba(12, 76, 226, 0.35);
}

.step p {
  font-size: 15px;
  font-weight: 500;
  color: #2D2D2D;
  padding: 0 8px;
}

.step-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #0c4ce2, #feeb00);
  border-radius: 2px;
  flex-shrink: 0;
  margin-bottom: 30px;
}

.steps-tagline {
  font-size: 18px;
  font-weight: 600;
  color: #0c4ce2;
  margin: 32px 0 24px;
}

/* ===== COMPARISON CARDS (BENEFITS) ===== */
.comparison-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 40px;
  max-width: 900px;
  margin: 40px auto 0;
}

.comparison-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  padding: 36px 28px 48px;
  position: relative;
  flex: 1;
}
.comparison-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  border-radius: 20px 20px 0 0;
}

.comparison-negative {
  border-top: 5px solid #e53935;
}
.comparison-positive {
  border-top: 5px solid #43a047;
}

.comparison-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #1A1A2E;
  margin-bottom: 24px;
  line-height: 1.4;
  text-align: center;
}

.comparison-list {
  list-style: none;
}
.comparison-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: #2D2D2D;
  border-bottom: 1px solid #f0f0f0;
}
.comparison-list li:last-child {
  border-bottom: none;
}
.comparison-list li svg {
  flex-shrink: 0;
}

/* Speech bubble pointer */
.comparison-pointer {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.comparison-pointer::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
.comparison-pointer-red {
  background: #e53935;
}
.comparison-pointer-red::before {
  border-bottom: 10px solid #e53935;
}
.comparison-pointer-green {
  background: #43a047;
}
.comparison-pointer-green::before {
  border-bottom: 10px solid #43a047;
}

/* VS divider */
.comparison-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #1A1A2E;
  background: #feeb00;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  align-self: center;
  margin: 0 -16px;
  position: relative;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ===== SAFETY TWO-COL ===== */
.safety-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 48px;
}

.video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #e0e0e0;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: #888;
}

.safety-list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #f0f0f0;
}
.safety-list-item:last-child {
  border-bottom: none;
}

.safety-list-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #eef2fd;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.safety-list-item span {
  font-size: 16px;
  font-weight: 600;
  color: #2D2D2D;
}

.safety-video iframe {
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* ===== AUDIENCE TWO-COL ===== */
.audience-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 48px;
}

.audience-list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #e0e0e0;
}
.audience-list-item:last-child {
  border-bottom: none;
}

.audience-list-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.audience-list-item span {
  font-size: 16px;
  font-weight: 600;
  color: #2D2D2D;
}

.audience-video iframe {
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pricing-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 36px 24px;
  text-align: center;
  position: relative;
  border: 2px solid transparent;
  border-top: 3px solid #0c4ce2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1A1A2E;
  margin-bottom: 4px;
}

.pricing-dimensions {
  font-size: 13px;
  color: #999;
  margin-bottom: 16px;
}

.price-old {
  font-size: 15px;
  color: #999;
  text-decoration: line-through;
  margin-bottom: 4px;
}

.pricing-from {
  font-size: 13px;
  color: #999;
  margin-bottom: 2px;
}

.price-current {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 24px;
}

.price-current .price-period {
  font-size: 15px;
  font-weight: 400;
  color: #666;
}

.pricing-note {
  text-align: center;
  font-size: 14px;
  color: #888;
  margin-top: 32px;
}

/* ===== LOCATIONS ===== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.location-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 24px;
  border: 1px solid #e8e8e8;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.location-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.location-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #eef2fd;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1A1A2E;
  margin-bottom: 2px;
  transition: color 0.2s ease;
}
.location-card:hover .location-info h3 {
  color: #0c4ce2;
}

.location-info span {
  font-size: 14px;
  color: #888;
  font-weight: 400;
}

.locations-access {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-top: 40px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.locations-link {
  color: #0c4ce2;
  font-weight: 600;
  transition: color 0.2s;
}
.locations-link:hover {
  color: #0a3fc5;
  text-decoration: underline;
}

.locations-map {
  margin-bottom: 32px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.locations-note {
  text-align: center;
  font-size: 15px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== SOCIAL PROOF / TESTIMONIALS ===== */
.experience-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #feeb00;
  padding: 16px 32px;
  border-radius: 50px;
  margin: 0 auto 48px;
  width: fit-content;
  box-shadow: 0 4px 15px rgba(254, 235, 0, 0.3);
}
.experience-badge span {
  font-size: 18px;
  font-weight: 600;
  color: #1A1A2E;
}

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

.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0c4ce2, #feeb00);
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stars {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 16px;
}
.stars svg {
  fill: #feeb00 !important;
}

.google-badge {
  font-size: 11px;
  font-weight: 600;
  color: #888;
  margin-left: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonial-text {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 600;
  color: #1A1A2E;
}

/* ===== FAQ ===== */
.faq-accordion {
  max-width: 750px;
  margin: 40px auto 0;
}

.faq-item {
  border-bottom: 1px solid #E0E0E0;
  transition: border-color 0.3s;
}
.faq-item:first-child {
  border-top: 1px solid #E0E0E0;
}
.faq-item.active {
  border-left: 3px solid #feeb00;
  padding-left: 16px;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 17px;
  font-weight: 600;
  color: #2D2D2D;
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover {
  color: #0c4ce2;
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 0 20px;
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.section-cta {
  background: linear-gradient(135deg, #0c4ce2 0%, #0839a8 50%, #0c4ce2 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(254, 235, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-taglines {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
}

.cta-subtext {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 16px;
}

.cta-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin: 16px 0 28px;
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.main-footer {
  background: #F6F6F6;
  color: #364F60;
  padding: 60px 0 0;
}

.footer-inner-simple {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
}

.footer-logo {
  margin-bottom: 12px;
}
.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  transition: background 0.2s ease;
}
.footer-social a:hover {
  background: rgba(0, 0, 0, 0.12);
}
.footer-social img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(0.3);
  transition: filter 0.2s ease;
}
.footer-social a:hover img {
  filter: brightness(0) invert(0);
}

.footer-brand-simple p {
  font-size: 14px;
  line-height: 1.6;
  color: #364F60;
}

.footer-contact-simple h4,
.footer-schedule-simple h4 {
  font-size: 15px;
  font-weight: 600;
  color: #1A1A2E;
  margin-bottom: 16px;
}

.footer-contact-simple p,
.footer-schedule-simple p {
  font-size: 14px;
  color: #364F60;
  line-height: 1.6;
  margin-bottom: 4px;
}

.footer-contact-simple a {
  color: #364F60;
  transition: color 0.2s;
}
.footer-contact-simple a:hover {
  color: #0c4ce2;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 48px;
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: #364F60;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-text h1 {
    font-size: 34px;
  }
  .section {
    padding: 70px 0;
  }
  .section-title {
    font-size: 28px;
  }
  .safety-two-col {
    grid-template-columns: 1fr;
  }
  .storage-two-col {
    grid-template-columns: 1fr;
  }
  .audience-two-col {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner-simple {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .hero {
    padding: 40px 0;
  }
  .hero-text h1 {
    font-size: 28px;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .hero-ctas .btn {
    text-align: center;
    width: 100%;
  }
  .hero-badges {
    flex-direction: column;
    gap: 8px;
  }
  .section {
    padding: 50px 0;
  }
  .section-title {
    font-size: 24px;
  }
  .problems-grid {
    grid-template-columns: 1fr;
  }
  .problem-card {
    border-left: none;
    border-bottom: 4px solid #feeb00;
  }
  .comparison-grid {
    flex-direction: column;
    gap: 32px;
  }
  .comparison-vs {
    margin: -16px auto;
  }
  .safety-two-col {
    grid-template-columns: 1fr;
  }
  .storage-two-col {
    grid-template-columns: 1fr;
  }
  .audience-two-col {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .locations-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    flex-direction: column;
    gap: 0;
  }
  .step-line {
    width: 3px;
    height: 30px;
    margin-bottom: 0;
    background: linear-gradient(180deg, #0c4ce2, #feeb00);
  }
  .footer-inner-simple {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .cta-content h2 {
    font-size: 28px;
  }
  .experience-badge {
    padding: 12px 20px;
  }
  .experience-badge span {
    font-size: 15px;
  }
}

/* ===== ITEMS GRID (depozitare-firme) ===== */
.items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.item-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border-top: 3px solid #0c4ce2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.item-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.item-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #eef2fd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.item-card p {
  font-size: 15px;
  font-weight: 500;
  color: #2D2D2D;
}

/* ===== URGENCY CARD ===== */
.urgency-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-left: 5px solid #feeb00;
  max-width: 800px;
  margin: 40px auto 0;
  text-align: center;
}

.urgency-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

.urgency-card .btn {
  margin-top: 16px;
}

/* ===== BENEFIT CENTER LIST ===== */
.benefit-center-list {
  max-width: 600px;
  margin: 40px auto 0;
}

/* ===== LIST HEADING ===== */
.list-heading {
  font-size: 17px;
  font-weight: 600;
  color: #1A1A2E;
  margin-bottom: 8px;
}

/* ===== RESPONSIVE: items-grid, urgency-card ===== */
@media (max-width: 992px) {
  .items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .items-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
  .urgency-card {
    padding: 28px 20px;
  }
}