/* ===== Variables ===== */
:root {
  --navy: #1a2744;
  --navy-dark: #0a0f1a;
  --navy-light: #2a3f6b;
  --gold: #c9a84c;
  --gold-light: #e8d48b;
  --gold-dark: #a88a2e;
  --red: #e60000;
  --red-dark: #b80000;
  --red-glow: rgba(230, 0, 0, 0.4);
  --cream: #f5f0e8;
  --burgundy: #722f37;
  --white: #ffffff;
  --gray-50: #f8f9fb;
  --gray-100: #eef0f4;
  --gray-200: #d8dce3;
  --gray-400: #8b95a5;
  --gray-600: #4a5568;
  --gray-800: #1e2533;
  --shadow: 0 4px 24px rgba(26, 39, 68, 0.08);
  --shadow-lg: 0 20px 60px rgba(26, 39, 68, 0.15);
  --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.35);
  --radius: 14px;
  --radius-lg: 24px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Montserrat', sans-serif;
  --font-display: 'Playfair Display', serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Animations ===== */
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(201, 168, 76, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.5; }
}
@keyframes shine {
  0% { left: -100%; }
  100% { left: 200%; }
}
@keyframes glow {
  0%, 100% { text-shadow: 0 0 20px var(--red-glow), 0 0 40px var(--red-glow); }
  50% { text-shadow: 0 0 40px var(--red-glow), 0 0 80px var(--red-glow); }
}
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.reveal-delay-1 { animation-delay: 0.15s; }
.reveal-delay-2 { animation-delay: 0.3s; }
.reveal-delay-3 { animation-delay: 0.45s; }
.reveal-delay-4 { animation-delay: 0.6s; }

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Ticker ===== */
.ticker {
  background: linear-gradient(90deg, var(--red) 0%, #cc0000 50%, var(--red) 100%);
  color: var(--white);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.ticker-track {
  display: inline-flex;
  gap: 32px;
  animation: ticker 25s linear infinite;
}
.ticker-track span { flex-shrink: 0; }
.ticker-dot { color: var(--gold-light); font-size: 0.6rem; }

/* ===== Top Bar ===== */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 700;
  transition: color var(--transition);
}
.top-bar-phone:hover { color: var(--gold-light); }
.pulse-ring { animation: pulse-ring 2s infinite; border-radius: 6px; padding: 2px 8px; }

/* ===== Header ===== */
.header {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}
.header.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  border-bottom-color: rgba(201, 168, 76, 0.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
}
.logo img {
  height: 68px;
  width: auto;
  transition: transform var(--transition);
}
.logo:hover img { transform: scale(1.03); }
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: 10px;
  transition: all var(--transition);
  position: relative;
}
.nav a:not(.nav-cta):hover { color: var(--gold-dark); }
.nav-link.active {
  color: var(--gold-dark);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%) !important;
  color: var(--navy-dark) !important;
  margin-left: 8px;
  box-shadow: var(--shadow-gold);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.45) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 300;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  position: relative;
  overflow: hidden;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy-dark);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(201, 168, 76, 0.45);
}
.btn-navy {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}
.btn-navy:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(26, 39, 68, 0.3); }
.btn-red {
  background: linear-gradient(135deg, var(--red) 0%, #ff2222 100%);
  color: var(--white);
}
.btn-red:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(230, 0, 0, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-3px);
}
.btn-glass {
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.08) !important;
}
.btn-shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shine 3s infinite;
}
.btn-sm { padding: 11px 24px; font-size: 0.82rem; }
.btn-full { width: 100%; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: kenBurns 20s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(10,15,26,0.92) 0%, rgba(26,39,68,0.7) 45%, rgba(114,47,55,0.35) 100%);
}
.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}
.shape-1 {
  width: 400px; height: 400px;
  background: var(--gold);
  top: -100px; right: -100px;
  animation: float 8s ease-in-out infinite;
}
.shape-2 {
  width: 300px; height: 300px;
  background: var(--burgundy);
  bottom: 10%; left: -80px;
  animation: float 10s ease-in-out infinite reverse;
}
.shape-3 {
  width: 200px; height: 200px;
  background: var(--red);
  top: 40%; right: 20%;
  animation: float 6s ease-in-out infinite;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 24px 120px;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 8px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shine 4s linear infinite;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin: 24px 0 40px;
  max-width: 520px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 18px 24px;
  transition: all var(--transition);
}
.stat-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.3);
}
.stat-icon {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
}
.stat-card strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
}
.stat-card span {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color var(--transition);
}
.scroll-indicator:hover { color: var(--gold); }
.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}

