/*
  Bikinin Website Theme
  - Mobile-first, responsive, accessible
  - Smooth but subtle animations
  - Enhanced visual hierarchy and typography
  - Professional web development service design
 */

:root {
  --bg: #0b0d10;
  --bg-elev: #12161c;
  --text: #e6e9ef;
  --muted: #a9b0bc;
  --primary: #7aa2f7;
  --primary-600: #6b8fec;
  --primary-700: #5a7bd8;
  --accent: #c099ff;
  --accent-orange: #ff8a4c;
  --glass: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.08);
  --success: #86efac;
  --danger: #fca5a5;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 20px;
  --container: 1320px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
html.is-loading body { opacity: 0; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1200px 800px at 10% -10%, rgba(122, 162, 247, 0.08), transparent),
              radial-gradient(1200px 800px at 100% 10%, rgba(192, 153, 255, 0.08), transparent),
              radial-gradient(800px 600px at 50% 50%, rgba(122, 162, 247, 0.03), transparent),
              var(--bg);
  line-height: 1.6;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.header-inner, .footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(11, 13, 16, 0.95), rgba(11, 13, 16, 0.8));
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all .3s ease;
}

.brand:hover {
  transform: scale(1.05);
}

.brand:active {
  transform: scale(0.98);
}

.brand-accent { color: var(--accent); filter: drop-shadow(0 0 12px rgba(192, 153, 255, 0.5)); }
.brand-tagline {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  margin-left: 0.5rem;
  padding: 0.2rem 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.site-nav { position: relative; }
.nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; background: transparent; border: 0; cursor: pointer; padding: 8px; border-radius: var(--radius-sm); }
.nav-toggle:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.nav-toggle .bar { width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

.menu { list-style: none; margin: 0; padding: 0; display: none; position: absolute; right: 0; top: 52px; background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); min-width: 220px; }
.menu.open { display: block; }
.menu li { border-bottom: 1px solid var(--border); }
.menu li:last-child { border-bottom: 0; }
.menu a { display: block; padding: 0.9rem 1rem; color: var(--text); }
.menu a:hover { background: rgba(255, 255, 255, 0.04); }

@media (min-width: 820px) {
  .nav-toggle { display: none; }
  .menu { position: static; display: flex; gap: 0.6rem; background: transparent; border: 0; box-shadow: none; min-width: unset; }
  .menu li { border: 0; }
  .menu a { padding: 0.6rem 0.9rem; border-radius: var(--radius-sm); }
  .menu a:hover { background: rgba(255,255,255,0.06); }
}

.nav-link.active { color: var(--primary); }
.nav-link.cta { color: var(--bg); background: var(--primary); border-radius: var(--radius-sm); }
.nav-link.cta:hover { background: var(--primary-600); }

.section { padding: clamp(3rem, 8vw, 6rem) 0; }
.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 6vw, 4rem);
}
.section-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 1rem;
  background: linear-gradient(135deg, var(--text), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--muted);
  margin: 0;
  max-width: 600px;
  margin-inline: auto;
}

.display { 
  font-size: clamp(2.5rem, 8vw, 3.5rem); 
  line-height: 1.1; 
  margin: 0 0 1rem; 
  font-weight: 800;
  background: linear-gradient(135deg, var(--text), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lede { 
  color: var(--muted); 
  font-size: clamp(1.1rem, 3vw, 1.35rem); 
  margin: 0 0 2rem; 
  max-width: 600px;
  line-height: 1.6;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
}

.actions { 
  display: flex; 
  gap: 1rem; 
  align-items: center; 
  justify-content: center;
  flex-wrap: wrap; 
}
.btn { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  gap: 0.5rem; 
  padding: 1rem 1.5rem; 
  border-radius: var(--radius-sm); 
  border: 1px solid var(--border); 
  color: var(--text); 
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)); 
  box-shadow: var(--shadow); 
  transition: all .3s ease; 
  will-change: transform; 
  font-weight: 600;
  font-size: 1rem;
}
.btn:hover { 
  transform: scale(1.05) translateY(-2px); 
  box-shadow: var(--shadow-lg);
}
.btn-primary { 
  background: linear-gradient(135deg, var(--primary), var(--primary-600)); 
  color: var(--bg); 
  border-color: transparent; 
  font-weight: 700;
  padding: 1.1rem 2rem;
  font-size: 1.1rem;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
}
.btn-secondary { 
  background: transparent; 
  border-color: var(--primary);
  color: var(--primary);
}
.btn-secondary:hover {
  background: var(--primary);
  color: var(--bg);
}

