/* ============================================================
   ANASAYFA CSS — anasayfa.css
   ============================================================ */

/* ── Referanslar ── */
.references-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.ref-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
  margin-top: 40px;
}

.ref-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: refScroll 18s linear infinite;
}

.ref-track:hover { animation-play-state: paused; }

@keyframes refScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ref-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 32px;
  min-width: 180px;
  height: 90px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition), filter var(--transition);
  filter: grayscale(1) opacity(0.65);
}

.ref-logo:hover {
  filter: grayscale(0) opacity(1);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.ref-logo img {
  max-width: 130px;
  max-height: 54px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ── Hero ── */
.hero-banner {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a192f;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(0,10,35,0.62) 0%,
    rgba(0,10,35,0.45) 40%,
    rgba(0,10,35,0.28) 65%,
    rgba(0,10,35,0.38) 100%);
}
.hero-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}
.hero-content {
  color: #fff;
}
.hero-content h1 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}
.hero-description {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.92);
  margin: 0 0 28px 0;
  max-width: 520px;
  line-height: 1.65;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.hero-buttons .btn-primary { font-size: 1rem; padding: 13px 28px; border-radius: 10px; }
.hero-buttons .btn-secondary {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 10px;
  padding: 11px 24px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.25s, border-color 0.25s;
}
.hero-buttons .btn-secondary:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.7);
}
.hero-category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.hero-category-strip span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.9);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero-trust span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-trust span::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

/* Hero showcase kart (sağ) */
.hero-showcase {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-showcase-card {
  background: rgba(4,12,32,0.72);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.hero-showcase-card p {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin: 0 0 8px 0;
}
.hero-showcase-card h2 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}
.hero-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero-showcase-item {
  background: rgba(4,12,32,0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #fff;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.hero-showcase-item:hover { background: rgba(0,40,100,0.72); border-color: rgba(0,196,224,0.4); }
.hero-showcase-item i { font-size: 1.3rem; color: var(--accent); }
.hero-showcase-item strong { font-size: 0.88rem; font-weight: 700; }
.hero-showcase-item span { font-size: 0.78rem; color: rgba(255,255,255,0.65); line-height: 1.4; }

@media (max-width: 960px) {
  .hero-shell { grid-template-columns: 1fr; }
  .hero-showcase { display: none; }
  .hero-banner { min-height: 70vh; }
}

/* ── Ürün Kategorileri Bölümü ── */
.categories-section {
  padding: 72px 0;
  background: var(--surface);
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-kicker {
  display: inline-block;
  background: rgba(0,102,204,0.08);
  color: var(--brand);
  border-radius: 99px;
  padding: 5px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  margin: 0 0 12px 0;
  color: var(--text);
  letter-spacing: -0.02em;
}
.section-header p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 900px) { .category-grid { grid-template-columns: repeat(4, 1fr); } }

/* Eski kartlar (geriye dönük uyum) */
.category-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.category-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.category-card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: #dde5f0; }
.category-card-body { padding: 18px; }
.category-card-body h3 { font-size: 1rem; font-weight: 700; margin: 0 0 6px 0; }
.category-card-body p { font-size: 0.85rem; color: var(--muted); margin: 0 0 12px 0; line-height: 1.5; }
.category-card-link { font-size: 0.88rem; font-weight: 600; color: var(--brand); display: inline-flex; align-items: center; gap: 4px; }

/* ── Yeni full-image kartlar ── */
.cat-card {
  position: relative;
  display: block;
  text-decoration: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #0a1628;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.cat-card:hover {
  box-shadow: 0 20px 56px rgba(0,0,0,0.28);
  transform: translateY(-8px);
}

.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.4s ease;
  filter: brightness(0.82) saturate(1.1);
}
.cat-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.60) saturate(1.2);
}

.cat-card-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 22px;
  background: linear-gradient(to top, rgba(4,12,30,0.88) 0%, rgba(4,12,30,0.35) 45%, transparent 75%);
  color: #fff;
}

.cat-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: rgba(0,102,204,0.70);
  border: 1px solid rgba(0,196,224,0.5);
  border-radius: 13px;
  font-size: 1.25rem;
  margin-bottom: 12px;
  backdrop-filter: blur(6px);
  transition: background 0.25s ease, transform 0.25s ease;
}
.cat-card:hover .cat-card-icon {
  background: var(--brand);
  transform: scale(1.12);
}

.cat-card-body h3 {
  font-size: 1.18rem;
  font-weight: 800;
  margin: 0 0 8px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  min-height: 2.4em;
  display: flex;
  align-items: flex-end;
}

