:root {
  --cf-primary: #0b1120;
  --cf-secondary: #162044;
  --cf-accent: #4f8cff;
  --cf-accent-dark: #3b6fd9;
  --cf-accent-light: #7aadff;
  --cf-gold: #f59e0b;
  --cf-gold-light: #facc15;
  --cf-text: #f1f5f9;
  --cf-text-muted: #8899b4;
  --cf-border: #1e2d5a;
  --cf-card-bg: #111c3a;
  --cf-gradient: linear-gradient(135deg, #0b1120 0%, #162044 40%, #0f2847 70%, #0b1120 100%);
  --cf-radius: 16px;
  --cf-radius-sm: 10px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--cf-primary);
  color: var(--cf-text);
  overflow-x: hidden;
}

.page-wrapper {
  background: var(--cf-primary);
}

.cf-nav {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .cf-nav { z-index: 10000; }
}

.cf-nav .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
}

.cf-nav .logo img {
  height: 100px;
  width: auto;
  max-height: 100px;
  border-radius: 10px;
  image-rendering: auto;
  display: block;
}
@media (max-width: 768px) {
  .cf-nav .inner {
    padding: 8px 20px;
  }
  .cf-nav .logo img {
    height: 100px;
    max-height: 100px;
  }
}
@media (max-width: 576px) {
  .cf-nav .logo img {
    height: 80px;
    max-height: 80px;
  }
  .cf-nav .inner {
    padding: 6px 16px;
  }
}

.cf-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cf-nav .nav-links a {
  color: var(--cf-text-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.cf-nav .nav-links a:hover,
.cf-nav .nav-links a.active {
  color: var(--cf-text);
}

.cf-nav .nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cf-accent);
  transition: width 0.3s;
  box-shadow: 0 0 8px rgba(79, 140, 255, 0.5);
}

.cf-nav .nav-links a:hover::after {
  width: 100%;
}

.cf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.cf-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cf-btn:hover::after {
  transform: translateX(0);
}

.cf-btn-primary {
  background: linear-gradient(135deg, var(--cf-accent), var(--cf-accent-dark));
  color: white;
  box-shadow: 0 4px 20px rgba(79, 140, 255, 0.35);
}

.cf-btn-primary:hover {
  box-shadow: 0 8px 30px rgba(79, 140, 255, 0.5);
  transform: translateY(-2px);
  color: white;
}

.cf-btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(79, 140, 255, 0.3);
}

.cf-btn-outline {
  background: transparent;
  color: var(--cf-text);
  border: 1.5px solid rgba(79, 140, 255, 0.3);
}

.cf-btn-outline:hover {
  border-color: var(--cf-accent);
  color: white;
  background: rgba(79, 140, 255, 0.1);
  box-shadow: 0 0 20px rgba(79, 140, 255, 0.15);
  transform: translateY(-2px);
}

.cf-btn-gold {
  background: linear-gradient(135deg, var(--cf-gold), var(--cf-gold-light));
  color: #0b1120;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
}

.cf-btn-gold:hover {
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
  transform: translateY(-2px);
  color: #0b1120;
}

html {
  scroll-behavior: smooth;
}

/* Hero Section */
.cf-hero {
  background: var(--cf-gradient);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

.cf-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(79, 140, 255, 0.15) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  animation: heroGlow 6s ease-in-out infinite alternate;
}

.cf-hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate-reverse;
}

@keyframes heroGlow {
  0% { transform: scale(1) translate(0, 0); opacity: 0.7; }
  100% { transform: scale(1.2) translate(30px, -30px); opacity: 1; }
}

.cf-hero-content {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.cf-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79, 140, 255, 0.12);
  border: 1px solid rgba(79, 140, 255, 0.25);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cf-accent-light);
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}

.cf-hero h1 {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #7aadff 50%, #facc15 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cf-hero p {
  font-size: 18px;
  color: var(--cf-text-muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.cf-hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cf-hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.cf-hero-stats .stat h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--cf-text);
  margin: 0;
}

.cf-hero-stats .stat p {
  font-size: 14px;
  color: var(--cf-text-muted);
  margin: 4px 0 0;
}

.cf-hero-image {
  position: relative;
}

