:root {
  --bg-color: #0A0A0A;
  --text-color: #FFFFFF;
  --accent: #3B82F6;
  --font-sans: 'Space Grotesk', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.site-logo {
  position: fixed;
  top: 24px;
  left: 24px;
  width: 50px;
  height: auto;
  z-index: 100;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.hero-title {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero .tagline {
  font-size: 1.25rem;
  color: #888;
  max-width: 500px;
  margin: 0 auto 48px;
  font-weight: 300;
}

.hero .cta-btn {
  display: inline-block;
  padding: 16px 32px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 1s ease-out 0.6s, translateY 1s ease-out 0.6s;
}

.hero .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.cta-btn {
  display: inline-block;
  padding: 16px 32px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

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

section {
  padding: 120px 0;
}

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  margin-bottom: 64px;
  text-align: center;
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.service-card {
  background: #111;
  border: 1px solid #222;
  padding: 32px;
  border-radius: 8px;
  transition: border-color 0.3s ease;
}

.service-card:hover {
  border-color: var(--accent);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.service-desc {
  color: #888;
  font-size: 1rem;
  margin-bottom: 24px;
}

.service-features {
  list-style: none;
  margin-bottom: 24px;
}

.service-features li {
  color: #666;
  font-size: 0.9rem;
  padding: 6px 0;
  border-bottom: 1px solid #222;
}

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

.service-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
}

.service-meta {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 8px;
}

.service-ideal {
  font-size: 0.875rem;
  color: #888;
  margin-top: 8px;
}

.service-not-included {
  font-size: 0.75rem;
  color: #444;
  font-style: italic;
  margin-top: 12px;
}

.addon-intro {
  text-align: center;
  color: #666;
  font-size: 1rem;
  margin-bottom: 48px;
}

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

.addon-card {
  background: #111;
  border: 1px solid #222;
  padding: 24px;
  border-radius: 8px;
  text-align: center;
  transition: border-color 0.3s ease;
}

.addon-card:hover {
  border-color: var(--accent);
}

.addon-card h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}

.addon-desc {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .addons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .addons-grid {
    grid-template-columns: 1fr;
  }
}
  font-style: italic;
  margin-top: 12px;
}

.service-ideal {
  font-size: 0.875rem;
  color: #888;
  margin-top: 8px;
}

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

.work-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
}

.card-bg {
  position: absolute;
  inset: 0;
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 2;
}

.work-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255,255,255,0.1);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.card-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.card-overlay p {
  font-size: 1.125rem;
  color: #aaa;
  margin-bottom: 16px;
}

.card-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.work-card:hover .card-overlay {
  opacity: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-bio h2 {
  text-align: left;
  margin-bottom: 24px;
}

.about-bio p {
  color: #888;
  font-size: 1.125rem;
  margin-bottom: 24px;
  line-height: 1.8;
}

.about-bio strong {
  color: var(--accent);
}

.about-bio em {
  color: #666;
  font-style: normal;
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.founder-photo {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.testimonials {
  text-align: center;
  background: #111;
}

.testimonial-placeholder {
  color: #444;
  font-size: 1.25rem;
  font-style: italic;
}

.coming-soon {
  color: #444;
  font-size: 1.5rem;
  font-style: italic;
  text-align: center;
}

.process-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}

.step {
  text-align: center;
  flex: 1;
  max-width: 250px;
}

.step-num {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0.5;
}

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

.step p {
  color: #666;
  font-size: 1rem;
}

.step-connector {
  width: 60px;
  height: 2px;
  background: #333;
  margin-top: 48px;
}

.contact {
  text-align: center;
}

.response-time {
  color: #25D366;
  font-size: 1rem;
  margin-bottom: 32px;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto 48px;
  text-align: left;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: #111;
  border: 1px solid #222;
  border-radius: 4px;
  color: var(--text-color);
  font-family: var(--font-sans);
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.email-link {
  display: inline-block;
  font-size: clamp(1.5rem, 4vw, 3rem);
  color: var(--text-color);
  text-decoration: none;
  position: relative;
}

.email-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.email-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

footer {
  padding: 32px 0;
  text-align: center;
  border-top: 1px solid #222;
}

footer p {
  color: #444;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .services-grid,
  .work-grid,
  .about-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .step-connector {
    display: none;
  }
  
  .process-steps {
    flex-direction: column;
    align-items: center;
  }
  
  .founder-photo {
    width: 100%;
    max-width: 300px;
  }
}