.cat-card-body p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.78);
  margin: 0 0 14px;
  line-height: 1.55;
  min-height: 3.8em;
  opacity: 1;
  transform: translateY(0);
}

.cat-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #00d4f0;
  letter-spacing: 0.03em;
  opacity: 1;
  transform: translateY(0);
  transition: gap 0.2s ease;
}
.cat-card:hover .cat-card-link {
  gap: 10px;
}

@media (max-width: 600px) {
  .category-grid { grid-template-columns: 1fr; gap: 14px; }
  .cat-card { aspect-ratio: 16/7; }
  .cat-card img { filter: brightness(0.65) saturate(1.1); }
  .cat-card-body { padding: 16px 16px; }
  .cat-card-icon { width: 36px; height: 36px; font-size: 1rem; margin-bottom: 8px; }
  .cat-card-body h3 { font-size: 1.05rem; min-height: unset; }
  .cat-card-body p { display: none; }
  .cat-card-link { opacity: 1; transform: translateY(0); }
}

/* ── Hakkımızda / Neden Colku Bölümü ── */
.about-strip {
  padding: 80px 0;
  background: var(--bg);
}
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-strip-text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin: 0 0 16px 0;
  color: var(--text);
}
.about-strip-text p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.about-fact {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid var(--border);
}
.about-fact strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 4px;
}
.about-fact span { font-size: 0.85rem; color: var(--muted); }
.about-strip-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-strip-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media (max-width: 860px) {
  .about-strip-inner { grid-template-columns: 1fr; }
  .about-strip-img { display: none; }
}

/* ── Avantajlar ── */
.advantages-section {
  padding: 72px 0;
  background: linear-gradient(135deg, #0f1a2b 0%, #1a3050 100%);
  color: #fff;
}
.advantages-section .section-header h2 { color: #fff; }
.advantages-section .section-header p { color: rgba(255,255,255,0.7); }
.advantages-section .section-kicker { background: rgba(255,255,255,0.12); color: var(--accent); }

.adv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 768px) { .adv-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 480px) {
  .adv-grid { grid-template-columns: 1fr; gap: 12px; }
  .adv-card { padding: 20px 18px; text-align: left; display: flex; align-items: flex-start; gap: 16px; }
  .adv-card i { font-size: 1.6rem; margin-bottom: 0; flex-shrink: 0; }
  .adv-card > div, .adv-card h4, .adv-card p { margin: 0; }
}
.adv-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: background var(--transition);
}
.adv-card:hover { background: rgba(255,255,255,0.12); }
.adv-card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}
.adv-card h4 { font-size: 0.95rem; font-weight: 700; margin: 0 0 8px 0; }
.adv-card p { font-size: 0.83rem; color: rgba(255,255,255,0.65); margin: 0; line-height: 1.5; }

/* ── Öne Çıkan Ürünler ── */
.featured-section {
  padding: 72px 0;
  background: var(--surface);
}

/* ── CTA Bant ── */
.cta-band {
  background: var(--brand);
  padding: 56px 0;
  text-align: center;
  color: #fff;
}
.cta-band h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin: 0 0 12px 0;
}
.cta-band p {
  font-size: 1rem;
  opacity: 0.88;
  margin: 0 0 28px 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band .btn-white {
  display: inline-block;
  background: #fff;
  color: var(--brand);
  padding: 13px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  transition: transform var(--transition), background var(--transition);
}
.cta-band .btn-white:hover { background: #e8f0ff; transform: translateY(-2px); }

/* ============================================================
   HERO — Ambient glow animasyonu ve dot deseni
   ============================================================ */
.hero-banner {
  isolation: isolate;
}

/* Animated ambient blobs */
.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 60% at 15% 50%, rgba(0,196,224,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 85% 40%, rgba(0,102,204,0.20) 0%, transparent 70%);
  animation: hero-ambient 8s ease-in-out infinite alternate;
}
@keyframes hero-ambient {
  0%   { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.06); }
}

