/* ============================================================
   CloudHoster.io — Main Stylesheet
   Enterprise theme inspired by Sopra Steria / Capgemini
   ============================================================ */

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

:root {
  --blue-deep:    #0d1f3c;
  --blue-primary: #1a365d;
  --blue-mid:     #1e4080;
  --cyan:         #00d4ff;
  --cyan-soft:    #00b8d9;
  --teal:         #00c9a7;
  --green:        #38d9a9;
  --gray-100:     #f8fafc;
  --gray-200:     #e8edf5;
  --gray-400:     #94a3b8;
  --gray-600:     #475569;
  --gray-800:     #1e293b;
  --white:        #ffffff;
  --glass:        rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.12);
  --radius:       12px;
  --radius-lg:    20px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--blue-deep);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ---- Utilities ---- */
.container      { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section        { padding: 100px 0; }
.section-light  { background: #f8fafc; color: var(--gray-800); }
.section-dark   { background: var(--blue-primary); }
.section-darker { background: var(--blue-deep); }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 16px;
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 2px; background: var(--cyan);
}
.section-light .section-label { color: var(--blue-primary); }
.section-light .section-label::before { background: var(--blue-primary); }

.section-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700; line-height: 1.15; margin-bottom: 20px;
}
.section-title span { color: var(--cyan); }
.section-light .section-title { color: var(--gray-800); }
.section-light .section-title span { color: var(--blue-mid); }

