/* KartaPlastike.com - Mobile-First Design with Beautiful Glass Effects */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Pure Dark Theme */
  --bg-primary: #050505;
  --bg-secondary: #0a0a0a;
  --bg-tertiary: #111111;
  --bg-card: #0d0d0d;

  /* Accent - White/Gray */
  --accent: #ffffff;
  --accent-dim: rgba(255, 255, 255, 0.7);
  --accent-muted: rgba(255, 255, 255, 0.1);

  /* Text - Grayscale */
  --text-primary: #ffffff;
  --text-secondary: #888888;
  --text-muted: #555555;

  /* Enhanced Glass Effect */
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-bg-strong: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-border-strong: rgba(255, 255, 255, 0.18);
  --glass-blur: blur(24px);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);

  /* Mobile-First Spacing */
  --nav-height: 64px;
  --section-padding: 60px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 15px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ===== BEAUTIFUL GLASS NAVBAR - Mobile First ===== */
.navbar {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  max-width: 1200px;
  height: var(--nav-height);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.navbar.scrolled {
  background: rgba(5, 5, 5, 0.95);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
  position: relative;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 10;
}

.logo-img {
  height: 28px;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
}

.logo-img:hover {
  opacity: 0.8;
}

/* Mobile Menu - Default Hidden */
.nav-menu {
  position: fixed;
  top: calc(var(--nav-height) + 28px);
  left: 12px;
  right: 12px;
  background: rgba(15, 15, 15, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 4px;
  list-style: none;
  transform: translateY(-20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.nav-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav-link {
  display: block;
  width: 100%;
  padding: 14px 18px;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 10px;
  transition: all 0.2s;
  text-align: center;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
}

.nav-dropdown {
  position: relative;
}

/* Mobile Dropdown - Hidden by Default */
.dropdown-menu {
  display: none;
  flex-direction: column;
  background: rgba(20, 20, 20, 0.95);
  border-radius: 10px;
  padding: 8px;
  margin-top: 8px;
  gap: 2px;
}

.dropdown-menu.open {
  display: flex;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.dropdown-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

.dropdown-icon {
  font-size: 1.1rem;
}

.nav-cta {
  background: var(--accent) !important;
  color: var(--bg-primary) !important;
  font-weight: 600 !important;
  padding: 14px 24px !important;
  margin-top: 12px;
  border-radius: 10px !important;
}

.nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Language Switcher - Beautiful Pills */
.lang-switcher {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-left: 16px;
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.lang-switcher a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 32px;
  padding: 0 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.25s ease;
  text-decoration: none;
  background: transparent;
  text-transform: uppercase;
}

.lang-switcher a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.lang-switcher a.active {
  color: #000;
  background: var(--accent);
  box-shadow: 0 2px 12px rgba(234, 179, 8, 0.4);
}

/* Mobile Language Switcher */
@media (max-width: 768px) {
  .lang-switcher {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    padding: 8px 12px;
    gap: 8px;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    margin-left: 0;
  }

  .lang-switcher a {
    min-width: 48px;
    height: 38px;
    font-size: 0.85rem;
    padding: 0 14px;
  }
}

/* Mobile Toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 10;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: all 0.3s;
  border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO - Mobile First ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 60px) 0 60px;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(255, 255, 255, 0.03), transparent);
}

.hero-content {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 40px;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-self: center;
  padding: 8px 16px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.hero-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero-title span {
  color: var(--text-secondary);
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 100%;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  width: 100%;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-primary);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--glass-bg);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: var(--accent-muted);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Hero Visual - Hidden on Mobile */
.hero-visual {
  display: none;
}

.hero-card-stack {
  position: relative;
  width: 280px;
  height: 320px;
}

.hero-card {
  position: absolute;
  width: 240px;
  height: 150px;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border-strong);
  border-radius: var(--radius);
  transition: all 0.4s ease;
  box-shadow: var(--glass-shadow);
}

.hero-card:nth-child(1) {
  top: 0;
  left: 0;
  transform: rotate(-6deg);
  z-index: 3;
}

.hero-card:nth-child(2) {
  top: 30px;
  left: 30px;
  transform: rotate(0deg);
  z-index: 2;
}

.hero-card:nth-child(3) {
  top: 60px;
  left: 60px;
  transform: rotate(6deg);
  z-index: 1;
}

.hero-card-stack:hover .hero-card:nth-child(1) {
  transform: rotate(-10deg) translateY(-10px);
}

.hero-card-stack:hover .hero-card:nth-child(3) {
  transform: rotate(10deg) translateY(10px);
}

.hero-card-content {
  padding: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-card-logo {
  height: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.5;
}

.hero-card-number {
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== SECTIONS - Mobile First ===== */
.section {
  padding: var(--section-padding) 0;
}

.section-header {
  text-align: center;
  max-width: 100%;
  margin: 0 auto 40px;
}

.section-label {
  display: inline-block;
  padding: 6px 12px;
  background: var(--accent-muted);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ===== FEATURES - Mobile First ===== */
.features {
  background: var(--bg-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.feature-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: var(--glass-border-strong);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-muted);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 14px;
}

.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ===== PRODUCTS - Mobile First ===== */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
}

.product-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.product-image {
  height: 140px;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  opacity: 0.8;
}

.product-content {
  padding: 20px;
}

.product-content h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.product-content p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.product-link {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.85rem;
}

.product-link::after {
  content: ' →';
}

.product-card:hover .product-link::after {
  margin-left: 4px;
}

/* ===== STATS - Mobile First ===== */
.stats-section {
  background: var(--bg-secondary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.stat-card {
  text-align: center;
  padding: 24px 16px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

/* ===== CONTACT - Mobile First ===== */
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.contact-info>p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
}

.contact-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(4px);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-muted);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-icon.whatsapp {
  background: #25d366;
}

/* Contact Form */
.contact-form {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
}

.contact-form h3 {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 16px;
  /* Prevents zoom on iOS */
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.3);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

/* Checkbox Products */
.products-checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
}

.checkbox-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.checkbox-item:has(input:checked) {
  border-color: rgba(255, 255, 255, 0.4);
  background: var(--accent-muted);
}

.checkbox-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: white;
  cursor: pointer;
}

.checkbox-item span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.checkbox-item:has(input:checked) span {
  color: var(--text-primary);
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--bg-primary);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
}

.submit-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* ===== PAGE HEADER - Mobile First ===== */
.page-header {
  padding: calc(var(--nav-height) + 40px) 0 40px;
  background: var(--bg-secondary);
  text-align: center;
}

.page-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-desc {
  color: var(--text-secondary);
  font-size: 1rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--text-primary);
}

/* ===== FOOTER - Mobile First ===== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: center;
  margin-bottom: 32px;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 12px;
  font-size: 0.85rem;
}

.footer-logo {
  height: 28px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.footer-links h4 {
  margin-bottom: 14px;
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ===== WHATSAPP - Mobile First ===== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ===== QUOTE FORM LAYOUT - Mobile First ===== */
.quote-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.quote-sidebar {
  order: 2;
}

.quote-sidebar h3 {
  margin-bottom: 16px;
  font-size: 1rem;
}

.quick-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}

.quick-contact:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(4px);
}

.quick-contact.whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(37, 211, 102, 0.05));
  border-color: rgba(37, 211, 102, 0.3);
}