/* Subtle dot-grid pattern */
.hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* Hero content — slide-up entrance */
.hero-content {
  animation: hero-slide-up 0.9s cubic-bezier(.22,1,.36,1) both;
  animation-delay: 0.05s;
}
@keyframes hero-slide-up {
  from { opacity: 0; transform: translateY(42px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero showcase — fade from right */
.hero-showcase {
  animation: hero-fade-right 0.95s cubic-bezier(.22,1,.36,1) both;
  animation-delay: 0.2s;
}
@keyframes hero-fade-right {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Stagger trust/strip items */
.hero-category-strip span {
  animation: pop-in 0.55s cubic-bezier(.34,1.56,.64,1) both;
}
.hero-category-strip span:nth-child(1) { animation-delay: 0.35s; }
.hero-category-strip span:nth-child(2) { animation-delay: 0.45s; }
.hero-category-strip span:nth-child(3) { animation-delay: 0.55s; }
.hero-category-strip span:nth-child(4) { animation-delay: 0.65s; }
@keyframes pop-in {
  from { opacity: 0; transform: scale(0.75) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Hero trust dots */
.hero-trust span {
  animation: fade-up 0.55s ease both;
}
.hero-trust span:nth-child(1) { animation-delay: 0.55s; }
.hero-trust span:nth-child(2) { animation-delay: 0.70s; }
.hero-trust span:nth-child(3) { animation-delay: 0.85s; }
@keyframes fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SHOWCASE ITEMS — float hover
   ============================================================ */
.hero-showcase-item {
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.hero-showcase-item:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  border-color: rgba(0,196,224,0.45);
}
.hero-showcase-item i {
  transition: transform 0.25s ease;
}
.hero-showcase-item:hover i {
  transform: scale(1.2) rotate(-6deg);
}

/* ============================================================
   SECTION KICKER — scale entrance
   ============================================================ */
.section-kicker {
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.section-kicker:hover {
  background: rgba(0,102,204,0.14);
  transform: scale(1.04);
}

/* ============================================================
   CATEGORY CARDS — image zoom + link arrow
   ============================================================ */
.category-card {
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.category-card:hover {
  box-shadow: 0 14px 44px rgba(0,102,204,0.15);
  transform: translateY(-6px);
  border-color: rgba(0,102,204,0.2);
}
.category-card-img {
  transition: transform 0.42s cubic-bezier(.25,.46,.45,.94);
}
.category-card:hover .category-card-img {
  transform: scale(1.06);
}
.category-card-link {
  transition: gap 0.2s, color 0.2s;
}
.category-card:hover .category-card-link {
  gap: 8px;
  color: var(--brand-dark);
}

/* ============================================================
   ABOUT FACTS — highlight glow on hover
   ============================================================ */
.about-fact {
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}
.about-fact:hover {
  box-shadow: 0 6px 24px rgba(0,102,204,0.12);
  border-color: var(--brand);
  transform: translateY(-2px);
}
.about-fact strong {
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   ADVANTAGES CARDS — lift & glow
   ============================================================ */
.adv-card {
  transition: background 0.25s, transform 0.25s ease, box-shadow 0.25s;
}
.adv-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(0,196,224,0.22);
  border-color: rgba(0,196,224,0.5);
}
.adv-card i {
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), color 0.2s;
}
.adv-card:hover i {
  transform: scale(1.22) rotate(-8deg);
}

/* ============================================================
   CTA BAND — animated gradient
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, #0a1628 0%, #0d2247 50%, #0a1628 100%);
  background-size: 200% 200%;
  animation: cta-gradient 8s ease infinite;
  position: relative;
  overflow: hidden;
  padding: 72px 0;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 10% 50%, rgba(0,102,204,0.25) 0%, transparent 65%),
    radial-gradient(ellipse 45% 60% at 90% 30%, rgba(0,196,224,0.18) 0%, transparent 65%);
  pointer-events: none;
}

/* Nokta deseni */
.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

@keyframes cta-gradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* İki sütun */
.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}

.cta-left { color: #fff; }

.cta-kicker {
  background: rgba(0,196,224,0.15);
  color: #00c4e0;
  border: 1px solid rgba(0,196,224,0.3);
}

.cta-left h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.22;
  margin: 16px 0 14px;
  letter-spacing: -0.02em;
}

.cta-left p {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.72);
  margin: 0 0 32px;
  max-width: 480px;
  line-height: 1.65;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-band .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #0a1628;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  position: relative;
  overflow: hidden;
}
.cta-band .btn-white:hover {
  background: #e8f4ff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.btn-white-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.btn-white-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

/* Sağ: iletişim kartları */
.cta-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 280px;
}

.cta-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #fff;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  backdrop-filter: blur(6px);
}
.cta-card:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.28);
  transform: translateX(-4px);
}

.cta-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,102,204,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.cta-card-icon--wa { background: rgba(37,211,102,0.35); }

.cta-card-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.cta-card strong {
  font-size: 0.95rem;
  font-weight: 600;
}

@media (max-width: 860px) {
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cta-right {
    min-width: unset;
  }
}
@media (max-width: 480px) {
  .cta-buttons { flex-direction: column; }
  .cta-band .btn-white,
  .btn-white-outline { justify-content: center; }
}
