/* =========================================================
   BeSoft Kurumsal — Premium Tema
   Bootstrap 5 üstüne kendi tasarım dilimiz.
   Renkler CSS değişkeni; dark/light tek yerden yönetilir.
   ========================================================= */

:root {
  --bs-primary: #4f46e5;
  --brand: #4f46e5;
  --brand-2: #8b5cf6;
  --brand-grad: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  --brand-soft: rgba(99, 102, 241, .12);

  --ink: #0f172a;
  --ink-2: #475569;
  --ink-3: #64748b;
  --bg: #ffffff;
  --bg-2: #f8fafc;
  --bg-3: #f1f5f9;
  --panel: #ffffff;
  --line: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, .06), 0 1px 2px rgba(15, 23, 42, .04);
  --shadow: 0 10px 30px -12px rgba(15, 23, 42, .18);
  --shadow-lg: 0 24px 60px -20px rgba(79, 70, 229, .30);
  --radius: 18px;
  --radius-sm: 12px;
  --nav-h: 74px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  scroll-behavior: smooth;
}

[data-bs-theme="dark"] {
  --ink: #f1f5f9;
  --ink-2: #cbd5e1;
  --ink-3: #94a3b8;
  --bg: #0b1120;
  --bg-2: #0f172a;
  --bg-3: #1e293b;
  --panel: #131c2e;
  --line: #24314a;
  --shadow: 0 10px 30px -12px rgba(0, 0, 0, .5);
  --shadow-lg: 0 24px 60px -20px rgba(0, 0, 0, .6);
  --brand-soft: rgba(129, 140, 248, .16);
}

* { box-sizing: border-box; }

body {
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background .4s var(--ease), color .3s var(--ease);
}

h1, h2, h3, h4, h5 { font-weight: 800; letter-spacing: -.02em; color: var(--ink); line-height: 1.2; }
a { text-decoration: none; color: var(--brand); }
p { color: var(--ink-2); }
img { max-width: 100%; }
section { position: relative; }
.text-muted-2 { color: var(--ink-3) !important; }

.skip-link {
  position: absolute; left: 12px; top: 8px; z-index: 2000;
  background: var(--brand); color: #fff; padding: 8px 16px; border-radius: 8px;
  transform: translateY(-150%); transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); color: #fff; }

/* ---------- Konteyner ölçüsü ---------- */
.container { max-width: 1200px; }

