/* ============================================================
   Atomozide — Modern Dark International Website Stylesheet
   Pure Cyber-Obsidian Theme with Atomic Cyan & Violet Glows
   ============================================================ */

:root {
  --bg-deep: #060608;
  --bg-dark: #0b0b0f;
  --bg-card: #121218;
  --bg-card-hover: #18161e;
  --bg-surface: #1e1b26;
  --bg-input: #101015;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.18);
  --border-cyan: rgba(255, 69, 0, 0.38);
  
  --cyan-primary: #ff4500;
  --cyan-hover: #ff5e2e;
  --cyan-glow: rgba(255, 69, 0, 0.32);
  
  --violet-primary: #ff2a00;
  --violet-glow: rgba(255, 42, 0, 0.28);
  
  --green-success: #10b981;
  --red-accent: #f43f5e;
  
  --text-white: #ffffff;
  --text-light: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --radius-xl: 20px;
  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 6px;
  
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  
  --transition-fast: 0.18s ease;
  --transition: 0.26s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-deep);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Ambient Glow Spheres */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.16;
}

.glow-cyan {
  top: -120px;
  left: 5%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, #ff4500, transparent 70%);
}

.glow-violet {
  top: 300px;
  right: 5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #ff2a00, transparent 70%);
}

/* ============================================================
   Announcement Bar
   ============================================================ */
.announcement-bar {
  background: linear-gradient(90deg, rgba(255, 69, 0, 0.12), rgba(255, 42, 0, 0.14));
  border-bottom: 1px solid rgba(255, 69, 0, 0.2);
  padding: 8px 0;
  font-size: 0.82rem;
  text-align: center;
  position: relative;
  z-index: 101;
}

.announcement-content strong {
  color: var(--cyan-primary);
}

/* ============================================================
   Navbar
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 6, 8, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-white);
}

.atom-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotateGlow 14s linear infinite;
}

@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-accent {
  color: var(--cyan-primary);
  text-shadow: 0 0 16px var(--cyan-glow);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a:hover {
  color: var(--text-white);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan-primary);
  transition: width 0.2s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-main);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.84rem;
  border-radius: var(--radius-sm);
}

.btn-primary {
  background: linear-gradient(135deg, #ff4500, #ff2a00);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 20px var(--cyan-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255, 69, 0, 0.5);
}

.btn-outline {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-white);
}

.btn-outline:hover {
  background: var(--bg-surface);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero-section {
  position: relative;
  z-index: 1;
  padding: 85px 0 75px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(255, 69, 0, 0.08);
  border: 1px solid var(--border-cyan);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--cyan-primary);
  margin-bottom: 20px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan-primary);
  box-shadow: 0 0 8px var(--cyan-primary);
}

.hero-heading {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.gradient-title {
  background: linear-gradient(135deg, #ffffff 15%, #ff5722 65%, #ff2a00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 34px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 28px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
}

.stat-card {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cyan-primary);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* Hero Preview Card */
.hero-visual {
  position: relative;
}

.hero-card-preview {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 30px;
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 50px var(--cyan-glow);
  transition: var(--transition);
}

.hero-card-preview:hover {
  border-color: var(--border-cyan);
  transform: translateY(-4px);
}

.preview-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.preview-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: rgba(0, 242, 254, 0.15);
  color: var(--cyan-primary);
  border: 1px solid var(--border-cyan);
  padding: 3px 10px;
  border-radius: 12px;
}

.preview-status {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #c084fc;
}

.preview-art {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.orbital-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255, 69, 0, 0.45);
}

.ring-1 {
  width: 170px;
  height: 170px;
  animation: spinRing 20s linear infinite;
}

.ring-2 {
  width: 120px;
  height: 120px;
  border-color: rgba(255, 42, 0, 0.5);
  animation: spinRingRev 15s linear infinite;
}

@keyframes spinRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes spinRingRev {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

.core-sphere {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle, #ff4500 0%, #3a0d00 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 35px var(--cyan-primary);
}

.core-symbol {
  font-size: 1.7rem;
}

.preview-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.preview-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

/* ============================================================
   Benefits / Values Section
   ============================================================ */
.benefits-section {
  position: relative;
  z-index: 1;
  padding: 40px 0 70px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}

.benefit-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.benefit-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.benefit-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

/* ============================================================
   Solutions & Programs Section (Extension & API)
   ============================================================ */
.solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 36px;
}

