/* ═══════════════════════════════════════════════════════
   Charts7 — Global Stylesheet
   Single CSS file for all pages
   ═══════════════════════════════════════════════════════ */

/* ─── VARIABLES ─── */
:root {
  --bg: #080b11;
  --bg-card: #0d1117;
  --bg-card-hover: #131920;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);
  --text: #e6edf3;
  --text-muted: #8b949e;
  --text-dim: #545d68;
  --accent: #3b82f6;
  --accent-glow: rgba(59,130,246,0.15);
  --accent-2: #10b981;
  --accent-3: #f59e0b;
  --accent-4: #ef4444;
  --gradient-1: linear-gradient(135deg, #3b82f6, #2563eb);
  --gradient-hero: linear-gradient(160deg, #0d1117 0%, #111827 40%, #0f1729 100%);
  --mono: 'Space Mono', monospace;
  --sans: 'DM Sans', sans-serif;
  --display: 'Outfit', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-card: 0 1px 3px rgba(0,0,0,0.4), 0 0 0 1px var(--border);
  --shadow-glow: 0 0 60px rgba(59,130,246,0.08);
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }

/* ─── UTILITY ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.15; }
.heading-xl { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; letter-spacing: -0.03em; }
.heading-lg { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -0.02em; }
.heading-md { font-size: clamp(1.25rem, 2.5vw, 1.5rem); font-weight: 600; }
.text-mono {
  font-family: var(--mono); font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent);
}

/* ─── GRID BG ─── */
.grid-bg {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    radial-gradient(circle at 50% 0%, rgba(59,130,246,0.04) 0%, transparent 50%),
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 100% 100%, 80px 80px, 80px 80px;
}

/* ═══════════════════ NAVIGATION ═══════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8,11,17,0.7);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.nav-logo {
  font-family: var(--display); font-weight: 800; font-size: 1.5rem;
  color: #fff; text-decoration: none; display: flex; align-items: center; gap: 8px;
}
.nav-logo .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent-2);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: var(--text-muted);
  text-decoration: none; transition: color 0.2s; position: relative;
}
.nav-links a:hover { color: #fff; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--accent); transform: scaleX(0);
  transition: transform 0.3s; transform-origin: right;
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  padding: 10px 24px; background: var(--gradient-1); border: none;
  border-radius: 8px; color: #fff; font-weight: 600; font-size: 0.875rem;
  cursor: pointer; text-decoration: none; transition: all 0.3s;
}
.nav-cta:hover { box-shadow: 0 8px 30px rgba(59,130,246,0.3); transform: translateY(-1px); }

.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; position: relative;
}
.mobile-toggle span {
  display: block; width: 20px; height: 2px; background: #fff;
  position: absolute; left: 10px; transition: all 0.3s;
}
.mobile-toggle span:nth-child(1) { top: 14px; }
.mobile-toggle span:nth-child(2) { top: 20px; }
.mobile-toggle span:nth-child(3) { top: 26px; }
.mobile-toggle.active span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(8,11,17,0.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); padding: 16px 0;
  transform: translateY(-10px); opacity: 0; transition: all 0.3s;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; }
.mobile-menu a {
  display: block; padding: 14px 24px; color: var(--text-muted);
  text-decoration: none; font-weight: 500; transition: all 0.2s;
}
.mobile-menu a:hover { color: #fff; background: rgba(255,255,255,0.03); }

/* ═══════════════════ BUTTONS ═══════════════════ */
.btn-primary {
  padding: 14px 32px; background: var(--gradient-1); border: none;
  border-radius: 10px; color: #fff; font-weight: 700; font-size: 1rem;
  cursor: pointer; text-decoration: none; transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans);
}
.btn-primary:hover { box-shadow: 0 12px 40px rgba(59,130,246,0.35); transform: translateY(-2px); }
.btn-secondary {
  padding: 14px 32px; background: transparent;
  border: 1px solid var(--border-hover); border-radius: 10px;
  color: var(--text); font-weight: 600; font-size: 1rem;
  cursor: pointer; text-decoration: none; transition: all 0.3s; font-family: var(--sans);
}
.btn-secondary:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.2); }