/* ---------- Bölüm başlıkları ---------- */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand); background: var(--brand-soft);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 18px;
}
.section-title { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
.section-lead { font-size: 18px; color: var(--ink-2); max-width: 640px; }
.text-center .section-lead { margin-inline: auto; }
.text-gradient {
  background: var(--brand-grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.site-nav {
  height: var(--nav-h);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: all .3s var(--ease);
}
.site-nav.scrolled {
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.brand-text { font-weight: 800; font-size: 22px; letter-spacing: -.03em; color: var(--ink); }
.brand-dot { color: var(--brand); }
.brand-mark { display: inline-flex; }
.site-nav .nav-link {
  font-weight: 600; color: var(--ink-2); margin: 0 2px; padding: 8px 14px !important;
  border-radius: 10px; position: relative; transition: color .2s, background .2s;
}
.site-nav .nav-link:hover { color: var(--brand); background: var(--brand-soft); }
.site-nav .nav-link.active { color: var(--brand); }
.btn-icon {
  width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 12px; background: var(--panel); color: var(--ink-2);
  font-size: 18px; transition: all .2s;
}
.btn-icon:hover { color: var(--brand); border-color: var(--brand); transform: translateY(-1px); }

/* Butonlar */
.btn { font-weight: 600; border-radius: 12px; padding: 11px 22px; transition: all .25s var(--ease); }
.btn-primary {
  background: var(--brand-grad); border: none; box-shadow: 0 8px 20px -8px rgba(99,102,241,.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(99,102,241,.7); background: var(--brand-grad); }
.btn-cta { padding: 9px 20px; }
.btn-outline-brand {
  border: 1.5px solid var(--line); color: var(--ink); background: transparent;
}
.btn-outline-brand:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-soft); }
.btn-lg { padding: 14px 30px; font-size: 16px; }

/* =========================================================
   HERO
   ========================================================= */
.hero { padding: calc(var(--nav-h) + 72px) 0 90px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: -1; overflow: hidden;
}
.hero-bg::before {
  content: ""; position: absolute; width: 620px; height: 620px; top: -220px; right: -140px;
  background: radial-gradient(circle, rgba(139,92,246,.28), transparent 62%); filter: blur(20px);
}
.hero-bg::after {
  content: ""; position: absolute; width: 520px; height: 520px; bottom: -240px; left: -160px;
  background: radial-gradient(circle, rgba(99,102,241,.22), transparent 62%); filter: blur(20px);
}
.hero-grid-lines {
  position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 72%);
}
.hero h1 { font-size: clamp(34px, 5.4vw, 60px); margin-bottom: 22px; }
.hero-lead { font-size: clamp(17px, 2vw, 20px); color: var(--ink-2); max-width: 560px; margin-bottom: 32px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--ink-2);
  background: var(--panel); border: 1px solid var(--line); padding: 8px 15px; border-radius: 100px;
}
.hero-badge i { color: var(--brand); }

/* Hero görsel — kod penceresi */
.hero-visual { position: relative; }
.code-window {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.code-head { display: flex; align-items: center; gap: 7px; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.code-dot { width: 12px; height: 12px; border-radius: 50%; }
.code-dot.r { background: #ef4444; } .code-dot.y { background: #f59e0b; } .code-dot.g { background: #22c55e; }
.code-file { margin-left: 12px; font-size: 12.5px; color: var(--ink-3); font-family: ui-monospace, Menlo, Consolas, monospace; }
.code-body { padding: 22px; font-family: ui-monospace, Menlo, Consolas, monospace; font-size: 13.5px; line-height: 1.9; }
.code-body .ln { color: var(--ink-3); }
.tok-key { color: #8b5cf6; } .tok-fn { color: #3b82f6; } .tok-str { color: #10b981; } .tok-com { color: var(--ink-3); font-style: italic; }
.floating-card {
  position: absolute; background: var(--panel); border: 1px solid var(--line);
  border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600;
}
.floating-card i { font-size: 20px; }
.fc-1 { top: -22px; left: -20px; } .fc-1 i { color: #22c55e; }
.fc-2 { bottom: -22px; right: -14px; } .fc-2 i { color: #f59e0b; }

/* =========================================================
   İSTATİSTİK ŞERİDİ
   ========================================================= */
.stats-strip { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat-item { text-align: center; padding: 12px; }
.stat-num { font-size: clamp(30px, 4vw, 42px); font-weight: 800; color: var(--ink); line-height: 1; }
.stat-num .text-gradient { display: inline; }
.stat-label { color: var(--ink-3); font-size: 14.5px; margin-top: 8px; font-weight: 600; }

/* =========================================================
   KARTLAR (hizmet / özellik)
   ========================================================= */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.feature-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  height: 100%; position: relative; overflow: hidden;
}
.feature-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: var(--brand-grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .3s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 58px; height: 58px; border-radius: 15px; display: inline-flex; align-items: center; justify-content: center;
  font-size: 26px; color: #fff; background: var(--brand-grad); margin-bottom: 20px;
  box-shadow: 0 10px 24px -10px rgba(99,102,241,.7);
}
.feature-card h3 { font-size: 20px; margin-bottom: 10px; }
.feature-card p { font-size: 15px; margin-bottom: 16px; }
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li { font-size: 14.5px; color: var(--ink-2); padding: 5px 0 5px 26px; position: relative; }
.feature-list li::before {
  content: "\F26E"; font-family: "bootstrap-icons"; position: absolute; left: 0; color: var(--brand); font-size: 15px;
}

/* =========================================================
   REFERANS LOGOLARI
   ========================================================= */
.ref-logos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ref-logo-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 16px;
  padding: 28px 16px 20px; text-align: center; transition: all .3s var(--ease);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.ref-logo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand); }
.ref-logo-card img { width: 92px; height: 92px; object-fit: contain; border-radius: 50%; background: #fff; padding: 6px; }
.ref-logo-card span { font-weight: 700; font-size: 15px; color: var(--ink); }
.ref-logo-card small { color: var(--ink-3); font-size: 12.5px; }
@media (max-width: 575px) { .ref-logos { grid-template-columns: repeat(2, 1fr); gap: 14px; } .ref-logo-card img { width: 72px; height: 72px; } }

/* Proje kartları */
.project-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s; height: 100%;
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project-cover { height: 190px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.project-cover i { font-size: 62px; color: #fff; opacity: .95; position: relative; z-index: 1; }
.project-cover span.tag { position: absolute; top: 14px; left: 14px; z-index: 2; background: rgba(255,255,255,.2); backdrop-filter: blur(6px); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 100px; }
.project-body { padding: 24px; }
.project-body h3 { font-size: 19px; margin-bottom: 8px; }
.project-body p { font-size: 14.5px; margin-bottom: 14px; }
.project-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { font-size: 12px; font-weight: 600; color: var(--brand); background: var(--brand-soft); padding: 4px 11px; border-radius: 8px; }

/* =========================================================
   SÜREÇ (timeline)
   ========================================================= */
.timeline { position: relative; max-width: 860px; margin-inline: auto; }
.timeline::before {
  content: ""; position: absolute; left: 27px; top: 10px; bottom: 10px; width: 2px; background: var(--line);
}
.tl-item { position: relative; padding: 0 0 42px 78px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-num {
  position: absolute; left: 0; top: 0; width: 56px; height: 56px; border-radius: 16px;
  background: var(--brand-grad); color: #fff; font-weight: 800; font-size: 20px;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px -10px rgba(99,102,241,.7);
}
.tl-item h3 { font-size: 20px; margin-bottom: 8px; }
.tl-item p { font-size: 15px; margin: 0; }

/* =========================================================
   SSS (accordion)
   ========================================================= */
.accordion { --bs-accordion-bg: transparent; --bs-accordion-border-color: var(--line); border-radius: var(--radius); overflow: hidden; }
.accordion-item { background: var(--panel); border: 1px solid var(--line); margin-bottom: 14px; border-radius: var(--radius-sm) !important; overflow: hidden; }
.accordion-button {
  font-weight: 700; color: var(--ink); background: var(--panel); padding: 20px 24px; font-size: 16.5px;
}
.accordion-button:not(.collapsed) { color: var(--brand); background: var(--brand-soft); box-shadow: none; }
.accordion-button:focus { box-shadow: none; border-color: var(--brand); }
.accordion-button::after { filter: var(--acc-icon, none); }
[data-bs-theme="dark"] .accordion-button::after { filter: invert(1) grayscale(1) brightness(1.6); }
.accordion-body { color: var(--ink-2); padding: 4px 24px 22px; font-size: 15px; }

/* =========================================================
   BLOG
   ========================================================= */
.blog-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s; height: 100%; display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-cover { height: 170px; background: var(--brand-grad); display: flex; align-items: center; justify-content: center; }
.blog-cover i { font-size: 50px; color: #fff; opacity: .9; }
.blog-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-meta { font-size: 12.5px; color: var(--ink-3); font-weight: 600; margin-bottom: 10px; display: flex; gap: 12px; }
.blog-body h3 { font-size: 18.5px; margin-bottom: 10px; }
.blog-body p { font-size: 14.5px; flex: 1; }
.blog-more { font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.blog-more i { transition: transform .2s; }
.blog-card:hover .blog-more i { transform: translateX(4px); }

/* Blog yazı gövdesi tipografisi */
.blog-article { font-size: 17px; line-height: 1.85; color: var(--ink-2); }
.blog-article h2 { font-size: 24px; margin: 34px 0 14px; color: var(--ink); }
.blog-article p { margin-bottom: 18px; }
.blog-article ul { padding-left: 4px; list-style: none; margin-bottom: 20px; }
.blog-article ul li { position: relative; padding: 6px 0 6px 30px; }
.blog-article ul li::before { content: "\F26E"; font-family: "bootstrap-icons"; position: absolute; left: 0; top: 6px; color: var(--brand); }
.blog-article strong { color: var(--ink); }

/* =========================================================
   İLETİŞİM & FORM
   ========================================================= */
.contact-info-card {
  background: var(--brand-grad); color: #fff; border-radius: var(--radius); padding: 40px; height: 100%;
}
.contact-info-card h3 { color: #fff; }
.contact-info-card p { color: rgba(255,255,255,.85); }
.contact-line { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-line i { font-size: 20px; width: 44px; height: 44px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,.15); border-radius: 12px; }
.contact-line a, .contact-line span { color: #fff; }
.contact-line small { display: block; color: rgba(255,255,255,.7); font-size: 12.5px; }

.form-panel { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-sm); }
.form-label { font-weight: 600; color: var(--ink); font-size: 14.5px; margin-bottom: 7px; }
.form-control, .form-select {
  background: var(--bg-2); border: 1.5px solid var(--line); color: var(--ink); border-radius: 12px; padding: 12px 16px;
}
.form-control:focus, .form-select:focus { background: var(--bg-2); border-color: var(--brand); color: var(--ink); box-shadow: 0 0 0 4px var(--brand-soft); }
.form-control::placeholder { color: var(--ink-3); }
.form-check-input:checked { background-color: var(--brand); border-color: var(--brand); }

.alert-success { background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.4); color: #16a34a; border-radius: 12px; }
.alert-danger { background: rgba(239,68,68,.12); border: 1px solid rgba(239,68,68,.4); color: #dc2626; border-radius: 12px; }

/* =========================================================
   CTA BLOĞU
   ========================================================= */
.cta-block { background: var(--brand-grad); border-radius: 26px; padding: 64px; text-align: center; position: relative; overflow: hidden; }
.cta-block::before { content: ""; position: absolute; width: 340px; height: 340px; top: -120px; right: -80px; background: radial-gradient(circle, rgba(255,255,255,.18), transparent 60%); }
.cta-block h2 { color: #fff; font-size: clamp(26px, 3.5vw, 38px); }
.cta-block p { color: rgba(255,255,255,.9); font-size: 18px; max-width: 560px; margin-inline: auto; }
.cta-block .btn-light { color: var(--brand); font-weight: 700; }

/* Sayfa başlığı (iç sayfalar) */
.page-hero { padding: calc(var(--nav-h) + 60px) 0 60px; background: var(--bg-2); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; width: 480px; height: 480px; top: -240px; right: -120px; background: radial-gradient(circle, rgba(139,92,246,.16), transparent 62%); }
.page-hero h1 { font-size: clamp(30px, 4.5vw, 46px); }
.breadcrumb-nav { font-size: 14px; color: var(--ink-3); }
.breadcrumb-nav a { color: var(--ink-3); }
.breadcrumb-nav a:hover { color: var(--brand); }

/* =========================================================
   WHATSAPP FLOAT + SCROLL TOP
   ========================================================= */
.whatsapp-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 1050;
  width: 60px; height: 60px; border-radius: 50%; background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 30px;
  box-shadow: 0 10px 30px -6px rgba(37,211,102,.6); transition: transform .25s var(--ease);
  animation: waPulse 2.4s infinite;
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }
.whatsapp-tooltip {
  position: absolute; right: 72px; background: var(--ink); color: var(--bg); white-space: nowrap;
  font-size: 13px; font-weight: 600; padding: 8px 14px; border-radius: 10px; opacity: 0; pointer-events: none;
  transform: translateX(8px); transition: all .2s;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

.scroll-top {
  position: fixed; right: 26px; bottom: 96px; z-index: 1040; width: 46px; height: 46px; border-radius: 12px;
  border: 1px solid var(--line); background: var(--panel); color: var(--brand); font-size: 20px;
  display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none;
  transform: translateY(12px); transition: all .3s var(--ease); box-shadow: var(--shadow);
}
.scroll-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: var(--brand); color: #fff; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 72px 0 28px; margin-top: 20px; }
.footer-desc { color: var(--ink-2); font-size: 14.5px; margin: 0 0 20px; max-width: 340px; }
.footer-title { font-size: 15px; font-weight: 800; margin-bottom: 18px; color: var(--ink); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: var(--ink-2); font-size: 14.5px; transition: color .2s, padding .2s; }
.footer-links a:hover { color: var(--brand); padding-left: 4px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; color: var(--ink-2); font-size: 14.5px; }
.footer-contact i { color: var(--brand); font-size: 17px; flex-shrink: 0; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--line); background: var(--panel);
  color: var(--ink-2); display: inline-flex; align-items: center; justify-content: center; font-size: 17px; transition: all .2s;
}
.footer-social a:hover { color: #fff; background: var(--brand); border-color: var(--brand); transform: translateY(-2px); }
.footer-bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--ink-3); gap: 10px; }
.footer-bottom p { color: var(--ink-3); }

/* =========================================================
   ANİMASYONLAR (scroll reveal)
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .whatsapp-float { animation: none; }
  :root { scroll-behavior: auto; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991px) {
  .site-nav .navbar-collapse { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 16px; margin-top: 12px; box-shadow: var(--shadow); }
  .site-nav .nav-link { padding: 10px 14px !important; }
  .navbar-nav { margin-bottom: 12px; }
  .hero { padding-top: calc(var(--nav-h) + 40px); text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-badges { justify-content: center; }
  .hero-visual { margin-top: 54px; }
  .section { padding: 68px 0; }
  .cta-block { padding: 44px 24px; }
  .contact-info-card, .form-panel { padding: 28px; }
}
@media (max-width: 575px) {
  .ref-logos { gap: 12px; }
  .cta-block { border-radius: 20px; }
  .whatsapp-float { width: 54px; height: 54px; font-size: 27px; right: 18px; bottom: 18px; }
}
