/* Sociality - Main Stylesheet */

:root {
  --primary: #B01B72;
  --primary-dark: #8B1560;
  --dark: #121417;
  --light: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-900: #0f172a;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --radius-sm: 0.5rem;
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-3xl: 2.5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background: var(--light);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.text-primary { color: var(--primary); }
.text-dark { color: var(--dark); }
.text-gray { color: var(--gray-500); }
.text-gray-light { color: var(--gray-400); }

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

.container-sm {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

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

.logo img {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 800;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-phone {
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--dark);
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-2xl);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 10px 30px rgba(176, 27, 114, 0.3);
}

.btn-dark {
  background: var(--dark);
  color: white;
}

.btn-dark:hover {
  background: var(--primary);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gray-200);
  color: var(--dark);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 0.875rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
  background: linear-gradient(135deg, var(--gray-50) 0%, white 50%, rgba(176, 27, 114, 0.05) 100%);
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 800px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(176, 27, 114, 0.1);
  color: var(--primary);
  border-radius: var(--radius-2xl);
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-500);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
}

.trust-item svg {
  color: #22c55e;
}

/* Section Styles */
.section {
  padding: 6rem 0;
}

.section-dark {
  background: var(--dark);
  color: white;
}

.section-primary {
  background: var(--primary);
  color: white;
  position: relative;
  overflow: hidden;
}

.section-gray {
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
}

.section-primary .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: white;
  border-radius: var(--radius-3xl);
  padding: 2.5rem;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

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

.card-icon {
  width: 64px;
  height: 64px;
  background: white;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.card-title {
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--gray-500);
  font-size: 0.9375rem;
}

/* Feature Cards (for pink section) */
.feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-3xl);
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.15);
}

.feature-card .card-icon {
  background: white;
  color: var(--primary);
}

.feature-card .card-title {
  color: white;
}

.feature-card .card-text {
  color: rgba(255, 255, 255, 0.7);
}

/* Stats Bar */
.stats-bar {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1rem;
  background: white;
  padding: 1.25rem 2rem;
  border-radius: var(--radius-3xl);
  margin-top: 3rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1rem;
}

.stat-item:not(:last-child) {
  border-right: 1px solid var(--gray-200);
}

.stat-icon {
  color: var(--primary);
}

.stat-label {
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--dark);
}

/* Pricing Cards */
.pricing-card {
  background: white;
  border-radius: var(--radius-3xl);
  padding: 2.5rem;
  border: 1px solid var(--gray-200);
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  box-shadow: var(--shadow-xl);
}