/* ═══════════════════ HERO ═══════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 72px; position: relative; background: var(--gradient-hero);
}
.hero::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 60%; height: 100%;
  background: radial-gradient(ellipse at 70% 30%, rgba(59,130,246,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px 6px 6px;
  background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2);
  border-radius: 100px; margin-bottom: 24px;
}
.hero-badge-dot {
  width: 20px; height: 20px; border-radius: 50%; background: var(--accent-2);
  display: flex; align-items: center; justify-content: center;
}
.hero-badge-dot svg { width: 10px; height: 10px; }
.hero-badge span { font-size: 0.75rem; font-weight: 600; color: var(--accent-2); }
.hero h1 { margin-bottom: 24px; }
.hero h1 .accent { color: var(--accent); }
.hero-desc {
  font-size: 1.125rem; color: var(--text-muted); max-width: 520px;
  margin-bottom: 40px; line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 40px; }
.hero-stat { text-align: left; }
.hero-stat-num { font-family: var(--display); font-weight: 800; font-size: 2rem; color: #fff; }
.hero-stat-label { font-size: 0.8rem; color: var(--text-dim); font-weight: 500; }
.hero-visual { position: relative; }
.hero-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-glow); transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.hero-card:hover { transform: translateY(-4px); }
.hero-card img { width: 100%; height: 400px; object-fit: cover; display: block; }
.hero-card-footer {
  padding: 20px 24px; display: flex; justify-content: space-between;
  align-items: center; border-top: 1px solid var(--border);
}
.hero-card-footer .live {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--accent-2); font-weight: 600;
}
.hero-card-footer .live::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-2); animation: pulse-dot 2s ease-in-out infinite;
}
.hero-card-footer .segments { font-size: 0.75rem; color: var(--text-dim); font-family: var(--mono); }
.hero-float-card {
  position: absolute; padding: 16px 20px;
  background: rgba(13,17,23,0.9); backdrop-filter: blur(12px);
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.float-card-1 { top: -20px; right: -30px; animation: float1 5s ease-in-out infinite; }
.float-card-2 { bottom: 60px; left: -40px; animation: float2 6s ease-in-out infinite; }
@keyframes float1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(-1deg); }
}
.float-label { font-size: 0.65rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.float-value { font-family: var(--mono); font-size: 1.1rem; font-weight: 700; }
.float-value.green { color: var(--accent-2); }
.float-value.blue { color: var(--accent); }

/* ═══════════════════ SEGMENTS STRIP ═══════════════════ */
.segments-strip {
  padding: 24px 0; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); background: rgba(13,17,23,0.5); overflow: hidden;
}
.segments-scroll {
  display: flex; gap: 48px; align-items: center;
  animation: scroll-strip 30s linear infinite;
}
.segments-scroll .item {
  font-family: var(--mono); font-size: 0.75rem; font-weight: 700;
  color: var(--text-dim); white-space: nowrap; letter-spacing: 0.12em;
}
.segments-scroll .dot { color: rgba(59,130,246,0.3); }
@keyframes scroll-strip {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════ SECTIONS ═══════════════════ */
section { position: relative; z-index: 1; }
.section { padding: 120px 0; }
.section-label { margin-bottom: 16px; }
.section-title { margin-bottom: 20px; }
.section-desc { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; line-height: 1.8; }
.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }

/* ═══════════════════ PAGE HEADER (sub-pages) ═══════════════════ */
.page-header {
  padding: 120px 0 60px;
  background: var(--gradient-hero);
  position: relative;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(59,130,246,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 2; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; margin-bottom: 24px;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: var(--text-dim); }
.breadcrumb .current { color: var(--accent); font-weight: 600; }
.page-title { margin-bottom: 16px; }
.page-desc { font-size: 1.1rem; color: var(--text-muted); max-width: 640px; line-height: 1.8; }

/* ═══════════════════ CARDS ═══════════════════ */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 28px;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1); position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient-1); opacity: 0; transition: opacity 0.4s;
}
.card:hover { border-color: var(--border-hover); transform: translateY(-6px); box-shadow: var(--shadow-glow); }
.card:hover::before { opacity: 1; }

