:root {
  --stone-slate: #2c3e50;
  --stone-charcoal: #1a252f;
  --stone-river: #5d6d7e;
  --stone-sand: #bdc3c7;
  --stone-light: #ecf0f1;
  --accent-bronze: #b8956a;
  --accent-copper: #cd7f32;
  --accent-sage: #7d9d8e;
  --white: #ffffff;
  --off-white: #f8f9fa;
}

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

body {
  font-family: "Archivo", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--stone-charcoal);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(44, 62, 80, 0.1);
  animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

nav .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: visible;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1001;
}

.logo a {
  display: block;
  line-height: 0;
  cursor: pointer;
}

.logo img {
  height: 130px;
  width: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.logo a:hover img {
  opacity: 0.85;
}

.logo-text {
  font-family: "Archivo", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--stone-slate);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--stone-river);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-bronze);
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  margin-top: 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--stone-charcoal) 0%,
    var(--stone-slate) 100%
  );
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(
    circle,
    rgba(184, 149, 106, 0.15) 0%,
    transparent 70%
  );
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(2deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(-2deg);
  }
}

.hero .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-family: "Archivo", sans-serif;
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--white);
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-content h1 strong {
  font-weight: 700;
  color: var(--accent-bronze);
  display: block;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--stone-sand);
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  display: inline-block;
}

.btn-primary {
  background: var(--accent-bronze);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(184, 149, 106, 0.3);
}

.btn-primary:hover {
  background: var(--accent-copper);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(184, 149, 106, 0.4);
}

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

.btn-secondary:hover {
  background: var(--white);
  color: var(--stone-slate);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  animation: fadeIn 1s ease-out 0.8s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.logo-graphic {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 50%;
  margin-left: 3rem;
}

.hero-logo {
  font-family: "Archivo", sans-serif;
  font-size: 6rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-logo .company-name {
  display: block;
  font-size: 4.5rem;
  color: var(--accent-bronze);
  margin-bottom: 1rem;
}

.hero-logo .tagline {
  display: block;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--stone-sand);
  font-style: normal;
  letter-spacing: 0.5px;
}

/* About Section */
.about {
  padding: 8rem 2rem;
  background: var(--white);
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent,
    var(--stone-sand),
    transparent
  );
  opacity: 0.3;
}

.about .container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 6rem;
  align-items: center;
}

.section-label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-bronze);
  margin-bottom: 1rem;
}

.about h2 {
  font-family: "Archivo", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--stone-slate);
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}

.about-content p {
  font-size: 1.1rem;
  color: var(--stone-river);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-content strong {
  color: var(--stone-slate);
  font-weight: 600;
}

.story-highlight {
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--stone-light);
  border-left: 4px solid var(--accent-bronze);
  font-style: italic;
  color: var(--stone-river);
}

/* Developer Section */
.developer {
  padding: 8rem 2rem;
  background: linear-gradient(
    135deg,
    var(--stone-light) 0%,
    var(--off-white) 100%
  );
  position: relative;
}

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

.developer-main {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3rem;
}

.developer-image-placeholder {
  background: linear-gradient(135deg, var(--stone-slate), var(--stone-river));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: 0 10px 40px rgba(42, 52, 57, 0.2);
  overflow: hidden;
  width: 100%;
  max-width: 500px;
  height: 510px;
  margin-bottom: 1.5rem;
}

.developer-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.developer-content h2 {
  font-family: "Archivo", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--stone-slate);
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}

.developer-content p {
  font-size: 1.1rem;
  color: var(--stone-river);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.developer-content strong {
  color: var(--stone-slate);
  font-weight: 600;
}

.developer-points {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--white);
  border-left: 4px solid var(--accent-bronze);
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.custom-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
  color: var(--stone-river);
  line-height: 1.7;
}

.custom-list li:last-child {
  margin-bottom: 0;
}

.custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  background: var(--accent-bronze);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(184, 149, 106, 0.2);
}

/* Services Section */
.services {
  padding: 8rem 2rem;
  background: var(--off-white);
}

.services .container {
  max-width: 1400px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 5rem;
}

