/* ============================================
   TEMMY DIGITAL EXCHANGE LTD
   Crypto Trading & Building Materials
   ============================================ */

:root {
  --bg: #0a0a0f;
  --bg-card: #111118;
  --bg-elevated: #1a1a24;
  --text: #f0f0f5;
  --text-muted: #8a8a9a;
  --text-dim: #5a5a6a;
  --cyan: #00d4ff;
  --cyan-dim: rgba(0, 212, 255, 0.1);
  --gold: #c9a96e;
  --gold-dim: rgba(201, 169, 110, 0.1);
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
  --border: rgba(255, 255, 255, 0.06);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  /* Social brand colors */
  --fb: #1877F2;
  --x: #14171A;
  --ig-start: #f09433;
  --ig-mid: #e6683c;
  --ig-end: #bc1888;
  --yt: #FF0000;
  --tk: #000000;
  --tg: #0088cc;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

::selection { background: rgba(0, 212, 255, 0.2); color: var(--text); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 100;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 8px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.whatsapp-float svg { width: 30px; height: 30px; color: white; position: relative; z-index: 2; }

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6), 0 12px 50px rgba(0, 0, 0, 0.4);
}

.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--whatsapp);
  animation: pulse 2s ease-out infinite;
  opacity: 0.3;
  z-index: 1;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.6); opacity: 0; }
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--bg-elevated);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ============================================
   HEADER
   ============================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

/* Top Banner */
.header-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px 20px;
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.08) 0%, rgba(37, 99, 235, 0.08) 50%, rgba(0, 212, 255, 0.08) 100%);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  font-size: 11px;
  font-weight: 500;
  color: var(--cyan);
  letter-spacing: 0.08em;
}

.banner-dot {
  width: 6px;
  height: 6px;
  background: var(--whatsapp);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

/* Header Main */
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 48px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
}

.logo-svg {
  height: 36px;
  width: auto;
}

/* Nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: color 0.25s;
  position: relative;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--cyan);
  transition: width 0.3s;
}

.desktop-nav a:hover { color: var(--text); }
.desktop-nav a:hover::after { width: 100%; }

/* WhatsApp Header Button */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-dark) 100%);
  color: white;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn svg { width: 16px; height: 16px; }

.whatsapp-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  padding-top: 80px;
}
.mobile-menu.active { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--text);
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.4s ease;
}
.mobile-menu.active a { opacity: 1; transform: translateY(0); }
.mobile-menu.active a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu a:hover { color: var(--cyan); }

/* ============================================
   SHARED
   ============================================ */
.v3-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cyan);
  margin-bottom: 16px;
}
.v3-label.accent { color: var(--gold); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-dark) 100%);
  color: white;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  border: none;
  cursor: pointer;
}

.btn-primary svg { width: 20px; height: 20px; }

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}

.btn-primary.large { padding: 18px 40px; font-size: 16px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: var(--text);
  border-radius: 14px;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--bg-elevated);
  border-color: rgba(255, 255, 255, 0.15);
}

.v3-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  transition: color 0.25s;
}
.v3-link:hover { color: var(--text); }

/* ============================================
   HERO
   ============================================ */
.hero-v3 {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 48px 80px;
  overflow: hidden;
}

.hero-v3-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-v3-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-v3-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 10, 15, 0.55) 0%,
    rgba(10, 10, 15, 0.75) 50%,
    var(--bg) 100%
  );
}

.hero-v3-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-v3-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: var(--cyan-dim);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--cyan);
  margin-bottom: 28px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--whatsapp);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-v3 h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-v3 h1 .line { display: block; }

.hero-v3 h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cyan) 0%, #00a8cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-v3 h1 .tagline {
  font-size: 0.65em;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 8px;
}

.hero-v3-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-v3-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-v3-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  padding: 0 40px;
}

.hero-stat:first-child { padding-left: 0; }

.hero-stat strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.hero-stat span {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-top: 6px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ============================================
   CRYPTO SECTION
   ============================================ */
.crypto-section {
  padding: 120px 48px;
  background: var(--bg);
}

.crypto-inner {
  max-width: 1100px;
  margin: 0 auto;
}

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

.crypto-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}

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

.crypto-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.crypto-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.4s ease;
}

.crypto-card:hover {
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.crypto-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--cyan-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 20px;
}

.crypto-icon svg { width: 22px; height: 22px; }

.crypto-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.crypto-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

.crypto-cta-row {
  text-align: center;
}

/* ============================================
   BUILDING MATERIALS SECTION
   ============================================ */
.homes-section {
  padding: 100px 48px;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(201, 169, 110, 0.03) 100%);
  border-top: 1px solid var(--border);
}

.homes-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.homes-left h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

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

.homes-list {
  list-style: none;
  margin-bottom: 28px;
}

.homes-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
  padding: 8px 0;
}

.homes-list li svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.homes-right {
  position: relative;
}

.homes-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.homes-img-main img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.homes-img-small {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 50%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--bg);
}

.homes-img-small img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ============================================
   ABOUT
   ============================================ */
.about-v3 {
  padding: 120px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.about-v3-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: center;
}

.about-v3-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-v3-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(15%);
  transition: filter 0.5s;
}

.about-v3-img:hover img { filter: grayscale(0%); }

.about-v3-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

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