/* ===== Stats Banner ===== */
.stats-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.stats-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}
.stats-item {
  text-align: center;
  color: var(--white);
}
.stats-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stats-plus {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
}
.stats-item p {
  margin-top: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== Section Headers ===== */
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 14px;
  position: relative;
}
.section-tag::before,
.section-tag::after {
  content: '★';
  margin: 0 10px;
  font-size: 0.6rem;
  color: var(--gold);
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-header h2 .accent,
.about-text h2 .accent {
  color: var(--gold-dark);
}
.section-header p {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===== Services ===== */
.services {
  padding: 110px 0;
  background: var(--gray-50);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  padding: 36px 28px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 168, 76, 0.2);
}
.service-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 3rem;
  font-weight: 900;
  color: var(--gray-100);
  line-height: 1;
  transition: color var(--transition);
}
.service-card:hover .service-num { color: rgba(201, 168, 76, 0.15); }
.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
  transition: transform var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.08) rotate(-3deg); }
.service-card h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 800;
}
.service-card p {
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: gap var(--transition);
}
.service-link:hover { gap: 12px; color: var(--navy); }

/* ===== Inventory ===== */
.inventory {
  padding: 110px 0;
  background: var(--white);
}
.inventory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.inventory-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}
.inventory-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.inventory-img {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--cream);
}
.inventory-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.inventory-card:hover .inventory-img img { transform: scale(1.08); }
.inventory-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-light);
  background: linear-gradient(135deg, var(--cream) 0%, var(--gray-100) 100%);
}
.inventory-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}
.inventory-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 26, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.inventory-card:hover .inventory-overlay { opacity: 1; }
.inventory-body { padding: 28px; }
.inventory-body h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 4px;
  font-weight: 800;
}
.inventory-type {
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.inventory-features { margin-bottom: 20px; }
.inventory-features li {
  color: var(--gray-600);
  font-size: 0.9rem;
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
}
.inventory-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
}
.inventory-note {
  text-align: center;
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-top: 48px;
  font-style: italic;
}

/* ===== IBUY Section ===== */
.ibuy {
  padding: 110px 0;
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}
.ibuy-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(230,0,0,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 50%);
}
.ibuy-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ibuy-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.ibuy-card-glow {
  position: absolute;
  inset: -20px;
  background: var(--red);
  border-radius: var(--radius-lg);
  filter: blur(40px);
  opacity: 0.25;
  animation: pulse-dot 3s ease-in-out infinite;
}