.services-header h2 {
  font-family: "Archivo", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--stone-slate);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.services-header p {
  font-size: 1.2rem;
  color: var(--stone-river);
  max-width: 700px;
  margin: 0 auto;
}

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

.service-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 30px rgba(42, 52, 57, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-bronze), var(--accent-sage));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 50px rgba(42, 52, 57, 0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-sage), var(--stone-slate));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.service-card h3 {
  font-family: "Archivo", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--stone-slate);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--stone-river);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

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

.service-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-bronze);
  font-weight: 700;
}

.service-features {
  margin-bottom: 1.5rem;
}

.btn-service {
  margin-top: auto;
  padding: 0.75rem 1.5rem;
  background: var(--accent-bronze);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-service:hover {
  background: var(--accent-copper);
  transform: translateY(-2px);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 37, 47, 0.8);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: var(--white);
  padding: 3rem;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.4s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--stone-river);
  cursor: pointer;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--stone-light);
  color: var(--stone-slate);
}

.modal-content h2 {
  font-family: "Archivo", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--stone-slate);
  margin-bottom: 1rem;
}

.modal-content p {
  color: var(--stone-river);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--stone-slate);
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--stone-sand);
  border-radius: 4px;
  font-family: "Archivo", sans-serif;
  font-size: 1rem;
  color: var(--stone-slate);
  transition: border-color 0.3s ease;
}

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

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

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--accent-bronze);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: var(--accent-copper);
}

/* Why Choose Section */
.why-choose {
  padding: 8rem 2rem;
  background: var(--stone-slate);
  color: var(--stone-light);
  position: relative;
  overflow: hidden;
}

.why-choose::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(184, 149, 106, 0.15) 0%,
    transparent 70%
  );
}

.why-choose .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.why-choose h2 {
  font-family: "Archivo", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.value-item {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.value-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(184, 149, 106, 0.3);
  transform: translateX(10px);
}

.value-item h3 {
  font-family: "Archivo", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent-bronze);
  margin-bottom: 1rem;
}

.value-item p {
  color: var(--stone-sand);
  line-height: 1.8;
}

/* Contact Section */
.contact {
  padding: 8rem 2rem;
  background: var(--white);
}

.contact .container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.contact h2 {
  font-family: "Archivo", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--stone-slate);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.contact p {
  font-size: 1.2rem;
  color: var(--stone-river);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.contact-item {
  text-align: center;
}

.contact-item-label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-bronze);
  margin-bottom: 0.5rem;
}

.contact-item-value {
  font-size: 1.1rem;
  color: var(--stone-slate);
}

.contact-item-value a {
  color: var(--stone-slate);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item-value a:hover {
  color: var(--accent-bronze);
}

/* Footer */
footer {
  background: var(--stone-charcoal);
  color: var(--stone-sand);
  padding: 3rem 2rem;
  text-align: center;
}

footer .container {
  max-width: 1400px;
  margin: 0 auto;
}

footer .footer-logo {
  margin-top: 2rem;
  margin-bottom: 0.1rem;
  font-family: "Archivo", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-bronze);
  letter-spacing: -0.02em;
}

footer p {
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-family: "Archivo", sans-serif;
  font-style: normal;
  font-weight: 300;
  color: var(--accent-bronze);
  margin-top: 0.1rem;
}

/* Notification System */
.notification {
  position: fixed;
  top: 100px;
  right: 20px;
  min-width: 300px;
  max-width: 500px;
  padding: 1rem 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  transform: translateX(calc(100% + 40px));
  transition: transform 0.3s ease;
  font-size: 0.95rem;
  line-height: 1.5;
}

.notification.show {
  transform: translateX(0);
}

.notification-success {
  border-left: 4px solid #28a745;
  color: #155724;
  background: #d4edda;
}

.notification-error {
  border-left: 4px solid #dc3545;
  color: #721c24;
  background: #f8d7da;
}

@media (max-width: 768px) {
  .notification {
    left: 10px;
    right: 10px;
    top: 90px;
    min-width: auto;
    max-width: none;
  }
}

