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

:root {
  --coral: #e66b55;
  --coral-light: #f4a090;
  --peach: #fff5f0;
  --dark: #1a1a1a;
  --gray: #666;
  --white: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark);
  background: linear-gradient(180deg, var(--peach) 0%, var(--white) 40%);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding: 24px 60px;
  display: flex;
  justify-content: flex-end;
  background: transparent;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: color 0.3s;
}

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

/* Dot Pattern */
.dot-pattern {
  position: absolute;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, #ddd 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.6;
  z-index: 0;
}

.dot-pattern-left {
  top: 20px;
  left: -20px;
}

.dot-pattern-right {
  top: 40px;
  right: 60px;
  z-index: 1;
}

/* Hero */
.hero {
  min-height: 100vh;
  padding: 120px 60px 80px;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-info {
  position: relative;
  padding: 20px 0;
}

.company-info {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.company-info span {
  display: block;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.coral-circle {
  position: absolute;
  width: 420px;
  height: 420px;
  background: var(--coral);
  border-radius: 50%;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}

.hero-image-wrap {
  position: relative;
  z-index: 2;
  border-radius: 60px 60px 60px 20px;
  overflow: hidden;
  width: 380px;
  height: 480px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.float-badge {
  position: absolute;
  background: var(--white);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.badge-heart {
  top: 30px;
  left: -20px;
}

.badge-like {
  bottom: 60px;
  left: -10px;
}

/* Section Label */
.section-label {
  color: var(--coral);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* About */
.about {
  padding: 100px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.circle-image-wrap {
  position: relative;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}

.circle-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circle-image-wrap .badge-heart {
  top: 20px;
  left: 20px;
}

.about-text h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-text p {
  color: var(--gray);
  margin-bottom: 24px;
}

.about-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.about-lists ul {
  list-style: none;
}

.about-lists li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--gray);
}

.about-lists li::before {
  content: '✓';
  color: var(--coral);
  margin-right: 8px;
  font-weight: 700;
}

/* Button */
.btn-primary {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  padding: 14px 36px;
  border: none;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
  background: #d45a44;
  transform: translateY(-2px);
}

/* Stats Banner */
.stats-banner {
  background: var(--coral);
  padding: 80px 60px;
  color: var(--white);
}

.stats-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.stats-banner-text h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}

.stats-banner-text p {
  opacity: 0.9;
  font-size: 15px;
}

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

.stat-item h3 {
  font-size: 36px;
  font-weight: 800;
}

.stat-item h4 {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.85;
  margin-top: 4px;
}

/* Creative Section */
.creative-section {
  padding: 100px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.creative-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.creative-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.creative-text h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
}

.creative-text p {
  color: var(--gray);
}

/* Action Section */
.action-section {
  padding: 100px 60px;
  background: var(--peach);
}

.action-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.action-text h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}

.action-text p {
  color: var(--gray);
  margin-bottom: 28px;
}

.action-image img {
  width: 100%;
  border-radius: 20px;
}

/* Services */
.services {
  padding: 100px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header h2 {
  font-size: 36px;
  font-weight: 800;
}

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

.service-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(230, 107, 85, 0.15);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--coral);
}

.service-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* Testimonials */
.testimonials {
  padding: 100px 60px;
  background: var(--peach);
}

.testimonials-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.testimonials-header h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}

.testimonials-header p {
  color: var(--gray);
}

.testimonials-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px 0;
  max-width: 1200px;
  margin: 0 auto;
  scroll-snap-type: x mandatory;
}

.testimonial-card {
  min-width: 300px;
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  scroll-snap-align: start;
  flex-shrink: 0;
}

.testimonial-card p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-card h3 {
  font-size: 18px;
  font-weight: 700;
}

.testimonial-card span {
  font-size: 13px;
  color: var(--coral);
}

/* Experience */
.experience {
  padding: 100px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.experience-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.experience-text h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}

.experience-text p {
  color: var(--gray);
  margin-bottom: 32px;
}

.skill-bars {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.skill-label {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.skill-bar {
  height: 8px;
  background: #eee;
  border-radius: 4px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  background: var(--coral);
  border-radius: 4px;
  transition: width 1s ease;
}

.experience-image img {
  width: 100%;
  border-radius: 20px;
}

/* CTA */
.cta-section {
  padding: 80px 60px;
  background: var(--coral);
  color: var(--white);
  text-align: center;
}

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

.cta-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 24px;
}

.cta-content .btn-primary {
  background: var(--white);
  color: var(--coral);
  margin-bottom: 24px;
}

.cta-content .btn-primary:hover {
  background: #f0f0f0;
}

.cta-content > p {
  opacity: 0.9;
  margin-bottom: 40px;
}

.stats-grid-small {
  max-width: 500px;
  margin: 0 auto;
}

/* Contact */
.contact {
  padding: 100px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h5 {
  color: var(--coral);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input {
  padding: 16px 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.contact-form input:focus {
  border-color: var(--coral);
}

.contact-form .btn-primary {
  align-self: flex-start;
}

/* Footer */
.footer {
  padding: 30px 60px;
  text-align: center;
  background: var(--dark);
  color: #999;
  font-size: 13px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  max-width: 420px;
  text-align: center;
}

.modal-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.modal-content p {
  color: var(--gray);
  margin-bottom: 24px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
  .navbar {
    padding: 16px 24px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    font-size: 11px;
  }

  .hero {
    padding: 100px 24px 60px;
  }

  .hero-content,
  .about-content,
  .stats-banner-content,
  .creative-content,
  .action-content,
  .experience-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .coral-circle {
    width: 280px;
    height: 280px;
    right: 0;
  }

  .hero-image-wrap {
    width: 280px;
    height: 360px;
  }

  .company-info {
    font-size: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about,
  .creative-section,
  .action-section,
  .services,
  .testimonials,
  .experience,
  .contact,
  .stats-banner,
  .cta-section {
    padding: 60px 24px;
  }
}