.stack { display: grid; }
.gap-lg { gap: 1.1rem; }

.grid-2 { display: grid; gap: 1.75rem; }
.grid-3 { display: grid; gap: 1.5rem; }
@media (min-width: 820px) {
  .grid-2 { grid-template-columns: 1.5fr 1fr; align-items: center; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.card { 
  border: 1px solid var(--border); 
  border-radius: var(--radius); 
  overflow: clip; 
  transition: all .3s ease;
}
.glass { 
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)); 
  backdrop-filter: blur(12px); 
}
.card-body { padding: 1.5rem; }
.card-footer { padding: 0.9rem 1.1rem; border-top: 1px solid var(--border); }
.card-title { margin: 0 0 0.5rem; }

.benefit, .feature {
  transition: all .3s ease;
  height: 100%;
}
.benefit:hover, .feature:hover { 
  transform: translateY(-8px) scale(1.02); 
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.checklist { padding-left: 1.2rem; margin: 0.2rem 0 0; }
.checklist li { margin: 0.35rem 0; color: var(--muted); }

.icon { 
  font-size: 2.5rem; 
  margin-bottom: 1rem; 
  display: block;
}

.social-proof {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin-inline: auto;
}

.stat {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-number {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
}

.site-footer {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  padding: 3rem 0;
}

.footer-section h3, .footer-section h4 {
  margin: 0 0 1rem;
  color: var(--text);
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-description {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all .3s ease;
  font-size: 1.2rem;
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--muted);
  transition: color .3s ease;
}

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

.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.narrow { max-width: 760px; }

.grid-form { display: grid; gap: 1rem; }
@media (min-width: 640px) { .grid-form { grid-template-columns: 1fr 1fr; } }
.form-field { display: grid; gap: 0.4rem; }
.form-field.span-2 { grid-column: 1 / -1; }
label { font-weight: 600; }
input, textarea { width: 100%; padding: 0.9rem 0.9rem; border-radius: var(--radius-sm); background: var(--bg); border: 1px solid var(--border); color: var(--text); }
input:focus, textarea:focus { outline: 2px solid var(--primary); outline-offset: 2px; }
.error { color: var(--danger); min-height: 1.1em; }

#formStatus { margin-left: auto; color: var(--muted); }

/* Animations */
@media (prefers-reduced-motion: no-preference) {
  .fade-seq > .container > * { opacity: 0; transform: translateY(8px); animation: rise .6s ease forwards; }
  .fade-seq > .container > *:nth-child(1) { animation-delay: .05s; }
  .fade-seq > .container > *:nth-child(2) { animation-delay: .15s; }
  .fade-seq > .container > *:nth-child(3) { animation-delay: .25s; }
  .float-up { animation: floatUp .8s ease .2s both; }
  
  .benefit, .feature {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp .6s ease forwards;
  }
  
  .benefit:nth-child(1), .feature:nth-child(1) { animation-delay: .1s; }
  .benefit:nth-child(2), .feature:nth-child(2) { animation-delay: .2s; }
  .benefit:nth-child(3), .feature:nth-child(3) { animation-delay: .3s; }
  
  .stat {
    opacity: 0;
    transform: scale(0.9);
    animation: scaleIn .8s ease forwards;
  }
  
  .stat:nth-child(1) { animation-delay: .1s; }
  .stat:nth-child(2) { animation-delay: .2s; }
  .stat:nth-child(3) { animation-delay: .3s; }
}

@keyframes rise { to { opacity: 1; transform: translateY(0); } }
@keyframes floatUp { from { opacity: 0; transform: translateY(10px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }
@keyframes scaleIn { to { opacity: 1; transform: scale(1); } }

/* Enhanced interactions and states */
.site-header.scrolled {
  background: linear-gradient(180deg, rgba(11, 13, 16, 0.98), rgba(11, 13, 16, 0.95));
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.loading-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 0.5rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Enhanced card animations */
.card.animate-in {
  animation: cardSlideIn 0.8s ease forwards;
}

@keyframes cardSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Focus states for accessibility */
.btn:focus-visible,
.nav-link:focus-visible,
.social-link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(122, 162, 247, 0.2);
}

/* Enhanced hover states */
.btn:active {
  transform: scale(0.98) translateY(0);
}

/* Improved contrast for accessibility */
@media (prefers-contrast: high) {
  :root {
    --border: rgba(255, 255, 255, 0.15);
    --glass: rgba(255, 255, 255, 0.1);
  }
  
  .btn {
    border-width: 2px;
  }
}

/* Contact page specific styles */
.contact-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.02));
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .3s ease;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary);
  transform: translateX(5px);
}