.pricing-card.popular {
  background: var(--dark);
  color: white;
  border-color: var(--dark);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-2xl);
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pricing-name {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.pricing-subtitle {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}

.pricing-card.popular .pricing-subtitle {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-price {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-price span {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gray-400);
}

.pricing-card.popular .pricing-price span {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-note {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}

.pricing-card.popular .pricing-note {
  color: rgba(255, 255, 255, 0.4);
}

.pricing-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  margin-bottom: 1.5rem;
}

.pricing-card.popular .pricing-meta {
  background: rgba(255, 255, 255, 0.1);
}

.pricing-meta-label {
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 0.25rem;
}

.pricing-card.popular .pricing-meta-label {
  color: rgba(255, 255, 255, 0.4);
}

.pricing-meta-value {
  font-weight: 800;
  font-size: 1.25rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
}

.pricing-features li svg {
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.pricing-card.popular .pricing-features li svg {
  color: var(--primary);
}

.pricing-bestfor {
  padding: 1rem;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}

.pricing-card.popular .pricing-bestfor {
  background: rgba(255, 255, 255, 0.05);
}

.pricing-bestfor-label {
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 0.25rem;
}

.pricing-card.popular .pricing-bestfor-label {
  color: rgba(255, 255, 255, 0.4);
}

.pricing-bestfor-value {
  font-weight: 600;
  font-size: 0.9375rem;
}

.pricing-card.popular .pricing-bestfor-value {
  color: white;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  background: white;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th {
  background: var(--dark);
  color: white;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.comparison-table th:nth-child(3) {
  background: var(--primary);
}

.comparison-table td {
  padding: 1rem 1.5rem;
  font-size: 0.9375rem;
}

.comparison-table tr:nth-child(even) {
  background: var(--gray-50);
}

.comparison-table td:nth-child(3) {
  background: rgba(176, 27, 114, 0.05);
  font-weight: 700;
}

/* Case Cards */
.case-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.case-card:nth-child(even) {
  direction: rtl;
}

.case-card:nth-child(even) > * {
  direction: ltr;
}

.case-image {
  aspect-ratio: 4/3;
  border-radius: var(--radius-3xl);
  background: linear-gradient(135deg, rgba(176, 27, 114, 0.2), rgba(176, 27, 114, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.case-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/pattern.png');
  background-size: 300px;
  opacity: 0.3;
}

.case-result {
  text-align: center;
  z-index: 1;
}

.case-result-value {
  font-size: 3rem;
  font-weight: 900;
  color: var(--dark);
}

.case-result-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.case-tags {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.5rem;
}

.case-tag {
  padding: 0.375rem 0.75rem;
  background: white;
  border-radius: var(--radius-2xl);
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.case-niche {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.case-niche-badge {
  padding: 0.375rem 0.75rem;
  background: rgba(176, 27, 114, 0.1);
  color: var(--primary);
  border-radius: var(--radius-2xl);
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.case-city {
  font-size: 0.875rem;
  color: var(--gray-400);
}

.case-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.case-metric {
  text-align: center;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
}

.case-metric-value {
  font-weight: 800;
  font-size: 1.25rem;
}

.case-metric-label {
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
}

.case-quote {
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-200);
  margin-bottom: 1.5rem;
}

.case-quote svg {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.case-quote-text {
  color: var(--gray-600);
  font-style: italic;
  margin-bottom: 1rem;
}

.case-quote-author {
  font-weight: 800;
}

/* Testimonial Cards */
.testimonial-card {
  background: white;
  border-radius: var(--radius-3xl);
  padding: 2rem;
  border: 1px solid var(--gray-200);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  color: #facc15;
  fill: #facc15;
}

.testimonial-text {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: rgba(176, 27, 114, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 800;
}

.testimonial-name {
  font-weight: 800;
  font-size: 0.9375rem;
}

.testimonial-business {
  font-size: 0.875rem;
  color: var(--gray-400);
}

.testimonial-date {
  font-size: 0.75rem;
  color: var(--gray-300);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* FAQ */
.faq-item {
  background: white;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-200);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: none;
  border: none;
  font-weight: 800;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  color: var(--dark);
}

.faq-question svg {
  flex-shrink: 0;
  color: var(--gray-400);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--gray-500);
}

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

.form-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
}

.form-input::placeholder {
  color: var(--gray-400);
}

textarea.form-input {
  min-height: 120px;
  resize: vertical;
}

/* Contact Info Cards */
.contact-card {
  background: var(--gray-50);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  background: white;
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
}

.contact-title {
  font-weight: 800;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.contact-value {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-desc {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 1rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
}

.contact-link:hover {
  color: var(--primary);
}

/* Office Card */
.office-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-200);
}

.office-icon {
  width: 48px;
  height: 48px;
  background: rgba(176, 27, 114, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.office-city {
  font-weight: 800;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.office-address {
  font-size: 0.9375rem;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
}

.office-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
}

.office-phone {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.office-hours {
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Blog Cards */
.blog-card {
  background: white;
  border-radius: var(--radius-3xl);
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
}

.blog-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.blog-category {
  padding: 0.25rem 0.75rem;
  background: var(--gray-100);
  border-radius: var(--radius-2xl);
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
}

.blog-views {
  font-size: 0.75rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.blog-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-excerpt {
  font-size: 0.9375rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.blog-avatar {
  width: 32px;
  height: 32px;
  background: rgba(176, 27, 114, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
}

.blog-author-name {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--gray-400);
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Team Cards */
.team-card {
  background: white;
  border-radius: var(--radius-3xl);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  text-align: center;
}

.team-avatar {
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, rgba(176, 27, 114, 0.2), rgba(176, 27, 114, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary);
  font-size: 2rem;
  font-weight: 800;
}

.team-name {
  font-weight: 800;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.team-desc {
  font-size: 0.875rem;
  color: var(--gray-400);
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
  grid-column: 2;
}

.timeline-item:nth-child(odd) .timeline-content {
  text-align: right;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--primary);
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.timeline-year {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.timeline-title {
  font-weight: 800;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.timeline-desc {
  font-size: 0.9375rem;
  color: var(--gray-500);
}

/* CTA Section */
.cta-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-3xl);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/pattern.png');
  background-size: 400px;
  opacity: 0.1;
}

.cta-box > * {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-2xl);
  font-size: 0.875rem;
  font-weight: 700;
}

/* Footer */
.footer {
  background: var(--dark);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-title {
  font-weight: 800;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.footer-contact a {
  color: inherit !important;
  text-decoration: none !important;
}

.footer-contact a:hover {
  color: var(--primary) !important;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--primary);
}

/* Utility Classes */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }

.w-full { width: 100%; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .case-card { grid-template-columns: 1fr; }
  .case-card:nth-child(even) { direction: ltr; }
  .timeline::before { left: 1rem; }
  .timeline-item { grid-template-columns: 1fr; padding-left: 3rem; }
  .timeline-item:nth-child(even) .timeline-content { grid-column: 1; }
  .timeline-item:nth-child(odd) .timeline-content { text-align: left; }
  .timeline-dot { left: 1rem; transform: none; }
}

@media (max-width: 768px) {
  .nav-menu,
  .nav-phone,
  .navbar .btn-primary {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  /* Fixed bottom CTA button for mobile */
  .mobile-cta-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: white;
    padding: 1rem 1.5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    border-top: 1px solid var(--gray-200);
  }
  
  .mobile-cta-fixed .btn {
    width: 100%;
    padding: 1rem;
    font-size: 0.875rem;
  }
  
  /* Add padding to body to prevent content being hidden behind fixed button */
  body {
    padding-bottom: 80px;
  }
  
  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr; }
  
  .stats-bar {
    flex-direction: column;
    align-items: stretch;
  }
  
  .stat-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 0.75rem;
  }
  
  .case-metrics { grid-template-columns: repeat(2, 1fr); }
  
  .comparison-table {
    overflow-x: auto;
  }
  
  .comparison-table table {
    min-width: 600px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn-lg {
    width: 100%;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .btn,
  .mobile-menu-btn {
    display: none !important;
  }
  
  .section {
    padding: 2rem 0;
  }
}
