:root {
  --primary: #0891b2;
  --primary-dark: #0e7490;
  --primary-light: #22d3ee;
  --primary-gradient: linear-gradient(135deg, #0891b2, #06b6d4);
  --text: #0f172a;
  --text-light: #64748b;
  --border: #e2e8f0;
  --bg: #ffffff;
  --bg-light: #f8fafc;
  --bg-dark: #0f172a;
  --success: #10b981;
  --error: #ef4444;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 40px -12px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: 2.25rem; font-weight: 800; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.125rem; }

@media (min-width: 768px) {
  h1 { font-size: 3.25rem; }
  h2 { font-size: 2.5rem; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  transition: all 0.2s ease;
  gap: 8px;
}

.btn-primary {
  background: var(--primary-gradient);
  color: white;
  box-shadow: 0 4px 14px rgba(8, 145, 178, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(8, 145, 178, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.125rem;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

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

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-icon-img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.logo span {
  color: var(--primary);
}

.nav-links {
  display: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.2s;
}

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

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-toggle {
  display: flex;
  gap: 4px;
  background: var(--bg-light);
  padding: 4px;
  border-radius: var(--radius);
}

.lang-toggle button {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  background: transparent;
  color: var(--text-light);
  border-radius: 8px;
  transition: all 0.2s;
}

.lang-toggle button.active {
  background: white;
  color: var(--text);
  box-shadow: var(--shadow);
}

.header .btn {
  display: none;
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.2s;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  
  .header .btn {
    display: inline-flex;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
}

.nav-links.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background: white;
  padding: 24px;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 100px 0 48px;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg) 100%);
}

@media (min-width: 768px) {
  .hero {
    padding: 110px 0 56px;
  }
}

@media (min-width: 968px) {
  .hero {
    padding: 120px 0 64px;
  }
}

.mockup-svg {
  width: 100%;
  height: auto;
  max-width: 540px;
  display: block;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.hero-content {
  text-align: center;
}

@media (min-width: 968px) {
  .hero-content {
    text-align: left;
  }
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 55ch;
  margin: 0 auto 32px;
  line-height: 1.7;
}

@media (min-width: 968px) {
  .hero-subtitle {
    margin: 0 0 32px;
  }
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  .hero-ctas {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 968px) {
  .hero-ctas {
    justify-content: flex-start;
  }
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}

@media (min-width: 968px) {
  .trust-chips {
    justify-content: flex-start;
  }
}

.trust-chips.center {
  justify-content: center;
}

.trust-chip {
  background: white;
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}

.trust-line {
  font-size: 0.9rem;
  color: var(--text-light);
}

.hero-mockup {
  display: none;
  position: relative;
}

@media (min-width: 968px) {
  .hero-mockup {
    display: block;
  }
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

@media (min-width: 968px) {
  .hero-proof {
    justify-content: flex-start;
  }
}

.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}

.hero-proof-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.hero-steps {
  margin-top: 48px;
  text-align: center;
}

@media (min-width: 968px) {
  .hero-steps {
    margin-top: 56px;
  }
}

.hero-steps-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.hero-steps-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .hero-steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.hero-step-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hero-step-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ecfeff, #f0fdfa);
  border-radius: 10px;
  flex-shrink: 0;
  color: var(--primary);
}

.hero-step-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.hero-step-content p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

.demo-overlays {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.demo-overlay {
  position: absolute;
  background: white;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
  will-change: transform;
}

.demo-overlay-badge {
  top: 8%;
  right: -5%;
  background: linear-gradient(135deg, #0891b2, #06b6d4);
  color: white;
  animation: floatBadge 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.demo-overlay-badge svg {
  color: white;
}

.demo-overlay-toast {
  bottom: 25%;
  left: -8%;
  border-left: 3px solid var(--success);
  animation: floatToast 4.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation-delay: 0.8s;
}

.demo-overlay-check {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--success);
  color: white;
  border-radius: 50%;
  font-size: 0.65rem;
}

.demo-overlay-label {
  bottom: 8%;
  right: 5%;
  background: rgba(15, 23, 42, 0.9);
  color: white;
  font-size: 0.7rem;
  animation: floatLabel 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation-delay: 1.5s;
}

@keyframes floatBadge {
  0%, 100% { 
    transform: translateY(0) scale(1) rotate(0deg); 
  }
  25% { 
    transform: translateY(-8px) scale(1.02) rotate(0.5deg); 
  }
  50% { 
    transform: translateY(-12px) scale(1.04) rotate(-0.5deg); 
  }
  75% { 
    transform: translateY(-6px) scale(1.02) rotate(0.3deg); 
  }
}

@keyframes floatToast {
  0%, 100% { 
    transform: translateY(0) scale(1) rotate(0deg); 
  }
  30% { 
    transform: translateY(-10px) scale(1.03) rotate(-0.8deg); 
  }
  60% { 
    transform: translateY(-6px) scale(1.01) rotate(0.4deg); 
  }
}

@keyframes floatLabel {
  0%, 100% { 
    transform: translateY(0) scale(1) rotate(0deg); 
  }
  20% { 
    transform: translateY(-5px) scale(1.02) rotate(0.6deg); 
  }
  50% { 
    transform: translateY(-10px) scale(1.03) rotate(-0.4deg); 
  }
  80% { 
    transform: translateY(-4px) scale(1.01) rotate(0.2deg); 
  }
}

@media (prefers-reduced-motion: reduce) {
  .demo-overlay-badge,
  .demo-overlay-toast,
  .demo-overlay-label {
    animation: none;
  }
}

.mockup-browser {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.mockup-header {
  background: var(--bg-light);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.mockup-dots span:first-child { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #eab308; }
.mockup-dots span:last-child { background: #22c55e; }

.mockup-url {
  flex: 1;
  background: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
}

.mockup-content {
  padding: 24px;
  background: linear-gradient(135deg, #f0fdfa 0%, #ecfeff 100%);
  min-height: 320px;
}

.mockup-nav {
  height: 8px;
  background: white;
  border-radius: 4px;
  width: 60%;
  margin-bottom: 32px;
}

.mockup-hero-area {
  margin-bottom: 32px;
}

.mockup-title {
  height: 16px;
  background: var(--text);
  border-radius: 4px;
  width: 80%;
  margin-bottom: 12px;
}

.mockup-text {
  height: 8px;
  background: var(--text-light);
  border-radius: 4px;
  width: 60%;
  margin-bottom: 16px;
  opacity: 0.5;
}

.mockup-btn {
  height: 28px;
  background: var(--primary-gradient);
  border-radius: 6px;
  width: 100px;
}

.mockup-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mockup-card {
  height: 60px;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.value-section {
  padding: 72px 0;
  background: white;
}

@media (max-width: 767px) {
  .value-section {
    padding: 48px 0;
  }
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 768px) {
  .value-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: all 0.2s;
}

.value-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--primary-gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.value-card h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--text-light);
}

.problem-solution {
  padding: 72px 0;
  background: var(--bg-light);
}

@media (max-width: 767px) {
  .problem-solution {
    padding: 48px 0;
  }
}

.problem-solution-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .problem-solution-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

.problem-box, .solution-box {
  padding: 40px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.problem-box {
  background: white;
  border: 1px solid #fecaca;
}

.problem-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ef4444, #f87171);
}

.solution-box {
  background: white;
  border: 1px solid var(--primary-light);
}

.solution-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
}

.box-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.box-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-box .box-icon {
  background: #fef2f2;
  color: #ef4444;
}

.solution-box .box-icon {
  background: #ecfeff;
  color: var(--primary);
}

.box-header h3 {
  font-size: 1.375rem;
}

.box-subtitle {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.box-list {
  list-style: none;
}

.box-list li {
  padding: 12px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}

.box-list li:last-child {
  border-bottom: none;
}

.box-list-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.problem-box .box-list-icon {
  background: #fef2f2;
  color: #ef4444;
}

.solution-box .box-list-icon,
.box-list-icon.check {
  background: #ecfdf5;
  color: var(--success);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header.small {
  margin-bottom: 32px;
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-header h3 {
  margin-bottom: 8px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.125rem;
}

.packages-preview {
  padding: 72px 0;
  background: var(--bg-light);
}

@media (max-width: 767px) {
  .packages-preview {
    padding: 48px 0;
  }
}

.packages-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.package-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: all 0.2s;
}

.package-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.package-card.featured {
  border-color: var(--primary);
  position: relative;
}

.package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: white;
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.package-card h3 {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.package-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.package-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-light);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--text-light);
}

.package-meta-item.highlight {
  background: #ecfdf5;
  color: var(--success);
  font-weight: 500;
}

.package-best-for {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.price-block {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}

.package-card .price,
.hosting-card .price,
.package-full-card .price {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
}

.price-note {
  font-size: 0.9rem;
  color: var(--text-light);
}

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

.package-features li {
  padding: 8px 0;
  color: var(--text-light);
  font-size: 0.9rem;
}

.package-features li::before {
  content: '✓';
  color: var(--success);
  margin-right: 10px;
  font-weight: 600;
}

.package-card .btn {
  width: 100%;
}

.hosting-preview {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 32px;
  border: 1px solid var(--border);
}

.hosting-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.hosting-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 28px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.hosting-chip:hover {
  border-color: var(--primary);
}

.hosting-chip.buyout {
  background: white;
}

.hosting-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.hosting-price {
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
}

.packages-preview .text-center {
  text-align: center;
}

.industries {
  padding: 72px 0;
  background: white;
}

@media (max-width: 767px) {
  .industries {
    padding: 48px 0;
  }
}

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

@media (min-width: 768px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.industry-card {
  background: var(--bg-light);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.industry-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.industry-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, #ecfeff 0%, white 100%);
}

.industry-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 16px;
}

.industry-card h4 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.industry-card p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.testimonials {
  padding: 72px 0;
  background: var(--bg-light);
}

@media (max-width: 767px) {
  .testimonials {
    padding: 48px 0;
  }
}

.testimonials-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.testimonial-content {
  margin-bottom: 24px;
}

.testimonial-content p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.author-location {
  color: var(--text-light);
  font-size: 0.8rem;
}

.reply-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0 auto;
}

.testimonials .container {
  text-align: center;
}

.process {
  padding: 72px 0;
  background: white;
}

@media (max-width: 767px) {
  .process {
    padding: 48px 0;
  }
}

.process-timeline {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .process-timeline {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.process-step h4 {
  margin-bottom: 8px;
  font-size: 1.125rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.guarantee {
  padding: 60px 0;
  background: var(--bg-light);
}

.guarantee-box {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.guarantee-icon {
  width: 64px;
  height: 64px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 20px;
}

.guarantee-box h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.guarantee-box p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.faq {
  padding: 72px 0;
  background: white;
}

@media (max-width: 767px) {
  .faq {
    padding: 48px 0;
  }
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-question {
  padding: 20px 24px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
  font-size: 1rem;
}

.faq-question:hover {
  background: white;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform 0.2s;
  font-weight: 400;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-light);
  line-height: 1.7;
}

.contact {
  padding: 72px 0;
  background: var(--bg-light);
}

@media (max-width: 767px) {
  .contact {
    padding: 48px 0;
  }
}

.contact-wrapper {
  max-width: 680px;
  margin: 0 auto;
}

.contact-form {
  background: white;
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  z-index: -1;
  pointer-events: none;
}

.form-row {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .form-row.two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--error);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
}

.form-error {
  color: var(--error);
  font-size: 0.8rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.contact-form .btn {
  width: 100%;
  margin-top: 8px;
}

.form-success {
  text-align: center;
  padding: 48px;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border-radius: var(--radius-lg);
}

.form-success h3 {
  color: var(--success);
  margin-bottom: 12px;
}

.form-error-message {
  background: #fef2f2;
  color: var(--error);
  padding: 16px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  text-align: center;
}

.final-cta {
  padding: 72px 0;
  background: var(--primary-gradient);
}

@media (max-width: 767px) {
  .final-cta {
    padding: 48px 0;
  }
}

.final-cta-content {
  text-align: center;
  color: white;
}

.final-cta h2 {
  margin-bottom: 16px;
  color: white;
}

.final-cta p {
  font-size: 1.25rem;
  margin-bottom: 32px;
  opacity: 0.9;
}

.final-cta .btn {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.final-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.footer {
  padding: 80px 0 40px;
  background: var(--bg-dark);
  color: white;
}

.footer-grid {
  display: grid;
  gap: 48px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
}

.footer-brand .logo-wrapper {
  margin-bottom: 16px;
}

.footer-brand .logo {
  color: white;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.9rem !important;
  line-height: 1.5;
}

.footer-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem !important;
  margin-top: 4px;
}

.footer-email {
  margin-top: 8px !important;
}

.footer-email a {
  color: var(--primary-light);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-email a:hover {
  color: white;
}

.footer h4 {
  margin-bottom: 20px;
  font-size: 1rem;
  color: white;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
  font-size: 0.95rem;
}

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

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.page-header {
  padding: 100px 0 32px;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg) 100%);
  text-align: center;
}

@media (max-width: 767px) {
  .page-header {
    padding: 90px 0 24px;
  }
}

.page-header h1 {
  margin-bottom: 8px;
}

.page-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.compare-anchor {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 500;
  margin-top: 12px;
}

.compare-anchor:hover {
  text-decoration: underline;
}

.packages-section {
  padding: 40px 0 72px;
}

@media (max-width: 767px) {
  .packages-section {
    padding: 32px 0 48px;
  }
}

.packages-full-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 80px;
}

@media (min-width: 768px) {
  .packages-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.package-full-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
}

.package-full-card.featured {
  border-color: var(--primary);
}

.package-full-card h3 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.package-full-card .subtitle {
  color: var(--text-light);
  margin-bottom: 16px;
}

.best-for {
  background: var(--bg-light);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.delivery-info {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.delivery-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text);
}

.delivery-item svg {
  color: var(--primary);
}

.features-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}

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

.package-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.package-features-list li:last-child {
  border-bottom: none;
}

.package-features-list svg {
  color: var(--success);
  flex-shrink: 0;
}

.package-full-card .btn {
  width: 100%;
}

.compare-section {
  margin-bottom: 80px;
}

.compare-table-wrapper {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.compare-table th,
.compare-table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.compare-table th {
  background: var(--bg-light);
  font-weight: 600;
  font-size: 0.9rem;
}

.compare-table th:not(:first-child) {
  text-align: center;
}

.compare-table td:not(:first-child) {
  text-align: center;
}

.compare-table td:first-child {
  font-weight: 500;
}

.compare-table .price-row td {
  background: var(--bg-light);
  font-size: 1.125rem;
}

.compare-table .price-row strong {
  color: var(--primary);
}

.hosting-section {
  margin-bottom: 60px;
}

.hosting-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .hosting-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hosting-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}

.hosting-card.featured {
  border-color: var(--primary);
}

.hosting-card h4 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.hosting-card .price-block {
  margin-bottom: 24px;
}

.hosting-card .price {
  font-size: 1.75rem;
}

.buyout-box {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .buyout-box {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.buyout-content h3 {
  margin-bottom: 6px;
}

.buyout-content .subtitle {
  color: var(--text-light);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.buyout-content p:last-child {
  color: var(--text-light);
  font-size: 0.9rem;
}

.buyout-price {
  text-align: center;
}

@media (min-width: 768px) {
  .buyout-price {
    text-align: right;
  }
}

.buyout-price .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.buyout-price .note {
  color: var(--text-light);
  font-size: 0.875rem;
}

.packages-cta {
  text-align: center;
  padding: 60px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.packages-cta h3 {
  margin-bottom: 24px;
}

.packages-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 20px;
}

.packages-cta-note {
  font-size: 0.9rem;
  color: var(--text-light);
  max-width: 400px;
  margin: 0 auto;
}

.what-you-get-section {
  padding: 48px 0;
  background: var(--bg);
}

.what-you-get-section .section-title {
  text-align: center;
  margin-bottom: 32px;
  font-size: 1.75rem;
}

.what-you-get-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .what-you-get-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

.what-you-get-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.what-you-get-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ecfeff, #f0fdfa);
  border-radius: 12px;
  color: var(--primary);
  margin-bottom: 16px;
}

.what-you-get-card h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.what-you-get-list {
  list-style: none;
}

.what-you-get-list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text);
  font-size: 0.95rem;
}

.what-you-get-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.roi-section {
  margin-top: 48px;
  padding: 48px;
  background: linear-gradient(135deg, #f0fdfa, #ecfeff);
  border-radius: var(--radius-lg);
  border: 1px solid var(--primary-light);
}

.roi-section .section-header {
  text-align: center;
  margin-bottom: 32px;
}

.roi-section .section-header h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.roi-section .section-header p {
  color: var(--text-light);
  font-size: 1rem;
}

.roi-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .roi-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.roi-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.roi-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ecfeff, #f0fdfa);
  border-radius: 12px;
  color: var(--primary);
  margin: 0 auto 16px;
}

.roi-card p {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  margin: 0;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--text);
}

.legal-section p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.legal-info-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
}

.legal-info-box p {
  margin-bottom: 8px;
}

.legal-info-box p:last-child {
  margin-bottom: 0;
}

.legal-info-box a {
  color: var(--primary);
  text-decoration: none;
}

.legal-info-box a:hover {
  text-decoration: underline;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-list li {
  color: var(--text-light);
  line-height: 1.7;
  padding: 8px 0 8px 24px;
  position: relative;
}

.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.legal-section a {
  color: var(--primary);
  text-decoration: none;
}

.legal-section a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .hero {
    padding: 120px 0 60px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .contact-form {
    padding: 32px 24px;
  }
  
  .package-card,
  .package-full-card,
  .hosting-card {
    padding: 28px;
  }
  
  .buyout-box {
    padding: 28px;
  }
  
  .packages-cta {
    padding: 40px 28px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
