@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --bg: #1f232c;
  --bg-card: #262b35;
  --white: #ffffff;
  --text: #f3f4f6;
  --muted: #b3bac5;

  --accent: #f5a623;
  --accent-deep: #d9901a;
  --accent-soft: rgba(245, 166, 35, 0.12);

  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 12px 28px rgba(0, 0, 0, 0.22);

  --radius: 24px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  letter-spacing: 0.01em;
  background:
    radial-gradient(circle at top left, rgba(245, 166, 35, 0.08), transparent 24%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.03), transparent 18%),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

p {
  color: var(--muted);
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(31, 35, 44, 0.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-wrapper {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
}

.brand-sub {
  font-size: 0.79rem;
  color: var(--muted);
  margin-top: 0.16rem;
}

.site-nav ul {
  display: flex;
  gap: 1.3rem;
}

.site-nav a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--muted);
  transition: color 0.25s ease;
}

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

.site-nav a:hover {
  color: var(--white);
}

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

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.lang-switch a {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  transition: 0.25s ease;
}

.lang-switch a:hover,
.lang-switch a.active {
  color: #12151b;
  background: var(--accent);
  border-color: var(--accent);
}

/* HERO */

.hero {
  padding: 5.8rem 0 4.8rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2rem;
  align-items: center;
}

.hero-content {
  max-width: 640px;
  animation: fadeUp 0.9s ease forwards;
}

.eyebrow,
.section-tag,
.project-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.eyebrow {
  color: #ffc766;
}

.section-tag,
.project-label {
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(2.35rem, 3.2vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 1rem;
  max-width: 16ch;
  color: var(--white);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.22);
}

.hero-lead {
  font-size: 1rem;
  max-width: 56ch;
  margin-bottom: 1.8rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
}

.hero-mini {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-highlights-box,
.section-card,
.project-card,
.service-card,
.why-card,
.contact-box,
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-highlights-box {
  padding: 1.4rem;
  animation: fadeUpSoft 1s ease forwards;
}

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

.highlight-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.highlight-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(245, 166, 35, 0.3);
}

.highlight-number {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--white);
}

.highlight-label {
  font-size: 0.85rem;
  color: var(--muted);
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #161a21;
  box-shadow: 0 12px 30px rgba(245, 166, 35, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 16px 36px rgba(245, 166, 35, 0.35);
}

.btn-outline {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--accent-soft);
  color: var(--white);
}

/* SECTIONS */

.section {
  padding: 4.8rem 0;
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.4rem;
}

.section-heading h2,
.contact-text h2,
.section-card h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.12;
  margin-bottom: 0.85rem;
  color: var(--white);
}

.section-heading p,
.contact-text p,
.section-card p,
.project-content p,
.service-card p,
.why-card p,
.pricing-card p {
  font-size: 0.98rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.section-card {
  padding: 2rem;
}

.soft-card {
  background:
    radial-gradient(circle at top right, rgba(245, 166, 35, 0.08), transparent 24%),
    var(--bg-card);
}

/* ABOUT IMAGE */

.about-image {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  animation: fadeUpSoft 1s ease forwards;
}

.about-image::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 80%;
  border-radius: 40px;
  background: radial-gradient(
    circle at left,
    rgba(245, 166, 35, 0.18),
    rgba(245, 166, 35, 0.08),
    transparent 70%
  );
  filter: blur(30px);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.about-image::after {
  content: "";
  position: absolute;
  inset: -36px;
  border-radius: 42px;
  background: radial-gradient(
    circle at 70% 50%,
    rgba(245, 166, 35, 0.08),
    rgba(64, 88, 160, 0.15),
    transparent 72%
  );
  filter: blur(42px);
  z-index: 1;
  pointer-events: none;
}

.about-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 320px;
  border-radius: 22px;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.02);
  box-shadow:
    -20px 35px 90px rgba(0, 0, 0, 0.65),
    0 0 60px rgba(245, 166, 35, 0.10);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    filter 0.45s ease;
}

.about-image:hover img {
  transform: scale(1.025);
  filter: brightness(0.94) contrast(1.05);
  box-shadow:
    -25px 45px 110px rgba(0, 0, 0, 0.75),
    0 0 80px rgba(245, 166, 35, 0.14);
}

.about-image:hover::before {
  opacity: 1;
}

/* PROJECTS */

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

.project-card {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.project-card:hover,
.service-card:hover,
.why-card:hover,
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(245, 166, 35, 0.28);
}

.project-image {
  display: block;
  overflow: hidden;
  border-radius: 22px 22px 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.project-image img {
  width: 100%;
  height: 265px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.04);
  filter: brightness(0.88);
}

.project-content {
  padding: 1.5rem;
}

.project-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.1rem 0 1rem;
}

.project-tags span {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(245, 166, 35, 0.25);
  font-size: 0.8rem;
  font-weight: 700;
}

.project-link {
  font-weight: 600;
  color: var(--accent);
  font-size: 0.9rem;
}

.project-link:hover {
  color: #ffbc54;
}

/* SERVICES */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.service-card {
  padding: 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
  color: var(--white);
}

/* PRICING */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pricing-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
  color: var(--white);
}

.price {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.pricing-card ul {
  display: grid;
  gap: 0.7rem;
  margin: 0 0 1.6rem;
  padding: 0;
}

.pricing-card ul li {
  color: var(--muted);
  font-size: 0.95rem;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(245, 166, 35, 0.22);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-card.featured {
  background:
    radial-gradient(circle at top center, rgba(245, 166, 35, 0.12), transparent 34%),
    var(--bg-card);
  border: 1px solid rgba(245, 166, 35, 0.35);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
  border-color: rgba(245, 166, 35, 0.45);
}

/* WHY ME */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.why-card {
  padding: 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  color: var(--white);
}

/* CONTACT */

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background:
    radial-gradient(circle at top right, rgba(245, 166, 35, 0.12), transparent 24%),
    linear-gradient(180deg, #2c313d, #232833);
  padding: 2rem;
}

.contact-details {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.6rem;
}

.contact-details p,
.contact-details a {
  color: var(--muted);
}

.contact-details a:hover {
  color: var(--accent);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9ea5b1;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(245, 166, 35, 0.6);
  box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.12);
}

/* FOOTER */

.site-footer {
  padding: 1.8rem 0 2rem;
}

.footer-wrapper {
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.footer-credit {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.9rem;
}

/* ANIMATIONS */

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

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

/* RESPONSIVE */

@media (max-width: 1100px) {
  .nav-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .two-col,
  .contact-box,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .why-grid,
  .hero-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero h1 {
    max-width: 100%;
  }

  .about-image {
    justify-content: center;
    min-height: auto;
  }

  .about-image img {
    max-width: 380px;
  }

  .pricing-card.featured,
  .pricing-card.featured:hover {
    transform: none;
  }
}

@media (max-width: 768px) {
  .nav-wrapper {
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
  }

  .brand {
    justify-content: center;
    text-align: center;
  }

  .site-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .lang-switch {
    justify-content: center;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .cards-grid,
  .why-grid,
  .hero-highlights,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .about-image img {
    max-width: 320px;
    border-radius: 24px;
  }

  .brand-sub {
    font-size: 0.74rem;
  }

  .project-image img {
    height: 220px;
  }

  .hero-mini {
    font-size: 0.8rem;
  }

  .pricing-card {
    padding: 1.6rem 1.2rem;
  }

  .price {
    font-size: 1.7rem;
  }
}