.solution-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.solution-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan-primary);
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.8), 0 0 35px var(--cyan-glow);
}

.solution-badge {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  color: #fff;
  background: linear-gradient(90deg, #ff4500, #ff2a00);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.solution-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.solution-card h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}

.solution-card p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.solution-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 20px;
  margin-top: auto;
}

.solution-list li {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
}

.solution-list strong {
  color: #fff;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ============================================================
   Contact & Support Section (Gmail Highlight)
   ============================================================ */
.support-section {
  position: relative;
  z-index: 1;
  padding: 70px 0 100px;
}

.support-wrapper {
  max-width: 1040px;
  margin: 0 auto;
}

.support-card-hero {
  background: linear-gradient(180deg, #0e0e14 0%, #08080c 100%);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 45px var(--cyan-glow);
}

.support-header {
  text-align: center;
  margin-bottom: 38px;
}

.support-header h2 {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.support-header p {
  color: var(--text-muted);
  font-size: 0.96rem;
  max-width: 580px;
  margin: 0 auto;
}

.support-channels-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 32px;
  align-items: start;
}

/* Gmail Highlight Box */
.gmail-highlight-box {
  background: #09090e;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gmail-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(0, 242, 254, 0.12);
  border: 1px solid var(--border-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-primary);
}

.gmail-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan-primary);
  font-weight: 700;
}

.gmail-address {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  color: #fff;
  word-break: break-all;
  margin-top: 4px;
}

.gmail-notice {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.gmail-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

/* Fast Contact Form Box */
.contact-form-box {
  background: #0a0a0f;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.contact-form-box h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.clean-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.88rem;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan-primary);
  box-shadow: 0 0 10px var(--cyan-glow);
}

/* ============================================================
   Toast Notification
   ============================================================ */
.toast-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #111118;
  border: 1px solid var(--border-cyan);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px var(--cyan-glow);
  padding: 12px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 300;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  background: var(--cyan-primary);
  color: #000;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  position: relative;
  z-index: 1;
  background: #030305;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-bio {
  color: var(--text-dim);
  font-size: 0.86rem;
  line-height: 1.6;
  margin: 14px 0 16px;
  max-width: 320px;
}

.footer-col h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.footer-col a:hover {
  color: #fff;
}

.security-text {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.payment-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pay-badge {
  background: #111116;
  border: 1px solid var(--border-subtle);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--text-muted);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-dim);
}

.hidden {
  display: none !important;
}

/* ============================================================
   User Profile Dropdown (Navbar)
   ============================================================ */
.user-dropdown-wrapper {
  position: relative;
}

.user-avatar-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-cyan);
  padding: 5px 12px 5px 6px;
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 0.84rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.user-avatar-btn:hover {
  background: var(--bg-surface);
  box-shadow: 0 0 14px var(--cyan-glow);
}

.avatar-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a24;
  border: 1.5px solid var(--cyan-primary);
  box-shadow: 0 0 10px var(--cyan-glow);
  flex-shrink: 0;
}

.user-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.user-avatar-img.hidden {
  display: none !important;
}

.user-avatar-initial {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4500, #ff2a00);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}

.user-avatar-initial.hidden {
  display: none !important;
}

.user-avatar-name {
  max-width: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropdown-chevron {
  font-size: 0.7rem;
  color: var(--text-dim);
}

.user-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 240px;
  background: #0c0c12;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 69, 0, 0.15);
  display: none;
  flex-direction: column;
  z-index: 150;
  backdrop-filter: blur(14px);
}

.user-dropdown-menu.active {
  display: flex;
}

.dropdown-header {
  padding: 4px 6px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dropdown-user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dropdown-avatar-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a24;
  border: 1.5px solid var(--cyan-primary);
  box-shadow: 0 0 8px var(--cyan-glow);
  flex-shrink: 0;
}

.dropdown-text-details {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.dropdown-name {
  font-size: 0.86rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 145px;
}

.dropdown-email {
  font-size: 0.74rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 145px;
}

.google-connected-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 600;
  color: #a7f3d0;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 3px 8px;
  border-radius: 20px;
  margin-top: 4px;
  align-self: flex-start;
}

.dropdown-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 6px 0;
}