.contact-icon {
  font-size: 2rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: var(--radius-sm);
  color: var(--bg);
}

.contact-method h3 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-method p {
  margin: 0;
  color: var(--muted);
}

.contact-form-container {
  display: flex;
  align-items: flex-start;
}

.contact-form h3 {
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

/* Enhanced form styling */
select {
  width: 100%;
  padding: 0.9rem 0.9rem;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: inherit;
  cursor: pointer;
}

select:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* About page specific styles */
.about-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.02));
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-text p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: all .3s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary);
  transform: translateY(-5px);
}

.stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: block;
}

.stat-card .stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
  display: block;
}

.stat-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* Team section styles */
.team-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.team-member {
  text-align: center;
  transition: all .3s ease;
}

.team-member:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary);
}

.member-avatar {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.team-member h3 {
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.member-role {
  color: var(--primary);
  font-weight: 500;
  margin: 0 0 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-member p:last-child {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* CTA section styles */
.cta-section {
  background: linear-gradient(135deg, rgba(122, 162, 247, 0.05), rgba(192, 153, 255, 0.05));
  border-top: 1px solid var(--border);
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
}

.cta-content h2 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 1rem;
  background: linear-gradient(135deg, var(--text), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  color: var(--muted);
  font-size: 1.2rem;
  margin: 0 0 2rem;
  line-height: 1.6;
}

/* Responsive improvements */
@media (max-width: 768px) {
  .hero-content {
    text-align: left;
  }
  
  .actions {
    justify-content: flex-start;
  }
  
  .section-header {
    text-align: left;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-section .grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-info {
    order: 2;
  }
  
  .contact-form-container {
    order: 1;
  }
  
  .contact-method {
    padding: 1rem;
  }
  
  .contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
  }
  
  .about-section .grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-content {
    order: 2;
  }
  
  .about-stats {
    order: 1;
  }
  
  .stat-card {
    padding: 1.5rem;
  }
  
  .team-section .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Print styles */
@media print {
  .site-header,
  .actions,
  .social-links {
    display: none;
  }
  
  .section {
    padding: 1rem 0;
  }
  
  .card {
    border: 1px solid #ccc;
    box-shadow: none;
  }
}

/* Hero section enhancements */
.hero-subtitle {
  color: var(--accent);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin: 0 0 2rem;
  font-weight: 500;
}

/* Floating credential badges */
.floating-badges {
  position: relative;
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.credential-badge {
  background: linear-gradient(135deg, rgba(122, 162, 247, 0.1), rgba(192, 153, 255, 0.1));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.8rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  backdrop-filter: blur(12px);
  animation: float 3s ease-in-out infinite;
}

.credential-badge:nth-child(2) {
  animation-delay: 1s;
}

.credential-badge:nth-child(3) {
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Problem stats section */
.problem-stats {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-stats .section-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  max-width: 800px;
  margin-inline: auto;
}

/* Services section */
.service-card {
  height: 100%;
  transition: all .3s ease;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.service-price {
  color: var(--accent-orange);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0.5rem 0 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--muted);
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: "✓";
  color: var(--success);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Portfolio section */
.portfolio-card {
  height: 100%;
  transition: all .3s ease;
}

.portfolio-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.portfolio-image {
  height: 200px;
  background: linear-gradient(135deg, rgba(122, 162, 247, 0.1), rgba(192, 153, 255, 0.1));
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-image {
  font-size: 4rem;
  opacity: 0.7;
}

.tech-stack {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.tech-badge {
  background: rgba(122, 162, 247, 0.1);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
}

/* Process section */
.grid-4 {
  display: grid;
  gap: 1.5rem;
}

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

.process-step {
  height: 100%;
  transition: all .3s ease;
  text-align: center;
}

.process-step:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.process-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

/* Benefits list */
.benefits-list {
  max-width: 800px;
  margin-inline: auto;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.benefit-item:last-child {
  border-bottom: none;
}

.checkmark {
  color: var(--success);
  font-size: 1.2rem;
  font-weight: bold;
  min-width: 1.5rem;
}

/* Testimonials */
.testimonial-card {
  height: 100%;
  transition: all .3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.testimonial-avatar {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

blockquote {
  font-style: italic;
  margin: 1rem 0;
  color: var(--text);
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 1rem;
}

.testimonial-author strong {
  color: var(--text);
  font-size: 1.1rem;
}

.testimonial-author span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* FAQ section */
.faq-list {
  max-width: 800px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all .3s ease;
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.02);
  transition: background .3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.04);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-toggle {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform .3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all .3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 200px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* Final CTA section */
.final-cta {
  background: linear-gradient(135deg, rgba(255, 138, 76, 0.1), rgba(192, 153, 255, 0.1));
  border-top: 1px solid var(--border);
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}

.cta-content h2 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 1rem;
  background: linear-gradient(135deg, var(--text), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  color: var(--muted);
  font-size: 1.2rem;
  margin: 0 0 2rem;
  line-height: 1.6;
}

.cta-actions {
  margin-bottom: 2rem;
}

.cta-contact {
  color: var(--muted);
}

.cta-contact p {
  margin: 0.5rem 0;
  font-size: 1rem;
}

.cta-subtitle {
  font-size: 0.9rem !important;
  opacity: 0.8;
}

/* Vision section */
.vision {
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.02));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.vision .section-subtitle {
  font-size: 1.2rem;
  max-width: 800px;
  margin-inline: auto;
}

/* Enhanced responsive design */
@media (max-width: 768px) {
  .floating-badges {
    gap: 1rem;
  }
  
  .credential-badge {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
  }
  
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .faq-question {
    padding: 1rem;
  }
  
  .faq-answer {
    padding: 0 1rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 1rem 1rem;
  }
}

/* Value cards for about page */
.value-card {
  height: 100%;
  transition: all .3s ease;
  text-align: center;
}

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

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

/* Enhanced contact methods */
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .3s ease;
  flex-direction: column;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary);
  transform: translateX(5px);
}

.contact-method .btn {
  margin-top: 0.5rem;
  align-self: flex-start;
}

/* Form enhancements */
.form-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.5rem;
  font-style: italic;
}

/* Enhanced CTA section */
.cta-section {
  background: linear-gradient(135deg, rgba(122, 162, 247, 0.05), rgba(192, 153, 255, 0.05));
  border-top: 1px solid var(--border);
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
}

.cta-content h2 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 1rem;
  background: linear-gradient(135deg, var(--text), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  color: var(--muted);
  font-size: 1.2rem;
  margin: 0 0 2rem;
  line-height: 1.6;
}

/* Responsive improvements for new elements */
@media (max-width: 768px) {
  .contact-method {
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .contact-method .btn {
    align-self: stretch;
    text-align: center;
  }
  
  .value-card {
    text-align: left;
  }
}

/* Problem hook section */
.problem-hook {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-hook .section-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  max-width: 800px;
  margin-inline: auto;
}

/* Pricing cards */
.pricing-card {
  height: 100%;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.pricing-card.starter {
  border-color: var(--success);
}

.pricing-card.business {
  border-color: var(--primary);
}

.pricing-card.premium {
  border-color: var(--accent);
}

.package-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.package-badge.starter {
  background: rgba(134, 239, 172, 0.2);
  color: var(--success);
  border: 1px solid var(--success);
}

.package-badge.business {
  background: rgba(122, 162, 247, 0.2);
  color: var(--primary);
  border: 1px solid var(--primary);
}

.package-badge.premium {
  background: rgba(192, 153, 255, 0.2);
  color: var(--accent);
  border: 1px solid var(--accent);
}

.package-price {
  color: var(--accent-orange);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 1rem 0;
  text-align: center;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.package-features li {
  padding: 0.5rem 0;
  color: var(--muted);
  position: relative;
  padding-left: 1.5rem;
}

.package-features li::before {
  content: "✓";
  color: var(--success);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Portfolio grid 4 */
.grid-4 {
  display: grid;
  gap: 1.5rem;
}

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

/* Benefits grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin-inline: auto;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .3s ease;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary);
  transform: translateX(5px);
}

.checkmark {
  color: var(--success);
  font-size: 1.2rem;
  font-weight: bold;
  min-width: 1.5rem;
}

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin-inline: auto;
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.process-step::after {
  content: "→";
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--primary);
  display: none;
}

@media (min-width: 1024px) {
  .process-step:not(:last-child)::after {
    display: block;
  }
}

.step-number {
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.process-step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Enhanced CTA section */
.final-cta {
  background: linear-gradient(135deg, rgba(255, 138, 76, 0.15), rgba(192, 153, 255, 0.15));
  border-top: 1px solid var(--border);
}

.btn-large {
  padding: 1.5rem 3rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.cta-guarantee {
  font-size: 1rem !important;
  color: var(--accent-orange);
  font-weight: 600;
  margin-top: 1rem;
}

/* Enhanced responsive design */
@media (max-width: 768px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .process-step::after {
    display: none;
  }
  
  .package-badge {
    position: static;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .package-price {
    text-align: center;
  }
}

/* Enhanced header effects */
.site-header {
  transition: all .3s ease;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.site-header.scrolled {
  background: linear-gradient(180deg, rgba(11, 13, 16, 0.98), rgba(11, 13, 16, 0.95));
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Ensure header is always visible */
.site-header {
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Active navigation states */
.nav-link.active {
  color: var(--primary);
  background: rgba(122, 162, 247, 0.1);
  border-radius: var(--radius-sm);
}

/* Smooth transitions for all interactive elements */
.card, .btn, .nav-link, .social-link, .credential-badge, .pricing-card, .benefit-item {
  transition: all .3s ease;
}

/* Enhanced pricing card animations */
.pricing-card:hover .package-badge {
  transform: scale(1.1);
}

.pricing-card:hover .package-price {
  color: var(--text);
}

/* Process step animations */
.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(122, 162, 247, 0.5);
}

.process-step:hover .step-icon {
  transform: scale(1.1);
}

/* Enhanced benefit item animations */
.benefit-item:hover .checkmark {
  transform: scale(1.2);
  color: var(--success);
}

/* Portfolio card enhancements */
.portfolio-card:hover .placeholder-image {
  transform: scale(1.1);
  opacity: 1;
}

.portfolio-card:hover .tech-badge {
  background: var(--primary);
  color: var(--bg);
}

/* Smooth scrolling behavior */
html {
  scroll-behavior: smooth;
}

/* Enhanced mobile navigation */
@media (max-width: 768px) {
  .site-header {
    backdrop-filter: blur(15px);
  }
  
  .nav-link.active {
    background: rgba(122, 162, 247, 0.15);
  }
  
  .process-step::after {
    display: none;
  }
}

/* Loading animations for elements */
.animate-in {
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced button states */
.btn:active {
  transform: scale(0.98) translateY(0);
}

.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(122, 162, 247, 0.2);
}

/* Enhanced card focus states */
.card:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}


