/* Premium Brand Styles */
.premium-brand {
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
  border: 2px solid var(--primary-purple);
  box-shadow: 0 6px 32px 0 rgba(109, 40, 217, 0.10), var(--shadow);
  position: relative;
  overflow: hidden;
}
.premium-brand .premium-icon {
  font-size: 2.5rem;
  color: var(--primary-purple);
  margin-bottom: 0.5rem;
}
.premium-tagline {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-purple);
  margin-bottom: 0.5rem;
}
.btn-premium {
  background: linear-gradient(90deg, var(--primary-purple), var(--primary-blue));
  color: #fff;
  font-weight: 600;
  border: none;
  box-shadow: 0 2px 8px 0 rgba(109, 40, 217, 0.10);
}
.btn-premium:hover {
  background: linear-gradient(90deg, #5B21B6, #2563EB);
}
/* Premium UI for Brands Grid */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}
.brand-card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-lg);
  padding: 2.5rem 2rem 2rem 2rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: 1.5px solid var(--border-color);
}
.brand-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 40px 0 rgba(37, 99, 235, 0.10), var(--shadow-lg);
  border-color: var(--primary-blue-2);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #0066CC;
  --primary-purple: #6D28D9;
  --primary-red: #DC2626;
  --primary-blue-2: #2563EB;
  --primary-orange: #F97316;
  --text-dark: #1F2937;
  --text-gray: #6B7280;
  --bg-light: #F9FAFB;
  --border-color: #E5E7EB;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #FFFFFF;
}

/* Header Styles */
header {
  background: white;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 50;
}

nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-dark);
}

.nav-logo-icon {
  font-size: 1.5rem;
}

.nav-logo-text h1 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.nav-logo-text p {
  font-size: 0.75rem;
  color: var(--text-gray);
}

.nav-links {
  display: none;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-dark);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  
  .menu-button {
    display: none;
  }
}

.menu-button {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-gray);
}

/* Hero Section */
.hero {
  padding: 4rem 1.5rem;
  text-align: center;
  color: white;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--primary-blue);
  color: white;
  text-decoration: none;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: background-color 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background-color: #0052A3;
}

.btn-secondary {
  background-color: var(--primary-purple);
}

.btn-secondary:hover {
  background-color: #5B21B6;
}

.btn-danger {
  background-color: var(--primary-red);
}

.btn-danger:hover {
  background-color: #B91C1C;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Main Content */
main {
  min-height: calc(100vh - 200px);
}

/* Sections */
section {
  padding: 4rem 1.5rem;
}

section.white {
  background-color: white;
}

section.light {
  background-color: var(--bg-light);
}

/* Typography */
h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-gray);
  font-size: 1rem;
}

/* Brand Cards */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.brand-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: all 0.3s;
  text-decoration: none;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.brand-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.brand-card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.brand-card h3 {
  margin: 0 0 0.5rem 0;
  color: var(--text-dark);
}

.brand-card .tagline {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.brand-card p {
  color: var(--text-gray);
  flex: 1;
  margin-bottom: 1rem;
}

.brand-card .btn {
  align-self: flex-start;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 0.375rem;
  font-family: inherit;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
}

/* Footer */
footer {
  background: var(--text-dark);
  color: white;
  padding: 2rem 1.5rem;
  margin-top: auto;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

/* Brand Page Styles */
.brand-hero {
  padding: 4rem 1.5rem;
  color: white;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-content {
  margin-top: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-item {
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 0.5rem;
  border-left: 4px solid var(--primary-blue);
}

.feature-item h4 {
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: var(--text-gray);
}

/* Contact Info */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-item {
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 0.5rem;
}

.contact-item h4 {
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: var(--text-gray);
  word-break: break-all;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 1.875rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  section {
    padding: 2rem 1.5rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.max-w-2xl {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mt-4 {
  margin-top: 1rem;
}

.flex-1 {
  flex: 1;
}