/* Button States */
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: var(--stone-sand);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--stone-slate);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 1.5rem;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .about .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about,
  .developer,
  .services,
  .why-choose,
  .contact {
    padding: 5rem 1.5rem;
  }

  .developer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .developer-points {
    padding: 1.5rem;
  }

  .custom-list li {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

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

  .nav-links {
    gap: 1.5rem;
  }

  nav .container {
    padding: 0.1rem 1.5rem;
  }
}

@media (max-width: 768px) {
  /* Navigation */
  nav .container {
    padding: 0.75rem 1rem;
    position: relative;
  }

  .logo img {
    height: 80px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 280px;
    background: var(--white);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 2rem;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 1rem 0;
    display: block;
  }

  /* Hero Section */
  .hero {
    margin-top: 80px;
    min-height: auto;
  }

  .hero .container {
    padding: 2rem 1.25rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .btn {
    padding: 1rem 2rem;
    text-align: center;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo-graphic {
    height: 250px;
  }

  .hero-image {
    display: none;
  }

  .hero-visual {
    display: none;
  }

  .hero-logo {
    font-size: 3rem;
  }

  .hero-logo .company-name {
    font-size: 2.5rem;
  }

  .hero-logo .tagline {
    font-size: 1rem;
  }

  /* Sections */
  .about,
  .developer,
  .services,
  .why-choose,
  .contact {
    padding: 3rem 1.25rem;
  }

  .services-header h2,
  .why-choose h2,
  .contact h2 {
    font-size: 2rem;
  }

  .about h2,
  .developer-content h2 {
    font-size: 1.875rem;
  }

  .services-header p,
  .contact p {
    font-size: 1rem;
  }

  .about-content p,
  .developer-content p {
    font-size: 1rem;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .service-card h3 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .btn-service {
    min-height: 44px;
  }

  /* Developer Photo */
  .developer-image-placeholder {
    margin: 0 auto;
    height: auto;
    min-height: 400px;
    max-width: 100%;
  }

  .developer-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Developer Points */
  .developer-points {
    padding: 1.5rem;
    margin-top: 1.5rem;
  }

  .custom-list li {
    font-size: 0.95rem;
    padding-left: 1.5rem;
  }

  /* Values Grid */
  .values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .value-item {
    padding: 2rem 1.5rem;
  }

  .value-item h3 {
    font-size: 1.5rem;
  }

  .value-item:hover {
    transform: translateY(-5px);
  }

  /* Contact */
  .contact-info {
    flex-direction: column;
    gap: 2rem;
  }

  .contact .btn-primary {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 300px;
  }

  /* Modal */
  .modal-content {
    width: 95%;
    padding: 2rem 1.5rem;
    max-height: 85vh;
  }

  .modal-content h2 {
    font-size: 1.5rem;
  }

  /* Story Highlight */
  .story-highlight {
    padding: 1.5rem;
    font-size: 0.95rem;
  }

  /* Footer */
  footer {
    padding: 2rem 1rem;
  }

  footer .footer-logo {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.875rem;
  }

  .hero-content p {
    font-size: 0.9375rem;
  }

  .logo img {
    height: 70px;
  }

  .services-header h2,
  .why-choose h2,
  .contact h2 {
    font-size: 1.75rem;
  }

  .about h2,
  .developer-content h2 {
    font-size: 1.625rem;
  }

  .hero-logo {
    font-size: 2.5rem;
  }

  .hero-logo .company-name {
    font-size: 2rem;
  }

  .hero-logo .tagline {
    font-size: 0.875rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
  }

  .service-card h3 {
    font-size: 1.375rem;
  }

  .value-item h3 {
    font-size: 1.375rem;
  }

  .nav-links {
    width: 100%;
    padding: 5rem 1.5rem 2rem;
  }
}

/* Responsive line breaks */
.desktop-break {
  display: none;
}

@media (min-width: 769px) {
  .desktop-break {
    display: inline;
  }
}

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

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Mobile-specific optimizations */
@media (max-width: 768px) {
  /* Improve tap highlight */
  a, button, .btn {
    -webkit-tap-highlight-color: rgba(184, 149, 106, 0.2);
  }

  /* Prevent text size adjustment */
  html {
    -webkit-text-size-adjust: 100%;
  }

  /* Improve form inputs on mobile */
  input, textarea, select {
    font-size: 16px;
  }
}