.cf-hero-image img {
  width: 100%;
  border-radius: var(--cf-radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.cf-hero-image .floating-card {
  position: absolute;
  background: rgba(17, 28, 58, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(79, 140, 255, 0.15);
  border-radius: 14px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 20px rgba(79,140,255,0.05);
  animation: float 3s ease-in-out infinite;
}

.cf-hero-image .floating-card .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.cf-hero-image .floating-card .label {
  font-size: 12px;
  color: var(--cf-text-muted);
  margin: 0;
}

.cf-hero-image .floating-card .value {
  font-size: 16px;
  font-weight: 700;
  color: var(--cf-text);
  margin: 0;
}

.floating-card.card-1 {
  top: 20%;
  right: -20px;
  animation-delay: 0s;
}

.floating-card.card-2 {
  bottom: 25%;
  left: -30px;
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Section Styles */
.cf-section {
  padding: 100px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.cf-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.cf-section-header .subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79, 140, 255, 0.12);
  border: 1px solid rgba(79, 140, 255, 0.25);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cf-accent-light);
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.cf-section-header h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #7aadff 50%, #facc15 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cf-section-header p {
  font-size: 17px;
  color: var(--cf-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Features Grid */
.cf-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.cf-feature-card {
  background: var(--cf-card-bg);
  border: 1px solid var(--cf-border);
  border-radius: var(--cf-radius);
  padding: 36px 32px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cf-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cf-accent), var(--cf-gold));
  opacity: 0;
  transition: opacity 0.35s;
}

.cf-feature-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(79,140,255,0.04) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
}

.cf-feature-card:hover {
  border-color: rgba(79, 140, 255, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.cf-feature-card:hover::before {
  opacity: 1;
}

.cf-feature-card:hover::after {
  opacity: 1;
}

.cf-feature-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.15), rgba(79, 140, 255, 0.05));
  color: var(--cf-accent-light);
  border: 1px solid rgba(79, 140, 255, 0.1);
}

.cf-feature-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--cf-text);
}

.cf-feature-card p {
  font-size: 15px;
  color: var(--cf-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Alternating Content Sections */
.cf-content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.cf-content-row.reverse {
  direction: rtl;
}

.cf-content-row.reverse > * {
  direction: ltr;
}

.cf-content-text .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79, 140, 255, 0.12);
  border: 1px solid rgba(79, 140, 255, 0.25);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cf-accent-light);
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.cf-content-text h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, #7aadff 50%, #facc15 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cf-content-text p {
  font-size: 16px;
  color: var(--cf-text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.cf-content-text .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.cf-content-text .features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--cf-text);
}

.cf-content-text .features-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.cf-content-image img {
  width: 100%;
  border-radius: var(--cf-radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.cf-content-image .mockup {
  position: relative;
}

.cf-content-image .mockup::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--cf-radius);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
  pointer-events: none;
}

/* Divider */
.cf-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cf-border), transparent);
  margin: 0;
}

/* Services row inside features */
.cf-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 16px;
}

.cf-service-card {
  background: var(--cf-card-bg);
  border: 1px solid var(--cf-border);
  border-radius: var(--cf-radius-sm);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
}

.cf-service-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.cf-service-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px;
  background: rgba(245, 158, 11, 0.12);
  color: var(--cf-gold-light);
}

.cf-service-card h5 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.cf-service-card p {
  font-size: 14px;
  color: var(--cf-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Testimonial */
.cf-testimonial {
  background: var(--cf-card-bg);
  border: 1px solid var(--cf-border);
  border-radius: var(--cf-radius);
  padding: 48px;
  margin: 40px auto;
  position: relative;
  max-width: 900px;
}

.cf-testimonial {
  background: linear-gradient(135deg, var(--cf-card-bg), rgba(17, 28, 58, 0.8));
  border: 1px solid rgba(79, 140, 255, 0.15);
  border-radius: var(--cf-radius);
  padding: 48px;
  margin: 40px auto;
  position: relative;
  max-width: 900px;
  box-shadow: 0 0 40px rgba(79, 140, 255, 0.05);
}

.cf-testimonial::before {
  content: '"';
  font-size: 80px;
  color: var(--cf-accent);
  opacity: 0.15;
  position: absolute;
  top: 20px;
  left: 30px;
  font-family: Georgia, serif;
  line-height: 1;
}

.cf-testimonial .stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.cf-testimonial .stars svg {
  width: 20px;
  height: 20px;
}

.cf-testimonial blockquote {
  font-size: 20px;
  line-height: 1.6;
  color: var(--cf-text);
  font-style: italic;
  margin-bottom: 24px;
  padding-left: 20px;
  border-left: 3px solid var(--cf-accent);
}

.cf-testimonial .author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cf-testimonial .author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cf-accent), var(--cf-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.cf-testimonial .author-info h6 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: var(--cf-text);
}

.cf-testimonial .author-info span {
  font-size: 13px;
  color: var(--cf-text-muted);
}

/* CTA / App Section */
.cf-cta {
  background: var(--cf-gradient);
  border-radius: var(--cf-radius);
  padding: 64px 48px;
  text-align: center;
  margin: 100px 40px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.cf-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(79, 140, 255, 0.12) 0%, transparent 60%);
  border-radius: 50%;
  animation: heroGlow 6s ease-in-out infinite alternate;
}

.cf-cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 60%);
  border-radius: 50%;
  animation: heroGlow 8s ease-in-out infinite alternate-reverse;
}