/* ═══════════════════ SERVICES GRID ═══════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { composes: card; }
.service-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* Icon colors */
.icon-blue { background: rgba(59,130,246,0.1); color: var(--accent); }
.icon-green { background: rgba(16,185,129,0.1); color: var(--accent-2); }
.icon-amber { background: rgba(245,158,11,0.1); color: var(--accent-3); }
.icon-red { background: rgba(239,68,68,0.1); color: var(--accent-4); }
.icon-purple { background: rgba(139,92,246,0.1); color: #8b5cf6; }
.icon-cyan { background: rgba(6,182,212,0.1); color: #06b6d4; }

/* ═══════════════════ ABOUT / TWO-COL ═══════════════════ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.img-wrap {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
}
.img-wrap img { width: 100%; height: 480px; object-fit: cover; display: block; }
.img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 40%);
}
.feat-list { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.feat-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 20px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius); transition: all 0.3s;
}
.feat-item:hover { border-color: var(--border-hover); background: var(--bg-card-hover); }
.feat-icon {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 8px;
  background: var(--accent-glow); display: flex; align-items: center; justify-content: center;
}
.feat-icon svg { width: 18px; height: 18px; color: var(--accent); }
.feat-item h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 2px; }
.feat-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

/* ═══════════════════ PORTFOLIO / TEMPLATES ═══════════════════ */
.filter-bar { display: flex; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 20px; border-radius: 8px; border: 1px solid var(--border);
  background: transparent; color: var(--text-muted); font-weight: 600;
  font-size: 0.85rem; cursor: pointer; transition: all 0.3s; font-family: var(--sans);
}
.filter-btn:hover { border-color: var(--border-hover); color: #fff; }
.filter-btn.active { background: var(--gradient-1); border-color: transparent; color: #fff; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.portfolio-item {
  border-radius: var(--radius); overflow: hidden; position: relative;
  aspect-ratio: 16/10; cursor: pointer; border: 1px solid var(--border);
}
.portfolio-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,11,17,0.9) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h4 { font-size: 1rem; font-weight: 700; }
.portfolio-overlay span { font-family: var(--mono); font-size: 0.65rem; color: var(--accent); letter-spacing: 0.1em; }

/* ═══════════════════ GALLERY (coding pages) ═══════════════════ */
.gallery-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
.gallery-grid img {
  width: 100%; border-radius: var(--radius); border: 1px solid var(--border);
  transition: all 0.3s; cursor: pointer;
}
.gallery-grid img:hover { border-color: var(--border-hover); transform: scale(1.02); }
.gallery-scroll {
  max-height: 600px; overflow-y: auto; padding-right: 8px;
}
.gallery-scroll::-webkit-scrollbar { width: 4px; }
.gallery-scroll::-webkit-scrollbar-track { background: transparent; }
.gallery-scroll::-webkit-scrollbar-thumb { background: var(--border-hover); border-radius: 4px; }

/* ═══════════════════ ROBO ═══════════════════ */
.check-list { display: flex; flex-direction: column; gap: 16px; margin: 32px 0; }
.check-item { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: var(--text-muted); }
.check-icon {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 6px;
  background: rgba(16,185,129,0.1); display: flex; align-items: center; justify-content: center;
}
.check-icon svg { width: 14px; height: 14px; color: var(--accent-2); }

/* ═══════════════════ FOREX ═══════════════════ */
.forex-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.forex-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  display: flex; align-items: flex-start; gap: 20px; transition: all 0.3s;
}
.forex-card:hover { border-color: var(--border-hover); background: var(--bg-card-hover); }
.forex-card-icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.forex-card-icon svg { width: 24px; height: 24px; }
.forex-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.forex-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ═══════════════════ PRICING ═══════════════════ */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.price-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 28px;
  text-align: center; transition: all 0.4s cubic-bezier(0.16,1,0.3,1); position: relative;
}
.price-card:hover { transform: translateY(-8px); border-color: var(--border-hover); }
.price-card.featured { border-color: var(--accent); box-shadow: 0 0 40px rgba(59,130,246,0.1); }
.price-card.best { border-color: var(--accent-3); box-shadow: 0 0 40px rgba(245,158,11,0.1); }
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 4px 16px; border-radius: 100px; font-size: 0.7rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
}
.price-badge.pop { background: var(--accent); color: #fff; }
.price-badge.best { background: var(--accent-3); color: #000; }
.price-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 20px; color: var(--text-muted); }
.price-amount {
  font-family: var(--display); font-size: 3rem; font-weight: 800; color: #fff; margin-bottom: 4px;
}
.price-amount span { font-size: 1.2rem; font-weight: 400; color: var(--text-dim); }
.price-period { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 32px; }
.price-features { list-style: none; text-align: left; margin-bottom: 32px; }
.price-features li {
  padding: 10px 0; font-size: 0.9rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.price-features li:last-child { border: none; }
.price-features li svg { flex-shrink: 0; width: 16px; height: 16px; color: var(--accent-2); }
.price-features li.disabled { opacity: 0.4; }
.price-features li.disabled svg { color: var(--text-dim); }
.price-btn {
  display: block; width: 100%; padding: 14px; border-radius: 10px;
  font-weight: 700; font-size: 0.95rem; text-align: center;
  text-decoration: none; transition: all 0.3s; font-family: var(--sans); border: none; cursor: pointer;
}
.price-btn-outline { background: transparent; border: 1px solid var(--border-hover); color: #fff; }
.price-btn-outline:hover { background: rgba(255,255,255,0.05); }
.price-btn-fill { background: var(--gradient-1); color: #fff; }
.price-btn-fill:hover { box-shadow: 0 8px 30px rgba(59,130,246,0.3); }
.price-btn-gold { background: linear-gradient(135deg, var(--accent-3), #d97706); color: #000; }
.price-btn-gold:hover { box-shadow: 0 8px 30px rgba(245,158,11,0.3); }

/* ═══════════════════ FAQ ═══════════════════ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; background: none; border: none; color: #fff;
  cursor: pointer; text-align: left; font-size: 0.95rem; font-weight: 600;
  font-family: var(--sans); transition: background 0.2s;
}
.faq-q:hover { background: rgba(255,255,255,0.02); }
.faq-q svg {
  flex-shrink: 0; width: 20px; height: 20px; color: var(--text-dim);
  transition: transform 0.3s;
}
.faq-q.open svg { transform: rotate(180deg); }
.faq-a {
  padding: 0 24px 20px; font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.7; display: none;
}
.faq-a.open { display: block; }

/* ═══════════════════ CONTACT ═══════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 24px; }
.contact-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; text-align: center; transition: all 0.3s;
}
.contact-card:hover { border-color: var(--border-hover); }
.contact-card-icon {
  width: 40px; height: 40px; border-radius: 10px; margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
}
.contact-card-icon svg { width: 20px; height: 20px; }
.contact-card h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 4px; }
.contact-card p { font-size: 0.8rem; color: var(--text-muted); }
.contact-map {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); height: 100%; min-height: 400px;
}
.contact-map iframe {
  width: 100%; height: 100%; border: none; display: block;
  filter: grayscale(0.8) invert(0.92) contrast(0.9);
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-input {
  width: 100%; padding: 14px 18px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; color: #fff; font-size: 0.9rem;
  font-family: var(--sans); transition: all 0.3s; outline: none;
}
.contact-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.contact-input::placeholder { color: var(--text-dim); }
textarea.contact-input { resize: none; min-height: 130px; }
.form-btn {
  padding: 14px 32px; background: var(--gradient-1); border: none;
  border-radius: 10px; color: #fff; font-weight: 700; font-size: 1rem;
  cursor: pointer; transition: all 0.3s; font-family: var(--sans); width: 100%;
}
.form-btn:hover { box-shadow: 0 8px 30px rgba(59,130,246,0.3); }

/* ═══════════════════ CTA BLOCK ═══════════════════ */
.cta-block {
  max-width: 800px; margin: 0 auto; text-align: center;
  padding: 80px 48px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
}
.cta-block::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient-1);
}
.cta-block h2 { margin-bottom: 16px; }
.cta-block p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════ INFO CARDS (sub-pages) ═══════════════════ */
.info-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all 0.3s;
}
.info-card:hover { border-color: var(--border-hover); }
.info-card-header {
  display: flex; align-items: center; gap: 16px; margin-bottom: 20px;
}
.info-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.info-card-icon svg { width: 24px; height: 24px; }
.info-card h3 { font-size: 1.25rem; font-weight: 700; }
.info-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; }

/* Info table (project info) */
.info-table { width: 100%; }
.info-table .row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.info-table .row:last-child { border: none; }
.info-table .label { font-size: 0.85rem; color: var(--text-dim); font-weight: 500; }
.info-table .value { font-size: 0.9rem; font-weight: 600; }

/* ═══════════════════ FOOTER ═══════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 32px; background: rgba(8,11,17,0.8);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 48px; margin-bottom: 48px;
}
.footer h4 {
  font-size: 0.85rem; font-weight: 700; margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.footer p, .footer a {
  font-size: 0.875rem; color: var(--text-muted); text-decoration: none; line-height: 1.8;
}
.footer a:hover { color: var(--accent); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-dim); }
.footer-newsletter { display: flex; gap: 8px; }
.footer-newsletter input {
  flex: 1; padding: 10px 16px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 8px;
  color: #fff; font-size: 0.85rem; outline: none; font-family: var(--sans);
}
.footer-newsletter input:focus { border-color: var(--accent); }
.footer-newsletter button {
  padding: 10px 20px; background: var(--gradient-1); border: none;
  border-radius: 8px; color: #fff; font-weight: 700; font-size: 0.85rem;
  cursor: pointer; font-family: var(--sans);
}

/* ═══════════════════ WHATSAPP FLOAT ═══════════════════ */
.wa-float {
  position: fixed; bottom: 100px; right: 28px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  transition: all 0.3s; text-decoration: none; animation: float1 5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ═══════════════════ PAYMENT PAGE ═══════════════════ */
.pay-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 2rem; position: relative;
}
.pay-page::before {
  content: ''; position: fixed; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(59,130,246,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.pay-card {
  width: 100%; max-width: 460px; background: var(--bg-card);
  border-radius: var(--radius-lg); box-shadow: 0 16px 48px rgba(59,130,246,0.1);
  border: 1px solid var(--border); padding: 28px;
  display: grid; gap: 18px; position: relative; z-index: 1;
  animation: slideUp 0.6s ease-out;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.pay-brand {
  display: flex; gap: 18px; align-items: center;
  padding-bottom: 18px; border-bottom: 1px solid var(--border);
}
.pay-logo {
  width: 64px; height: 64px; border-radius: 16px; background: var(--gradient-1);
  display: grid; place-items: center; color: #fff; font-weight: 900; font-size: 1.625rem;
  box-shadow: 0 8px 24px rgba(59,130,246,0.3); flex-shrink: 0;
}
.pay-brand h1 {
  font-size: 1.75rem; font-weight: 800; margin-bottom: 4px;
  background: var(--gradient-1); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.pay-brand p { color: var(--text-muted); font-size: 0.875rem; font-weight: 500; }
.pay-receiver {
  padding: 16px 20px; background: var(--accent-glow);
  border-radius: 14px; border: 1px solid rgba(59,130,246,0.15); text-align: center;
}
.pay-receiver-label {
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 4px;
}
.pay-receiver-name { font-size: 1.5rem; font-weight: 700; }
.pay-qr-wrap { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.pay-qr {
  width: 100%; max-width: 260px; border-radius: 18px; padding: 20px;
  background: rgba(59,130,246,0.03); border: 2px solid rgba(59,130,246,0.15);
  box-shadow: 0 8px 32px rgba(59,130,246,0.1);
  display: flex; align-items: center; justify-content: center;
  animation: pulseBorder 2.5s infinite ease-in-out;
}
@keyframes pulseBorder {
  0%, 100% { border-color: rgba(59,130,246,0.15); }
  50% { border-color: rgba(59,130,246,0.35); }
}
.pay-qr img { display: block; max-width: 100%; border-radius: 12px; }
.pay-desc { color: var(--text-muted); font-size: 0.875rem; text-align: center; line-height: 1.6; }
.pay-trust {
  display: flex; gap: 14px; align-items: center;
  padding: 14px 18px; background: var(--accent-glow);
  border-radius: 14px; border: 1px solid rgba(59,130,246,0.1);
}
.pay-trust-icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--gradient-1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pay-trust-icon svg { width: 20px; height: 20px; color: #fff; }
.pay-trust-title { font-weight: 600; font-size: 0.875rem; }
.pay-trust-desc { font-size: 0.75rem; color: var(--text-dim); }
.pay-notes {
  font-size: 0.75rem; color: var(--text-dim); line-height: 1.6; text-align: center;
  padding: 14px; background: rgba(0,0,0,0.2); border-radius: 12px; border: 1px solid var(--border);
}
.pay-notes strong { color: var(--accent); font-weight: 600; }
.pay-notes a { color: var(--accent); text-decoration: none; font-weight: 600; }
.pay-notes a:hover { text-decoration: underline; }

/* ═══════════════════ REVEAL ANIMATION ═══════════════════ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1024px) {
  .hero-grid, .two-col, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { order: -1; }
  .gallery-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-toggle { display: block; }
  .mobile-menu { display: block; }
  .services-grid, .forex-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .contact-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .section { padding: 80px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .cta-block { padding: 48px 24px; }
}
