/* ============================================================
   VYOV Security — Vault Storage
   Theme: Elegant Light + Burgundy
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: #3a3a3a;
  line-height: 1.7;
  background: #faf9f7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #1a1a1a;
}

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

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

ul {
  list-style: none;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
  color: #1a1a1a;
  letter-spacing: -0.3px;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: #7a2332;
  margin: 18px auto 0;
}

.section-subtitle {
  text-align: center;
  color: #888;
  margin-bottom: 56px;
  font-size: 0.98rem;
  font-weight: 300;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 0;
  font-weight: 500;
  font-size: 0.85rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.btn-primary {
  background: #7a2332;
  color: #fff;
}

.btn-primary:hover {
  background: #5e1a27;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(122, 35, 50, 0.25);
}

.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  background: transparent;
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline {
  border: 2px solid #7a2332;
  color: #7a2332;
  background: transparent;
}

.btn-outline:hover {
  background: #7a2332;
  color: #fff;
}

.btn-light {
  background: #ffffff;
  color: #1a1a1a;
  font-weight: 600;
}

.btn-light:hover {
  background: #7a2332;
  color: #fff;
  transform: translateY(-2px);
}

.btn-nav {
  background: #7a2332;
  color: #fff;
  padding: 10px 28px;
}

.btn-nav:hover {
  background: #5e1a27;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #eee;
}

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

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #7a2332;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.logo span {
  color: #1a1a1a;
  font-weight: 400;
  margin-left: 4px;
  letter-spacing: 1px;
  text-transform: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  opacity: 0.5;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav a {
  color: #666;
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.25s;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.main-nav a:hover,
.main-nav a.active {
  color: #7a2332;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #1a1a1a;
  font-size: 1.6rem;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(30, 10, 15, 0.8) 0%,
    rgba(20, 8, 12, 0.5) 50%,
    rgba(30, 10, 15, 0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 100px 0;
}

.hero-badge {
  display: inline-block;
  padding: 10px 24px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 32px;
  font-family: 'Poppins', sans-serif;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 600;
  margin-bottom: 28px;
  line-height: 1.05;
  color: #ffffff;
  letter-spacing: -1px;
}

.hero-lead {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
}

.hero p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 40px;
  font-weight: 300;
  font-size: 0.95rem;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== IMAGE SHOWCASE ===== */
.showcase {
  background: #fff;
  padding: 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.showcase-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.showcase-item:hover img {
  transform: scale(1.08);
}

.showcase-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 28px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.showcase-item:hover .showcase-caption {
  transform: translateY(0);
}

/* ===== BENEFITS ===== */
.benefits {
  padding: 110px 0;
  background: #faf9f7;
}

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

.benefit-card {
  background: #ffffff;
  overflow: hidden;
  border: 1px solid #ede9e3;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.benefit-img {
  height: 220px;
  overflow: hidden;
}

.benefit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.benefit-card:hover .benefit-img img {
  transform: scale(1.06);
}

.benefit-body {
  padding: 32px 32px 36px;
}

.benefit-body h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #7a2332;
}

.benefit-body p {
  color: #777;
  font-size: 0.9rem;
  line-height: 1.8;
  font-weight: 300;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 120px 0;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(122, 35, 50, 0.88);
  z-index: 1;
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-inner h2 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.cta-inner p {
  font-size: 1.05rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== PRICING ===== */
.pricing {
  padding: 110px 0;
  background: #ffffff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  background: #faf9f7;
  border: 1px solid #ede9e3;
  padding: 48px 40px 44px;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
  border: 2px solid #7a2332;
  background: #fff;
  box-shadow: 0 8px 40px rgba(122, 35, 50, 0.08);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #7a2332;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  padding: 7px 28px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.pricing-header h3 {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.pricing-desc {
  color: #999;
  font-size: 0.85rem;
  margin-bottom: 32px;
  font-weight: 300;
}

.price {
  font-size: 3.5rem;
  font-weight: 700;
  color: #7a2332;
  letter-spacing: -1px;
  font-family: 'Cormorant Garamond', serif;
}

.price-note {
  color: #aaa;
  font-size: 0.82rem;
  margin-top: 6px;
  font-weight: 300;
}

.price-min {
  margin-top: 16px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1a1a1a;
}

.price-min span {
  font-weight: 300;
  color: #999;
  font-size: 0.88rem;
}

.pricing-features {
  text-align: left;
  margin: 36px 0;
  padding: 0 4px;
}

.pricing-features li {
  padding: 11px 0;
  font-size: 0.9rem;
  color: #666;
  border-bottom: 1px solid #f0ece6;
  font-weight: 400;
}

.pricing-features li::before {
  content: '—';
  color: #7a2332;
  font-weight: 700;
  margin-right: 14px;
}

/* ===== FAQ ===== */
.faq {
  padding: 110px 0;
  background: #faf9f7;
}

.faq-list {
  max-width: 720px;
  margin: 52px auto 0;
}

.faq-item {
  background: #ffffff;
  margin-bottom: 8px;
  overflow: hidden;
  border: 1px solid #ede9e3;
  transition: border-color 0.3s ease;
}

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

.faq-item.open {
  border-color: #7a2332;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 28px;
  font-size: 1.05rem;
  font-weight: 500;
  font-family: 'Cormorant Garamond', serif;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #1a1a1a;
  transition: color 0.2s;
}

.faq-question:hover {
  color: #7a2332;
}

.faq-icon {
  font-size: 1.3rem;
  color: #7a2332;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

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

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 28px 24px;
  color: #777;
  font-size: 0.9rem;
  line-height: 1.85;
  font-weight: 300;
}

/* ===== CONTACT ===== */
.contact {
  position: relative;
  padding: 110px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(250, 249, 247, 0.95);
  z-index: 1;
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.4rem;
  margin-bottom: 28px;
  color: #1a1a1a;
  font-weight: 600;
}

.contact-info h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #7a2332;
  margin-top: 16px;
}

.contact-info p {
  margin-bottom: 16px;
  color: #777;
  font-weight: 300;
  font-size: 0.95rem;
}

.contact-info strong {
  color: #3a3a3a;
  font-weight: 500;
}

.contact-info a {
  color: #7a2332;
  font-weight: 500;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form {
  background: #ffffff;
  padding: 44px;
  border: 1px solid #ede9e3;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.contact-form h2 {
  font-size: 1.6rem;
  margin-bottom: 32px;
  color: #1a1a1a;
  font-weight: 500;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: #999;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e0dbd3;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: #faf9f7;
  color: #1a1a1a;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #7a2332;
  box-shadow: 0 0 0 3px rgba(122, 35, 50, 0.06);
  background: #fff;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #1a1a1a;
  color: #777;
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  color: #777;
  transition: color 0.25s;
}

.footer-links a:hover {
  color: #fff;
}

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

@media (max-width: 768px) {
  .main-nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 28px;
    gap: 16px;
    border-bottom: 1px solid #eee;
  }

  .main-nav ul.open {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .hero {
    min-height: 75vh;
    background-attachment: scroll;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .cta-banner,
  .contact {
    background-attachment: scroll;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .cta-inner h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-content {
    padding: 50px 0;
  }

  .hero-buttons {
    flex-direction: column;
  }

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

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .contact-form {
    padding: 28px;
  }

  .benefit-body {
    padding: 24px 24px 28px;
  }
}