.cf-cta h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cf-cta p {
  font-size: 17px;
  color: var(--cf-text-muted);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cf-cta .app-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cf-cta .app-badges a {
  display: inline-block;
  transition: transform 0.3s;
}

.cf-cta .app-badges a:hover {
  transform: scale(1.05);
}

.cf-cta .app-badges img {
  height: 44px;
}

/* Integration Logos */
.cf-integrations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.cf-integration-card {
  background: var(--cf-card-bg);
  border: 1px solid var(--cf-border);
  border-radius: var(--cf-radius-sm);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
}

.cf-integration-card:hover {
  border-color: rgba(59, 130, 246, 0.25);
  transform: translateY(-2px);
}

.cf-integration-card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cf-integration-card h6 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 6px;
}

.cf-integration-card p {
  font-size: 13px;
  color: var(--cf-text-muted);
  margin: 0;
  line-height: 1.4;
}

/* Mobile menu toggle */
.cf-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 10001;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.cf-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--cf-text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Responsive */
@media (max-width: 1024px) {
  .cf-hero h1 {
    font-size: 42px;
  }
  .cf-content-row {
    gap: 48px;
    padding: 60px 32px;
  }
  .cf-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cf-integrations {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cf-nav .inner {
    padding: 12px 20px;
  }
  .cf-nav .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cf-secondary);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--cf-border);
  }
  .cf-nav .nav-links.open {
    display: flex;
  }
  .cf-mobile-toggle {
    display: flex;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
  }
  .cf-hero {
    padding: 100px 24px 60px;
  }
  .cf-hero h1 {
    font-size: 32px;
  }
  .cf-hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }
  .cf-hero-image .floating-card {
    display: none;
  }
  .cf-section {
    padding: 60px 24px;
  }
  .cf-section-header h2 {
    font-size: 28px;
  }
  .cf-content-row {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 60px 24px;
  }
  .cf-content-row.reverse {
    direction: ltr;
  }
  .cf-content-text h2 {
    font-size: 28px;
  }
  .cf-features {
    grid-template-columns: 1fr;
  }
  .cf-testimonial {
    padding: 28px 24px;
    margin: 24px;
  }
  .cf-testimonial blockquote {
    font-size: 17px;
  }
  .cf-cta {
    margin: 60px 24px;
    padding: 40px 24px;
  }
  .cf-cta h2 {
    font-size: 28px;
  }
  .cf-service-grid {
    grid-template-columns: 1fr;
  }
  .cf-integrations {
    grid-template-columns: 1fr;
  }
  .cf-hero-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .cf-nav .inner {
    padding: 10px 12px;
  }
  .cf-nav .logo img {
    width: 80px;
    max-width: 80px;
  }
  .cf-hero h1 {
    font-size: 28px;
  }
}

/* Glow effect */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.3;
}

/* Utility */
.text-gradient {
  background: linear-gradient(to right, var(--cf-accent-light), var(--cf-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Override existing header to be transparent */
.main-header.style-three {
  display: none !important;
}

/* Small hero for subpages (about, contact, etc) */
.cf-hero-sm {
  min-height: 50vh;
  text-align: center;
  justify-content: center;
}

.cf-hero-sm .cf-hero-content {
  text-align: center;
}

.cf-hero-sm .cf-hero-content p {
  margin: 0 auto 36px;
}

.cf-hero-sm .cf-section {
  padding-top: 60px;
}

/* Footer */
.cf-footer {
  background: var(--cf-secondary);
  border-top: 1px solid var(--cf-border);
  padding: 60px 40px 0;
}

.cf-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.cf-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}

.cf-footer-brand img {
  height: 100px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .cf-footer-brand img {
    height: 80px;
  }
}

.cf-footer-brand p {
  font-size: 14px;
  color: var(--cf-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 320px;
}

.cf-footer-social {
  display: flex;
  gap: 12px;
}

.cf-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cf-text-muted);
  transition: all 0.3s;
}

.cf-footer-social a:hover {
  background: var(--cf-accent);
  color: white;
}

.cf-footer-social a svg {
  width: 18px;
  height: 18px;
}

.cf-footer-col h5 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--cf-text);
  margin-bottom: 16px;
}

.cf-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cf-footer-col ul li {
  margin-bottom: 12px;
}

.cf-footer-col ul li a {
  color: var(--cf-text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.cf-footer-col ul li a:hover {
  color: var(--cf-accent-light);
}

.cf-footer-col p {
  font-size: 14px;
  color: var(--cf-text-muted);
  line-height: 1.6;
  margin: 0 0 8px;
}

.cf-footer-bottom {
  border-top: 1px solid var(--cf-border);
  padding: 20px 0;
  text-align: center;
}

.cf-footer-bottom p {
  font-size: 13px;
  color: var(--cf-text-muted);
  margin: 0;
}

.cf-footer-bottom strong {
  color: var(--cf-text);
}

@media (max-width: 768px) {
  .cf-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cf-footer {
    padding: 40px 24px 0;
  }
}