/* Modern IBUY Card */
.ibuy-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 340px;
  background: linear-gradient(160deg, #ff1a1a 0%, #cc0000 45%, #a80000 100%);
  border-radius: 24px;
  padding: 36px 32px 32px;
  text-align: center;
  box-shadow:
    0 24px 80px rgba(230, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -2px 0 rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  transition: transform var(--transition);
}
.ibuy-visual:hover .ibuy-card {
  transform: scale(1.03) rotate(-1deg);
}
.ibuy-card-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 60%
  );
  animation: shine 4s infinite;
  pointer-events: none;
}
.ibuy-card-top {
  margin-bottom: 20px;
}
.ibuy-card-tag {
  display: inline-block;
  background: rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.9);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.ibuy-card-brand {
  margin-bottom: 28px;
  line-height: 0.95;
}
.ibuy-card-line {
  display: block;
  font-size: clamp(2.8rem, 8vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 2px;
  text-shadow:
    2px 2px 0 rgba(0, 0, 0, 0.25),
    0 4px 20px rgba(0, 0, 0, 0.2);
}
.ibuy-card-accent {
  font-size: clamp(3rem, 9vw, 4rem);
  margin-top: -4px;
}
.ibuy-card-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.ibuy-card-services li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.15);
  color: var(--white);
  padding: 10px 8px;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--transition);
}
.ibuy-card-services li:hover {
  background: rgba(0, 0, 0, 0.25);
}
.ibuy-card-services svg {
  opacity: 0.85;
  flex-shrink: 0;
}
.ibuy-card-more {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 24px;
}
.ibuy-card-cash {
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 4px;
  text-shadow:
    2px 2px 0 rgba(0, 0, 0, 0.3),
    0 0 30px rgba(255, 255, 255, 0.15);
  margin-bottom: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.ibuy-card-phone {
  display: block;
  font-size: clamp(1.5rem, 4vw, 1.9rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 2px;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.25);
  transition: transform var(--transition), text-shadow var(--transition);
}
.ibuy-card-phone:hover {
  transform: scale(1.04);
  text-shadow:
    2px 2px 0 rgba(0, 0, 0, 0.25),
    0 0 20px rgba(255, 255, 255, 0.3);
}
.ibuy-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.ibuy-pulse {
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
.ibuy-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}
.cash-glow {
  color: var(--red);
  animation: glow 2s ease-in-out infinite;
}
.ibuy-content > p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 28px;
  line-height: 1.8;
}
.ibuy-list { margin-bottom: 36px; }
.ibuy-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.9);
  padding: 12px 0;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: padding-left var(--transition);
}
.ibuy-list li:hover { padding-left: 8px; }
.check-icon {
  width: 28px;
  height: 28px;
  background: rgba(230,0,0,0.15);
  border: 1px solid rgba(230,0,0,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.ibuy-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.ibuy-phone {
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 1px;
}

/* ===== About ===== */
.about {
  padding: 110px 0;
  background: var(--cream);
  position: relative;
}
.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.15;
}
.about-text p {
  color: var(--gray-600);
  font-size: 1.02rem;
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}
.highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 168, 76, 0.15);
  transition: all var(--transition);
}
.highlight:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.highlight-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.highlight strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
}
.highlight span {
  color: var(--gray-400);
  font-size: 0.85rem;
}
.about-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-logo-card {
  width: 100%;
  max-width: 340px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201, 168, 76, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
}
.about-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(26, 39, 68, 0.15);
}
.about-logo-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== Contact ===== */
.contact {
  padding: 110px 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form {
  position: relative;
  background: var(--gray-50);
  padding: 44px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--white);
  transition: all var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.info-card {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: transform var(--transition);
}
.info-card:hover { transform: translateX(6px); }
.info-card:last-of-type { border-bottom: none; }
.info-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.info-card:hover .info-icon { transform: scale(1.08); }
.info-card h4 {
  font-size: 0.78rem;
  color: var(--gray-400);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}
.info-card a {
  color: var(--navy);
  font-weight: 800;
  font-size: 1.15rem;
  transition: color var(--transition);
}
.info-card a:hover { color: var(--gold-dark); }
.info-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}
.info-card em { color: var(--gray-400); font-style: normal; }
/* ===== Hero Google Rating ===== */
.hero-google {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 10px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  transition: all var(--transition);
}
.hero-google:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-2px);
  border-color: rgba(201, 168, 76, 0.4);
}
.hero-google svg { flex-shrink: 0; }
.hero-stars {
  color: #FBBC05;
  font-size: 0.95rem;
  letter-spacing: 2px;
}
.hero-google strong {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
}
.hero-review-count {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  font-weight: 500;
}

/* ===== Google Reviews Section ===== */
.reviews {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}
.reviews-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 32px;
  align-items: stretch;
}
.google-rating-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.google-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-600);
}
.google-logo { flex-shrink: 0; }
.rating-display {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.rating-number {
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.rating-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}
.rating-stars span {
  color: #FBBC05;
  font-size: 1.6rem;
  text-shadow: 0 2px 8px rgba(251, 188, 5, 0.3);
}
.rating-count {
  color: var(--gray-400);
  font-size: 0.9rem;
  font-weight: 600;
}
.google-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.google-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-600);
  font-size: 0.88rem;
  font-weight: 500;
}
.google-meta-item svg {
  color: var(--gold-dark);
  flex-shrink: 0;
}
.google-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-200);
}
.btn-outline-dark:hover {
  background: var(--gray-50);
  border-color: var(--navy);
  transform: translateY(-2px);
}

.reviews-map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gray-100);
  min-height: 420px;
}
.reviews-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}
.map-rating-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 10px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  border: 1px solid var(--gray-100);
}
.map-rating-num {
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--navy);
}
.map-rating-stars {
  color: #FBBC05;
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.map-rating-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-left: 4px;
  border-left: 1px solid var(--gray-200);
}
.map-rating-sm {
  top: 12px;
  left: 12px;
  padding: 8px 14px;
}
.map-rating-sm .map-rating-num { font-size: 0.95rem; }
.map-rating-sm .map-rating-stars { font-size: 0.75rem; }
.map-directions-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--navy);
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: all var(--transition);
}
.map-directions-btn:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.map-embed {
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid var(--gray-100);
  position: relative;
}