.section-sub {
  font-size: 17px; color: var(--gray-400);
  max-width: 580px; line-height: 1.7;
}
.section-light .section-sub { color: var(--gray-600); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 600;
  cursor: pointer; border: none;
  text-decoration: none; transition: all 0.25s ease;
}
.btn-primary { background: var(--cyan); color: var(--blue-deep); }
.btn-primary:hover { background: #00b8d9; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,212,255,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }
.btn-dark { background: var(--blue-primary); color: var(--white); }
.btn-dark:hover { background: var(--blue-mid); transform: translateY(-2px); }

.tag { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.tag-cyan   { background: rgba(0,212,255,0.15); color: var(--cyan); }
.tag-teal   { background: rgba(0,201,167,0.15); color: var(--teal); }
.tag-green  { background: rgba(56,217,169,0.15); color: var(--green); }
.tag-blue   { background: rgba(30,64,128,0.3); color: #90cdf4; }
.tag-purple { background: rgba(124,58,237,0.15); color: #a78bfa; }

/* ---- Animations ---- */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   NAVBAR
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all 0.3s ease;
}
.site-header.scrolled {
  background: rgba(13,31,60,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 32px;
  max-width: 1400px; margin: 0 auto;
}
.site-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.logo-text { font-family: 'DM Sans', sans-serif; font-size: 20px; font-weight: 700; color: var(--white); }
.logo-text span { color: var(--cyan); }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  display: block; padding: 8px 16px;
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 14px; font-weight: 500;
  border-radius: 8px; transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.current { color: var(--white); background: var(--glass); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.lang-btn {
  padding: 6px 12px; border-radius: 6px;
  border: 1px solid var(--glass-border);
  background: var(--glass); color: rgba(255,255,255,0.7);
  font-size: 13px; font-weight: 500; cursor: pointer;
  transition: all 0.2s;
}
.lang-btn:hover { color: var(--white); border-color: var(--cyan); }
.nav-login {
  padding: 8px 18px; border-radius: 8px;
  border: 1px solid var(--glass-border);
  background: transparent; color: var(--white);
  font-size: 14px; font-weight: 500;
  text-decoration: none; transition: all 0.2s;
}
.nav-login:hover { border-color: var(--cyan); color: var(--cyan); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(7,15,30,0.97); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: 'DM Sans', sans-serif; font-size: 28px; font-weight: 700; color: var(--white); text-decoration: none; transition: color 0.2s; }
.mobile-nav a:hover { color: var(--cyan); }
.mobile-close { position: absolute; top: 24px; right: 24px; font-size: 28px; cursor: pointer; color: var(--white); background: none; border: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #070f1e 0%, #0d1f3c 40%, #112244 70%, #0a1a35 100%);
}
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.6; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute; top: 20%; right: 10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,212,255,0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulseGlow 4s ease-in-out infinite alternate;
}
.hero-glow2 {
  position: absolute; bottom: 10%; left: 5%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,201,167,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulseGlow 6s ease-in-out infinite alternate-reverse;
}
@keyframes pulseGlow { from { transform: scale(1); opacity: 0.8; } to { transform: scale(1.15); opacity: 1; } }

.hero-content { position: relative; z-index: 2; padding: 120px 0 80px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 24px;
  background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.25);
  font-size: 13px; font-weight: 500; color: var(--cyan); margin-bottom: 28px;
}
.hero-badge::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -1px; margin-bottom: 24px; max-width: 800px;
}
.hero-title .accent  { color: var(--cyan); }
.hero-title .accent2 { color: var(--teal); }
.hero-sub { font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,0.65); max-width: 560px; line-height: 1.7; margin-bottom: 40px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }

.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; padding-top: 40px; border-top: 1px solid var(--glass-border); }
.hero-stat-num { font-family: 'DM Sans', sans-serif; font-size: 32px; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat-num span { color: var(--cyan); }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; margin-top: 60px;
}
.service-card {
  padding: 36px 32px; border-radius: var(--radius-lg);
  background: var(--glass); border: 1px solid var(--glass-border);
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; opacity: 0; transition: opacity 0.3s; }
.service-card:nth-child(1)::before { background: linear-gradient(90deg, var(--cyan), var(--blue-mid)); }
.service-card:nth-child(2)::before { background: linear-gradient(90deg, var(--teal), var(--cyan)); }
.service-card:nth-child(3)::before { background: linear-gradient(90deg, #7c3aed, var(--cyan)); }
.service-card:nth-child(4)::before { background: linear-gradient(90deg, var(--green), var(--teal)); }
.service-card:hover { transform: translateY(-6px); border-color: rgba(0,212,255,0.3); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.service-card:hover::before { opacity: 1; }

.service-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 24px; }
.si-blue   { background: rgba(0,212,255,0.12); }
.si-teal   { background: rgba(0,201,167,0.12); }
.si-purple { background: rgba(124,58,237,0.12); }
.si-green  { background: rgba(56,217,169,0.12); }

.service-title { font-family: 'DM Sans', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.service-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 20px; }
.service-features { list-style: none; }
.service-features li { font-size: 13px; color: rgba(255,255,255,0.55); padding: 5px 0; display: flex; align-items: center; gap: 8px; }
.service-features li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }

/* ============================================================
   PLANS / PRICING
   ============================================================ */
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; margin-top: 60px; }
.plan-card {
  padding: 40px 32px; border-radius: var(--radius-lg);
  background: var(--glass); border: 1px solid var(--glass-border);
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.plan-card.featured {
  border-color: var(--cyan);
  background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(0,201,167,0.05));
}
.plan-card.featured::before {
  content: 'Populaire'; position: absolute; top: 20px; right: 20px;
  background: var(--cyan); color: var(--blue-deep);
  font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px;
}
.plan-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.plan-name { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--cyan); margin-bottom: 16px; }
.plan-price { font-family: 'DM Sans', sans-serif; font-size: 52px; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.plan-price sup { font-size: 24px; vertical-align: super; }
.plan-price sub { font-size: 16px; font-weight: 400; color: rgba(255,255,255,0.5); }
.plan-trial { font-size: 13px; color: var(--teal); margin-bottom: 28px; }
.plan-features { list-style: none; margin-bottom: 32px; }
.plan-features li { padding: 9px 0; font-size: 14px; color: rgba(255,255,255,0.75); display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--glass-border); }
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before { content: '✓'; color: var(--cyan); font-weight: 700; flex-shrink: 0; }

/* ============================================================
   KNOWLEDGE HUB / BLOG
   ============================================================ */