.quick-contact.whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.5);
}

.qc-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-muted);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.quick-contact.whatsapp .qc-icon {
  background: #25d366;
}

.quick-contact p {
  color: var(--text-secondary);
  font-size: 0.8rem;
  margin: 4px 0 0;
}

.quote-form {
  order: 1;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
}

.form-section {
  margin-bottom: 28px;
}

.form-section h3 {
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.form-hint {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.form-footer {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-top: 14px;
}

/* Product Selector - Mobile First */
.product-selector {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.product-option {
  cursor: pointer;
}

.product-option input {
  display: none;
}

.po-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 10px;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.po-box:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.product-option input:checked+.po-box {
  border-color: rgba(255, 255, 255, 0.5);
  background: var(--accent-muted);
  color: var(--text-primary);
}

.po-icon {
  font-size: 24px;
  opacity: 0.8;
}

/* Partner Banner - Mobile First */
.partner-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding: 28px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}

.partner-label {
  display: inline-block;
  padding: 6px 12px;
  background: var(--accent-muted);
  border-radius: 50px;
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.partner-content h2 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.partner-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.9rem;
}

.partner-logo {
  flex-shrink: 0;
}

/* ================================================================
   TABLET & DESKTOP BREAKPOINTS
   ================================================================ */

/* Tablet - 768px+ */
@media (min-width: 768px) {
  :root {
    --section-padding: 80px;
    --nav-height: 72px;
  }

  .container {
    padding: 0 24px;
  }

  /* Navbar - Tablet */
  .navbar {
    top: 16px;
    width: calc(100% - 48px);
    border-radius: 20px;
  }

  .nav-container {
    padding: 0 24px;
  }

  .logo-img {
    height: 32px;
  }

  /* Hero - Tablet */
  .hero-title {
    font-size: 2.6rem;
  }

  .hero-desc {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .btn {
    width: auto;
  }

  /* Grids - Tablet */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stats-grid {
    gap: 16px;
  }

  .contact-grid {
    flex-direction: row;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }

  .products-checklist {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-selector {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Page Header - Tablet */
  .page-header {
    padding: calc(var(--nav-height) + 60px) 0 50px;
  }

  .page-title {
    font-size: 2.2rem;
  }

  /* Quote Layout - Tablet */
  .quote-layout {
    flex-direction: row;
    gap: 40px;
  }

  .quote-sidebar {
    order: 0;
    flex: 0 0 280px;
  }

  .quote-form {
    order: 0;
    flex: 1;
    padding: 32px;
  }

  /* Partner Banner - Tablet */
  .partner-banner {
    flex-direction: row;
    text-align: left;
    gap: 40px;
    padding: 40px;
  }
}

/* Desktop - 1024px+ */
@media (min-width: 1024px) {
  :root {
    --section-padding: 100px;
  }

  /* Navbar - Desktop */
  .navbar {
    height: 72px;
  }

  .nav-container {
    padding: 0 28px;
  }

  .logo-img {
    height: 34px;
  }

  .nav-menu {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    padding: 0;
    gap: 2px;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    max-height: none;
    overflow: visible;
  }

  .nav-link {
    width: auto;
    padding: 10px 16px;
    text-align: left;
    font-size: 0.9rem;
  }

  .nav-cta {
    margin-top: 0;
    margin-left: 8px;
    padding: 10px 22px !important;
  }

  .mobile-toggle {
    display: none;
  }

  /* Desktop Dropdown - Hover to Open */
  .dropdown-menu {
    display: flex;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 240px;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    margin-top: 0;
    pointer-events: none;
  }

  /* Bridge the gap so menu doesn't close */
  .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -24px;
    /* Increased from -20px to effectively cover the gap */
    left: 0;
    width: 100%;
    height: 32px;
    /* Increased height to overlap well */
    background: transparent;
    z-index: 100;
    /* Ensure it's on top */
  }

  .nav-dropdown:hover .dropdown-menu,
  .dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }

  .dropdown-link {
    padding: 12px 16px;
    border-radius: 10px;
  }

  .dropdown-link:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  /* Hero - Desktop */
  .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: left;
    gap: 80px;
    align-items: center;
  }

  .hero-badge {
    align-self: flex-start;
  }

  .hero-title {
    font-size: 3.2rem;
  }

  .hero-desc {
    max-width: 480px;
    margin: 0;
  }

  .hero-buttons {
    justify-content: flex-start;
  }

  .hero-visual {
    display: flex;
    justify-content: center;
  }

  /* Grids - Desktop */
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
  }

  .product-selector {
    grid-template-columns: repeat(4, 1fr);
  }

  .product-image {
    height: 180px;
    font-size: 56px;
  }

  .product-content {
    padding: 24px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-card {
    padding: 32px;
  }

  /* Page Header - Desktop */
  .page-header {
    padding: 140px 0 60px;
  }

  .page-title {
    font-size: 2.5rem;
  }
}

/* Large Desktop - 1200px+ */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .hero-card-stack {
    width: 320px;
    height: 360px;
  }

  .hero-card {
    width: 280px;
    height: 175px;
  }

  .hero-card:nth-child(2) {
    top: 35px;
    left: 35px;
  }

  .hero-card:nth-child(3) {
    top: 70px;
    left: 70px;
  }
}