@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  background: #fdfcfa;
  color: #3d3d3d;
  line-height: 1.8;
  font-size: 15px;
}

header {
  text-align: center;
  padding: 50px 20px 40px;
  background: linear-gradient(180deg, #fff 0%, #fdfcfa 100%);
}

header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 0 0 10px;
}

.logo-link {
  display: inline-block;
  text-decoration: none;
}

.logo {
  height: 100px;
  width: auto;
  display: block;
}

header p {
  color: #888;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0;
}

nav {
  display: flex;
  justify-content: center;
  gap: 45px;
  padding: 20px;
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav a {
  color: #777;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #1a1a1a;
  transition: width 0.3s;
}

nav a:hover::after, nav a.active::after {
  width: 100%;
}

nav a:hover, nav a.active {
  color: #1a1a1a;
}

section {
  padding: 80px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  transition: transform 0.4s, box-shadow 0.4s;
}

.hero img:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.hero h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0 0 20px;
  line-height: 1.3;
}

.hero p {
  color: #666;
  margin-bottom: 30px;
  font-size: 1rem;
}

.btn {
  display: inline-block;
  padding: 16px 36px;
  background: #1a1a1a;
  color: #fff;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: all 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  background: #333;
}

.btn-outline {
  display: inline-block;
  padding: 16px 36px;
  background: transparent;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 4px;
  border: 2px solid #1a1a1a;
  margin-left: 15px;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: #1a1a1a;
  color: #fff;
}

h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #1a1a1a;
  text-align: center;
  margin: 0 0 50px;
  position: relative;
}

h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: #1a1a1a;
  margin: 15px auto 0;
}

h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0 0 12px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: #fff;
  padding: 40px 35px;
  border-radius: 8px;
  border: 1px solid #eee;
  transition: all 0.4s;
  text-align: center;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-color: transparent;
}

.card p {
  color: #666;
  margin: 0;
  line-height: 1.7;
}

.mockup-card {
  text-align: left;
  padding: 0;
  overflow: hidden;
}

.mockup-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.mockup-card h4,
.mockup-card p {
  padding: 0 25px;
}

.mockup-card h4 {
  margin-top: 20px;
}

.mockup-card p {
  padding-bottom: 25px;
}

.price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 15px 0;
}

.review {
  font-style: italic;
  color: #555;
  text-align: left;
  position: relative;
  padding-left: 25px;
}

.review::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: #1a1a1a;
  position: absolute;
  left: 0;
  top: -15px;
  opacity: 0.3;
}

.review span {
  display: block;
  margin-top: 15px;
  font-style: normal;
  color: #999;
  font-size: 0.85rem;
}

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

.process-step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.process-step h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.process-step p {
  color: #777;
  font-size: 0.9rem;
  margin: 0;
}

.featured-section {
  background: linear-gradient(180deg, #f8f6f3 0%, #fdfcfa 100%);
  padding: 80px 0;
}

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

.about-image {
  background: linear-gradient(135deg, #f5f3f0 0%, #ebe8e5 100%);
  height: 400px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 500;
  color: #1a1a1a;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.about-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0 0 25px;
}

.about-content p {
  color: #666;
  margin-bottom: 20px;
}

.contact-section {
  background: #fff;
  border-radius: 8px;
  padding: 50px;
  border: 1px solid #eee;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

form input, form textarea {
  width: 100%;
  padding: 16px 20px;
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fdfcfa;
  transition: all 0.3s;
}

form input:focus, form textarea:focus {
  outline: none;
  border-color: #1a1a1a;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

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

form button {
  width: 100%;
  padding: 16px 30px;
  background: #1a1a1a;
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  background: #333;
}

.cta-section {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(180deg, #fdfcfa 0%, #f8f6f3 100%);
}

footer {
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid #eee;
  font-size: 0.85rem;
  color: #999;
  background: #fff;
}

footer strong {
  color: #1a1a1a;
}

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

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  header h1 {
    font-size: 2rem;
    letter-spacing: 4px;
  }
  
  nav {
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .btn-outline {
    margin-left: 0;
    margin-top: 15px;
    display: block;
    text-align: center;
  }
  
  .contact-section {
    padding: 30px;
  }
  
  h3 {
    font-size: 1.5rem;
  }
}