.about-v3-content p strong { color: var(--text); }
.about-v3-content p em { color: var(--cyan); font-style: normal; }

/* Social icons with brand colors */
.about-v3-socials {
  display: flex;
  gap: 8px;
  margin-top: 32px;
}

.about-v3-socials a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: all 0.25s ease;
}

.about-v3-socials a svg { width: 17px; height: 17px; }

/* Facebook */
.about-v3-socials .social-fb:hover {
  background: var(--fb);
  color: white;
  border-color: var(--fb);
  transform: translateY(-2px);
}

/* X (Twitter) */
.about-v3-socials .social-x:hover {
  background: #1a1a1a;
  color: white;
  border-color: #333;
  transform: translateY(-2px);
}

/* Instagram */
.about-v3-socials .social-ig:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}

/* YouTube */
.about-v3-socials .social-yt:hover {
  background: #FF0000;
  color: white;
  border-color: #FF0000;
  transform: translateY(-2px);
}

/* TikTok */
.about-v3-socials .social-tk:hover {
  background: #000;
  color: white;
  border-color: #333;
  transform: translateY(-2px);
}

/* Telegram */
.about-v3-socials .social-tg:hover {
  background: #0088cc;
  color: white;
  border-color: #0088cc;
  transform: translateY(-2px);
}

/* WhatsApp */
.about-v3-socials .social-wa:hover {
  background: var(--whatsapp);
  color: white;
  border-color: var(--whatsapp);
  transform: translateY(-2px);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-v3 {
  padding: 120px 48px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-card) 100%);
  border-top: 1px solid var(--border);
}

.contact-v3-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
}

.contact-v3-left h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.contact-v3-left p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 400px;
}

.contact-email {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--cyan);
  border-bottom: 2px solid var(--cyan);
  padding-bottom: 4px;
  margin-bottom: 32px;
  transition: color 0.25s, border-color 0.25s;
}

.contact-email:hover {
  color: var(--text);
  border-color: var(--text);
}

.contact-v3-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.contact-v3-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.connect-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  transition: border-color 0.3s;
}

.connect-card:hover { border-color: rgba(0, 212, 255, 0.15); }

.connect-card h4 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cyan);
  margin-bottom: 20px;
}

.connect-card p {
  font-size: 15px;
  color: var(--text-muted);
}

.connect-note {
  margin-top: 6px;
  font-size: 13px !important;
  color: var(--text-dim) !important;
}

.connect-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.connect-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.25s;
}

.connect-list a svg { flex-shrink: 0; }

.connect-list a:hover { color: var(--cyan); }

/* ============================================
   FOOTER
   ============================================ */
.footer-v3 {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.footer-v3-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
}

.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  display: block;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  gap: 48px;
}

.footer-links h5 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: var(--text-dim);
  padding: 4px 0;
  transition: color 0.25s;
}

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

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
}

.footer-bottom span {
  font-size: 12px;
  color: var(--text-dim);
}

.footer-bottom a {
  font-size: 12px;
  color: var(--text-dim);
  transition: color 0.25s;
}

.footer-bottom a:hover { color: var(--text-muted); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .header-main { padding: 0 24px; }
  .hero-v3 { padding: 130px 24px 60px; }
  .crypto-section { padding: 80px 24px; }
  .homes-section { padding: 80px 24px; }
  .about-v3 { padding: 80px 24px; }
  .contact-v3 { padding: 80px 24px; }
  .footer-v3-inner { padding: 40px 24px; }
  .footer-bottom { padding: 20px 24px; }

  .crypto-grid { grid-template-columns: repeat(2, 1fr); }
  .homes-inner { gap: 40px; }
  .about-v3-inner { gap: 40px; }
  .contact-v3-inner { gap: 40px; }
}

@media (max-width: 768px) {
  .header-banner { font-size: 10px; padding: 6px 12px; }
  .header-main { padding: 0 16px; height: 54px; }
  .logo-svg { height: 30px; }
  .desktop-nav, .desktop-only { display: none !important; }
  .hamburger { display: flex; }

  .hero-v3 { padding: 120px 16px 60px; min-height: auto; }
  .hero-v3 h1 { font-size: clamp(32px, 9vw, 48px); }
  .hero-v3-cta { flex-direction: column; }
  .hero-v3-cta .btn-primary, .hero-v3-cta .btn-secondary { width: 100%; justify-content: center; }
  .hero-v3-bottom { flex-wrap: wrap; gap: 16px; margin-top: 48px; }
  .hero-stat { padding: 0 16px; }
  .hero-stat-divider { display: none; }

  .crypto-grid { grid-template-columns: 1fr; }

  .homes-inner { grid-template-columns: 1fr; }
  .homes-right { order: -1; }
  .homes-img-small { display: none; }

  .about-v3-inner { grid-template-columns: 1fr; }
  .about-v3-img { max-width: 280px; margin: 0 auto; }
  .about-v3-content { text-align: center; }
  .about-v3-socials { justify-content: center; }

  .contact-v3-inner { grid-template-columns: 1fr; text-align: center; }
  .contact-v3-left p, .contact-email { margin-left: auto; margin-right: auto; }
  .contact-v3-actions { justify-content: center; }

  .footer-v3-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .whatsapp-float { width: 54px; height: 54px; bottom: 20px; right: 20px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .whatsapp-tooltip { display: none; }
}