.map-embed iframe {
  width: 100%;
  height: 240px;
  border: 0;
}

/* ===== Footer ===== */
.footer {
  background: linear-gradient(180deg, var(--navy-dark) 0%, #060a12 100%);
  color: rgba(255,255,255,0.7);
  padding-top: 64px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo {
  width: 220px;
  height: auto;
  margin-bottom: 16px;
  display: block;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-links h4,
.footer-contact h4 {
  color: var(--gold);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-links a:hover { color: var(--gold); transform: translateX(4px); }
.footer-contact a {
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
}
.footer-contact a:hover { color: var(--gold); }
.footer-contact p { margin-top: 8px; font-size: 0.9rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-inner p { margin: 0; }
.hawkeye-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.2);
  transition: all var(--transition);
}
.hawkeye-credit:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.45);
  transform: translateY(-2px);
}
.hawkeye-label {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.hawkeye-name {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.hawkeye-credit svg {
  color: var(--gold);
  opacity: 0.7;
  transition: opacity var(--transition);
}
.hawkeye-credit:hover svg { opacity: 1; }

/* ===== Floating Call ===== */
.float-call {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--red) 0%, #ff2222 100%);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 32px rgba(230, 0, 0, 0.45);
  transition: all var(--transition);
  animation: pulse-ring 2.5s infinite;
}
.float-call:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 48px rgba(230, 0, 0, 0.55);
}
.float-call-text { display: none; }
@media (min-width: 769px) {
  .float-call-text { display: inline; }
}

/* ===== Form Messages ===== */
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-alert-error {
  background: #fdecea;
  border: 1px solid #f5c6c2;
  color: #922820;
  padding: 14px 16px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.92rem;
  line-height: 1.5;
}
.form-success,
.form-error {
  text-align: center;
  padding: 48px;
}
.form-success svg { color: var(--gold); margin-bottom: 16px; }
.form-error svg { color: #c0392b; margin-bottom: 16px; }
.form-success h3,
.form-error h3 { color: var(--navy); margin-bottom: 8px; font-size: 1.4rem; }
.form-success p,
.form-error p { color: var(--gray-600); line-height: 1.7; }

/* ===== Responsive ===== */
@media (max-width: 968px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .reviews-layout { grid-template-columns: 1fr; }
  .reviews-map-wrap { min-height: 320px; }
  .reviews-map-wrap iframe { min-height: 320px; }
  .ibuy-inner,
  .about-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .ibuy-visual { order: -1; }
  .about-logo { order: -1; }
  .about-logo-card { max-width: 300px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 968px) {
  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    overflow: hidden;
    align-items: flex-start;
  }
  .hero .reveal {
    opacity: 1;
    animation: none;
  }
  .hero-bg img {
    display: block;
    animation: none;
    object-fit: cover;
    object-position: 52% 58%;
    transform: scale(1.08);
  }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(10,15,26,0.94) 0%, rgba(10,15,26,0.82) 35%, rgba(10,15,26,0.55) 65%, rgba(10,15,26,0.75) 100%);
  }
  .hero-shapes {
    opacity: 0.15;
  }
  .hero-content {
    padding: 96px 20px 48px;
    width: 100%;
    max-width: none;
  }
  .hero-sub {
    max-width: none;
  }
  .hero-stats {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .stat-card {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  .hero-google { flex-wrap: wrap; justify-content: center; }
  .hero-shapes { display: none; }
  .hero-review-count { width: 100%; text-align: center; margin-top: -4px; }
  .top-bar-inner { gap: 12px; font-size: 0.72rem; }
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 90px 28px 28px;
    box-shadow: -8px 0 40px rgba(0,0,0,0.12);
    transition: right var(--transition);
    z-index: 200;
  }
  .nav.open { right: 0; }
  .nav a { padding: 16px; font-size: 1rem; }
  .nav-cta { margin-left: 0 !important; text-align: center; margin-top: 8px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-logo { width: 200px; }
  .logo img { height: 52px; }
  .scroll-indicator { display: none; }
  .float-call { padding: 16px; border-radius: 50%; }
}

@media (max-width: 480px) {
  .hero-bg img {
    object-position: 50% 62%;
    transform: scale(1.12);
  }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .ibuy-cta { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; animation: none; }
  .reveal-up { opacity: 1; transform: none; }
}