.dropdown-item {
  padding: 8px 10px;
  font-size: 0.82rem;
  color: var(--text-light);
  text-decoration: none;
  border-radius: 6px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.dropdown-item:hover {
  background: var(--bg-surface);
  color: #fff;
}

.text-red {
  color: var(--red-accent) !important;
}

/* ============================================================
   Authentication Modal
   ============================================================ */
.auth-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.auth-modal-box {
  background: #0a0a0f;
  border: 1px solid var(--border-cyan);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9), 0 0 50px var(--cyan-glow);
  border-radius: var(--radius-xl);
  max-width: 440px;
  width: 100%;
  padding: 34px 30px;
  position: relative;
  animation: modalScale 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalScale {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.auth-close-btn {
  position: absolute;
  top: 18px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-size: 1.15rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.auth-close-btn:hover {
  color: #fff;
}

.auth-header {
  text-align: center;
  margin-bottom: 22px;
}

.auth-brand {
  justify-content: center;
  margin-bottom: 8px;
}

.auth-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.auth-tabs {
  display: flex;
  background: #101016;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 20px;
  gap: 4px;
}

.auth-tab {
  flex: 1;
  padding: 8px;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: var(--text-dim);
  font-family: var(--font-main);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.auth-tab.active {
  background: var(--cyan-primary);
  color: #000;
  box-shadow: 0 0 12px var(--cyan-glow);
}

/* Alert Box */
.auth-alert {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.auth-alert.error {
  background: rgba(244, 63, 94, 0.15);
  border: 1px solid rgba(244, 63, 94, 0.4);
  color: #fb7185;
}

.auth-alert.success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
}

/* Google Button */
.google-auth-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #14141c;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 11px;
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.google-auth-btn:hover {
  background: #1b1b26;
  border-color: var(--border-hover);
}

.google-auth-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.google-official-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 4px;
}

.google-client-cfg-link {
  text-align: center;
  margin-top: 4px;
  margin-bottom: 4px;
}

.small-text-link {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: var(--transition-fast);
}

.small-text-link:hover {
  color: #ff5500;
  text-decoration: underline;
}

.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 18px 0;
  color: var(--text-dim);
  font-size: 0.75rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--border-subtle);
}

.auth-divider span {
  padding: 0 12px;
}

.auth-form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  font-size: 0.8rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.8rem;
}

.auth-link {
  color: var(--cyan-primary);
  text-decoration: none;
}

.auth-link:hover {
  text-decoration: underline;
}

/* ============================================================
   Google Consent & Connection Dialog
   ============================================================ */
.google-consent-box {
  background: #0d0d14;
  border: 1px solid rgba(255, 69, 0, 0.35);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.95), 0 0 40px rgba(255, 69, 0, 0.15);
  border-radius: 20px;
  max-width: 460px;
  width: 100%;
  padding: 28px 26px;
  position: relative;
  animation: modalScale 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.google-dialog-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.google-dialog-titles h3 {
  font-size: 1.15rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 2px;
}

.google-dialog-titles p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.google-account-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #14141e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 18px;
}

.google-avatar-preview-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.google-preview-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  background: #20202e;
  border: 2px solid #4285F4;
  box-shadow: 0 0 12px rgba(66, 133, 244, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.google-avatar-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.google-avatar-fallback {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.change-photo-chip {
  font-size: 0.68rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 2px 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  transition: var(--transition-fast);
}

.change-photo-chip:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.google-account-fields {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.google-field-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.google-field-group label {
  font-size: 0.7rem;
  color: var(--text-dim);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.google-field-group input {
  background: #09090d;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 6px 10px;
  color: #fff;
  font-family: inherit;
  font-size: 0.82rem;
  transition: var(--transition-fast);
}

.google-field-group input:focus {
  border-color: #4285F4;
  box-shadow: 0 0 10px rgba(66, 133, 244, 0.2);
  outline: none;
}

.google-permission-box {
  background: rgba(66, 133, 244, 0.05);
  border: 1px solid rgba(66, 133, 244, 0.2);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 20px;
}

.permission-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #93c5fd;
  margin-bottom: 10px;
}

.permission-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.permission-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.permission-list li strong {
  color: #fff;
}

.perm-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
}

.google-disclaimer {
  font-size: 0.72rem;
  color: var(--text-dim);
  line-height: 1.4;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 8px;
}

.google-dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* ============================================================
   Responsive Breakpoints
   ============================================================ */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-heading {
    font-size: 2.8rem;
  }
  .hero-description {
    margin: 0 auto 30px;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-visual {
    max-width: 460px;
    margin: 0 auto;
  }
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  .capabilities-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
  .hero-heading {
    font-size: 2.2rem;
  }
  .clean-form .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-content {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