.articles-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px; margin-top: 60px;
}
.article-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.1); transition: all 0.3s ease; cursor: pointer; }
.article-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
.article-img { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.ai-1 { background: linear-gradient(135deg, #0d1f3c, #1e4080); }
.ai-2 { background: linear-gradient(135deg, #064e3b, #065f46); }
.ai-3 { background: linear-gradient(135deg, #312e81, #4c1d95); }
.ai-4 { background: linear-gradient(135deg, #7c2d12, #9a3412); }
.ai-5 { background: linear-gradient(135deg, #1e3a5f, #1e4080); }
.ai-6 { background: linear-gradient(135deg, #14532d, #166534); }
.article-body { padding: 24px; }
.article-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.article-title { font-family: 'DM Sans', sans-serif; font-size: 17px; font-weight: 700; color: var(--gray-800); margin-bottom: 8px; line-height: 1.35; }
.article-excerpt { font-size: 13px; color: var(--gray-600); line-height: 1.6; margin-bottom: 16px; }
.article-read { font-size: 12px; color: var(--gray-400); display: flex; align-items: center; gap: 5px; }

/* Blog post thumbnail override */
.article-card .article-thumb { height: 180px; object-fit: cover; width: 100%; }

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-mid));
  padding: 80px 0; position: relative; overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 40px; position: relative; }
.stat-item { text-align: center; }
.stat-num { font-family: 'DM Sans', sans-serif; font-size: clamp(36px, 5vw, 60px); font-weight: 800; color: var(--white); line-height: 1; }
.stat-num span { color: var(--cyan); }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 8px; font-weight: 500; }
.stat-divider { width: 40px; height: 3px; background: linear-gradient(90deg, var(--cyan), var(--teal)); border-radius: 2px; margin: 12px auto 0; }

/* ============================================================
   CAREERS
   ============================================================ */
.careers-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 60px; }
.careers-perks { display: flex; flex-direction: column; gap: 16px; }
.perk { display: flex; align-items: flex-start; gap: 16px; padding: 16px; border-radius: var(--radius); background: var(--glass); border: 1px solid var(--glass-border); }
.perk-icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(0,212,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.perk-title { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.perk-text { font-size: 13px; color: rgba(255,255,255,0.55); }

.jobs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.job-card { padding: 28px; border-radius: var(--radius-lg); background: var(--glass); border: 1px solid var(--glass-border); transition: all 0.3s ease; }
.job-card:hover { border-color: rgba(0,212,255,0.3); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.2); }
.job-dept { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--cyan); margin-bottom: 10px; }
.job-title { font-family: 'DM Sans', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.job-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.job-badge { padding: 4px 10px; border-radius: 20px; font-size: 11px; font-weight: 500; background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.65); }
.job-link { font-size: 13px; font-weight: 600; color: var(--cyan); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.job-link:hover { gap: 10px; }

/* ============================================================
   ABOUT / VISION
   ============================================================ */
.about-section { background: linear-gradient(180deg, var(--blue-deep) 0%, #0a1525 100%); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.vision-cards { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.vision-card { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border-radius: var(--radius); border-left: 3px solid var(--cyan); background: var(--glass); }
.vision-card-icon { font-size: 24px; flex-shrink: 0; }
.vision-card-title { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.vision-card-text { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }

.about-visual-main { background: linear-gradient(135deg, var(--blue-primary), var(--blue-mid)); border-radius: var(--radius-lg); border: 1px solid var(--glass-border); padding: 40px; text-align: center; position: relative; overflow: hidden; }
.about-visual-main::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(0,212,255,0.1), transparent 70%); }
.globe-visual { font-size: 100px; line-height: 1; margin-bottom: 20px; position: relative; z-index: 1; animation: floatGlobe 4s ease-in-out infinite; }
@keyframes floatGlobe { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.about-quote { font-family: 'DM Sans', sans-serif; font-size: 20px; font-weight: 700; line-height: 1.4; position: relative; z-index: 1; }
.about-quote span { color: var(--cyan); }
.about-mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; position: relative; z-index: 1; }
.mini-stat { background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 16px; text-align: center; }
.mini-stat-num { font-family: 'DM Sans', sans-serif; font-size: 24px; font-weight: 800; color: var(--cyan); }
.mini-stat-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; margin-top: 60px; }
.testimonial-card { padding: 32px; border-radius: var(--radius-lg); background: var(--white); box-shadow: 0 4px 24px rgba(0,0,0,0.1); }
.stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text { font-size: 15px; color: var(--gray-600); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; color: var(--white); flex-shrink: 0; }
.av-1 { background: linear-gradient(135deg, var(--blue-primary), var(--cyan)); }
.av-2 { background: linear-gradient(135deg, var(--teal), var(--green)); }
.av-3 { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.author-name { font-size: 15px; font-weight: 700; color: var(--gray-800); }
.author-role { font-size: 12px; color: var(--gray-400); }

.partners { margin-top: 60px; text-align: center; }
.partners-label { font-size: 13px; color: var(--gray-400); margin-bottom: 28px; text-transform: uppercase; letter-spacing: 2px; font-weight: 500; }
.partners-row { display: flex; gap: 32px; align-items: center; justify-content: center; flex-wrap: wrap; }
.partner-logo { padding: 12px 24px; border-radius: 8px; border: 1px solid var(--gray-200); font-size: 13px; font-weight: 700; color: var(--gray-400); letter-spacing: 1px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; margin-top: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(0,212,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-item-label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-item-value { font-size: 15px; font-weight: 500; color: var(--white); }

.contact-form { background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border);
  border-radius: 8px; color: var(--white);
  font-size: 14px; font-family: 'Inter', sans-serif;
  transition: all 0.2s; outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--cyan); background: rgba(0,212,255,0.05); box-shadow: 0 0 0 3px rgba(0,212,255,0.1); }
.form-group textarea { height: 120px; resize: vertical; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--blue-primary); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #060d1a; border-top: 1px solid var(--glass-border); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-top: 16px; margin-bottom: 24px; max-width: 280px; }
.social-links { display: flex; gap: 10px; }
.social-link { width: 36px; height: 36px; border-radius: 8px; background: var(--glass); border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; font-size: 16px; text-decoration: none; transition: all 0.2s; }
.social-link:hover { border-color: var(--cyan); transform: translateY(-2px); }
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--cyan); }
.newsletter-form { display: flex; gap: 8px; margin-top: 12px; }
.newsletter-form input { flex: 1; padding: 10px 14px; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 8px; color: var(--white); font-size: 13px; outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input:focus { border-color: var(--cyan); }
.newsletter-form button { padding: 10px 16px; border-radius: 8px; background: var(--cyan); color: var(--blue-deep); font-weight: 600; font-size: 13px; border: none; cursor: pointer; transition: all 0.2s; }
.newsletter-form button:hover { background: var(--cyan-soft); }
.footer-bottom { border-top: 1px solid var(--glass-border); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--cyan); }

/* ============================================================
   BILLING TOGGLE
   ============================================================ */
.billing-toggle {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 48px; margin-top: 8px;
}
.toggle-label {
  font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,0.45); transition: color 0.25s;
  display: flex; align-items: center; gap: 8px;
}
.toggle-label.active { color: var(--white); }
.toggle-switch {
  width: 52px; height: 28px; border-radius: 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid var(--glass-border);
  position: relative; cursor: pointer;
  transition: background 0.25s;
}
.toggle-switch.on { background: var(--cyan); border-color: var(--cyan); }
.toggle-knob {
  position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--white);
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.toggle-switch.on .toggle-knob { transform: translateX(24px); }

.save-badge {
  display: inline-block; padding: 3px 10px;
  border-radius: 20px; font-size: 11px; font-weight: 700;
  background: linear-gradient(135deg, var(--teal), var(--green));
  color: var(--blue-deep); letter-spacing: 0.3px;
}

.plan-price-equiv {
  font-size: 13px; color: var(--cyan);
  margin-bottom: 4px; font-weight: 500;
}
.plan-price-cents { font-size: 0.55em; vertical-align: super; margin-left: 1px; }

.plan-badge-top {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  color: var(--teal); margin-bottom: 12px;
}

/* Agency plan special styling */
.plan-card.plan-agency {
  border-color: rgba(0,212,255,0.2);
  background: linear-gradient(160deg, rgba(0,212,255,0.05) 0%, rgba(0,201,167,0.04) 100%);
  position: relative;
}
.plan-card.plan-agency::after {
  content: '';
  position: absolute; inset: 0; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(0,212,255,0.06), rgba(0,201,167,0.06));
  pointer-events: none;
}
.agency-promise {
  margin: 12px 0 20px;
  padding: 14px 16px;
  background: rgba(0,212,255,0.07);
  border-left: 3px solid var(--cyan);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.agency-promise-text {
  font-size: 13px; color: rgba(255,255,255,0.75);
  line-height: 1.6; font-style: italic;
}
.btn-agency {
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  color: var(--blue-deep); font-weight: 700;
  border: none;
}
.btn-agency:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,212,255,0.35);
  opacity: 0.92;
}

/* ============================================================
   BLOG PAGES
   ============================================================ */
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; padding: 120px 0 80px; }
.blog-post-card { background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 32px; transition: all 0.3s; }
.blog-post-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.2); }
.blog-post-thumb { height: 240px; background: linear-gradient(135deg, var(--blue-primary), var(--blue-mid)); overflow: hidden; }
.blog-post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-post-body { padding: 32px; }
.blog-post-category { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--cyan); margin-bottom: 12px; }
.blog-post-title { font-family: 'DM Sans', sans-serif; font-size: 24px; font-weight: 700; margin-bottom: 12px; line-height: 1.3; }
.blog-post-title a { color: var(--white); text-decoration: none; transition: color 0.2s; }
.blog-post-title a:hover { color: var(--cyan); }
.blog-post-excerpt { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 20px; }
.blog-post-meta { display: flex; gap: 16px; align-items: center; font-size: 13px; color: rgba(255,255,255,0.4); }
.blog-read-more { color: var(--cyan); text-decoration: none; font-size: 14px; font-weight: 600; }

/* Single post */
.single-post { padding: 120px 0 80px; }
.single-post-header { margin-bottom: 48px; }
.single-post-title { font-family: 'DM Sans', sans-serif; font-size: clamp(28px, 4vw, 48px); font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.single-post-content { font-size: 17px; line-height: 1.85; color: rgba(255,255,255,0.8); }
.single-post-content h2 { font-family: 'DM Sans', sans-serif; font-size: 28px; font-weight: 700; margin: 40px 0 16px; color: var(--white); }
.single-post-content h3 { font-family: 'DM Sans', sans-serif; font-size: 22px; font-weight: 700; margin: 32px 0 12px; color: var(--white); }
.single-post-content p { margin-bottom: 20px; }
.single-post-content a { color: var(--cyan); }
.single-post-content ul, .single-post-content ol { padding-left: 24px; margin-bottom: 20px; }
.single-post-content li { margin-bottom: 8px; }
.single-post-content blockquote { border-left: 4px solid var(--cyan); padding: 16px 24px; background: var(--glass); border-radius: 0 var(--radius) var(--radius) 0; margin: 24px 0; font-style: italic; }
.single-post-content code { background: rgba(0,212,255,0.1); padding: 2px 8px; border-radius: 4px; font-size: 14px; font-family: monospace; }
.single-post-content pre { background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 24px; overflow-x: auto; margin: 24px 0; }
.single-post-content img { max-width: 100%; border-radius: var(--radius); margin: 24px 0; }

/* Sidebar */
.blog-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget { background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); padding: 24px; }
.sidebar-widget h3 { font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--glass-border); }
.sidebar-widget ul { list-style: none; }
.sidebar-widget ul li { padding: 8px 0; border-bottom: 1px solid var(--glass-border); font-size: 14px; }
.sidebar-widget ul li:last-child { border-bottom: none; }
.sidebar-widget ul li a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; }
.sidebar-widget ul li a:hover { color: var(--cyan); }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination a, .pagination span { padding: 8px 16px; border-radius: 8px; background: var(--glass); border: 1px solid var(--glass-border); font-size: 14px; text-decoration: none; color: var(--white); transition: all 0.2s; }
.pagination a:hover, .pagination .current { background: var(--cyan); color: var(--blue-deep); border-color: var(--cyan); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { display: none; }
}
/* ==================== DOMAIN WIDGET ==================== */
.domain-widget-section { background: linear-gradient(180deg, #07101e 0%, #0d1f3c 100%); }
.domain-widget { background: rgba(255,255,255,0.03); border: 1px solid rgba(0,212,255,0.15); border-radius: 20px; padding: 40px; max-width: 820px; margin: 0 auto; }
.dw-search { display: flex; gap: 0; border-radius: 12px; overflow: hidden; border: 2px solid rgba(0,212,255,0.3); background: rgba(8,17,31,0.8); margin-bottom: 20px; }
.dw-search:focus-within { border-color: var(--cyan); }
.dw-search input { flex: 1; background: transparent; border: none; outline: none; padding: 16px 20px; font-size: 16px; color: var(--white); font-family: 'Inter', sans-serif; }
.dw-search input::placeholder { color: rgba(255,255,255,0.3); }
.dw-search button { padding: 14px 28px; background: linear-gradient(135deg, var(--cyan), var(--teal)); border: none; cursor: pointer; font-size: 14px; font-weight: 700; color: #08111f; white-space: nowrap; transition: opacity .2s; }
.dw-search button:hover { opacity: .9; }
.dw-tlds { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.dw-tld { padding: 7px 16px; border-radius: 20px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); font-size: 13px; cursor: pointer; transition: all .2s; display: flex; align-items: center; gap: 6px; }
.dw-tld:hover { border-color: var(--cyan); color: var(--cyan); }
.dw-price { color: var(--teal); font-weight: 600; font-size: 12px; }
.dw-results { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.dw-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 16px 18px; display: flex; flex-direction: column; gap: 6px; transition: all .2s; }
.dw-card b { font-size: 17px; color: var(--white); }
.dw-card b span { color: var(--cyan); }
.dw-card small { font-size: 12px; color: rgba(255,255,255,0.45); }
.dw-card.dw-available { border-color: rgba(0,201,167,0.4); background: rgba(0,201,167,0.05); }
.dw-card.dw-available b span { color: var(--teal); }
.dw-card.dw-available small { color: var(--teal); }
.dw-card.dw-taken { opacity: .5; }
.dw-card.dw-taken small { color: #ef4444; }
.dw-buy { display: inline-block; margin-top: 6px; padding: 7px 14px; border-radius: 8px; background: linear-gradient(135deg, var(--cyan), var(--teal)); color: #08111f; font-size: 12px; font-weight: 700; text-decoration: none; width: fit-content; }
.dw-loading small { animation: pulse-text 1s ease-in-out infinite; }
@keyframes pulse-text { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* ==================== MANAGER PROFILE ==================== */
.manager-section { background: linear-gradient(135deg, #0a1628 0%, #0d1f3c 60%, #0f2347 100%); }
.manager-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: center;
}
.manager-photo-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.manager-photo-frame {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  box-shadow: 0 0 60px rgba(0,212,255,0.3), 0 0 120px rgba(0,212,255,0.1);
}
.manager-photo-frame::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(0,212,255,0.2);
  animation: pulse-ring 3s ease-in-out infinite;
}
.manager-photo-frame::after {
  content: '';
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  border: 1px solid rgba(0,201,167,0.1);
  animation: pulse-ring 3s ease-in-out infinite 1s;
}
@keyframes pulse-ring {
  0%,100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}
.manager-photo-frame img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.manager-photo-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a365d, #1e4080);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  color: var(--cyan);
}
.manager-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 13px;
  color: var(--cyan);
  font-weight: 600;
  letter-spacing: 0.5px;
}
.manager-badge::before { content: '●'; font-size: 8px; animation: blink 1.5s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.manager-info { display: flex; flex-direction: column; gap: 24px; }
.manager-name {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}
.manager-name span { color: var(--cyan); }
.manager-title {
  font-size: 16px;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.3px;
}
.manager-university {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-400);
  padding: 10px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  width: fit-content;
}
.manager-university::before { content: '🎓'; font-size: 18px; }
.manager-bio {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  max-width: 560px;
}
.manager-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.expertise-tag {
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid;
}
.expertise-tag:nth-child(3n+1) { background: rgba(0,212,255,0.08); border-color: rgba(0,212,255,0.3); color: var(--cyan); }
.expertise-tag:nth-child(3n+2) { background: rgba(0,201,167,0.08); border-color: rgba(0,201,167,0.3); color: var(--teal); }
.expertise-tag:nth-child(3n)   { background: rgba(56,217,169,0.08); border-color: rgba(56,217,169,0.3); color: var(--green); }
.manager-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--teal));
  border-radius: 2px;
}

@media (max-width: 900px) {
  .nav-links, .lang-btn, .nav-login { display: none; }
  .hamburger { display: flex; }
  .careers-intro { grid-template-columns: 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .plans-grid { grid-template-columns: 1fr; max-width: 420px; margin: 60px auto 0; }
  .manager-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .manager-photo-wrap { margin: 0 auto; }
  .manager-university { margin: 0 auto; }
  .manager-expertise { justify-content: center; }
  .manager-bio { margin: 0 auto; }
  .manager-divider { margin: 0 auto; }
}
@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .hero-stats { gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
}
