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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #0f172a;
  background: #f8fafc;
}

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

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

ul {
  list-style: none;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: #2563eb;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: bold;
}

.logo-text {
  font-size: 18px;
}

/* NAV */
.site-nav {
  display: flex;
}

.nav-list {
  display: flex;
  gap: 25px;
}

.nav-list a {
  font-size: 14px;
  color: #475569;
  transition: 0.3s;
}

.nav-list a:hover,
.nav-list a.active {
  color: #2563eb;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: #0f172a;
}

/* ===== HERO ===== */
.hero-section {
  padding: 80px 0;
}

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

.section-tag {
  color: #2563eb;
  font-size: 13px;
  margin-bottom: 10px;
}

.hero-content h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero-text {
  margin-bottom: 25px;
  color: #475569;
}

.hero-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.btn {
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  transition: 0.3s;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
}

.btn-primary:hover {
  background: #1e40af;
}

.btn-secondary {
  border: 1px solid #cbd5f5;
}

.btn-secondary:hover {
  background: #f1f5f9;
}

.hero-highlights {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #475569;
}

/* HERO CARDS */
.hero-visual {
  position: relative;
}

.hero-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.hero-card-main {
  margin-bottom: 20px;
}

.hero-card-floating {
  position: absolute;
  right: -20px;
  bottom: -20px;
  max-width: 220px;
}

.card-label {
  font-size: 12px;
  color: #2563eb;
  margin-bottom: 10px;
}

.mini-stat {
  font-weight: bold;
  font-size: 18px;
}

/* ===== SECTIONS ===== */
.section-heading {
  max-width: 600px;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

/* ===== SERVICES ===== */
.services-section {
  padding: 80px 0;
}

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

.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* ===== ABOUT PREVIEW ===== */
.about-preview-section {
  padding: 80px 0;
}

.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.feature-item {
  margin-bottom: 20px;
}

/* ===== PROCESS ===== */
.process-section {
  padding: 80px 0;
}

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

.process-step {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
}

.step-number {
  font-size: 22px;
  color: #2563eb;
  display: block;
  margin-bottom: 10px;
}

/* ===== CTA ===== */
.cta-section {
  padding: 80px 0;
}

.cta-box {
  background: #2563eb;
  color: #fff;
  padding: 40px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-actions .btn {
  background: #fff;
  color: #2563eb;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0f172a;
  color: #cbd5f5;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-links ul,
.footer-contacts ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a:hover,
.footer-contacts a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-grid,
  .about-preview-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .cta-box {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    width: 100%;
    display: none;
    border-bottom: 1px solid #e2e8f0;
  }

  .site-nav.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    padding: 20px;
  }

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

  .hero-content h1 {
    font-size: 32px;
  }
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
  padding-bottom: 40px;
}

.contact-section {
  padding: 40px 0 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 30px;
  align-items: start;
}

.contact-info-card,
.contact-form-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.contact-info-card h2,
.contact-form-card h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.contact-info-card > p,
.contact-form-card > p {
  color: #475569;
}

.contact-info-list {
  margin-top: 28px;
  display: grid;
  gap: 20px;
}

.contact-info-item {
  padding-bottom: 18px;
  border-bottom: 1px solid #e2e8f0;
}

.contact-info-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.contact-info-item h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #0f172a;
}

.contact-info-item p,
.contact-info-item a {
  color: #475569;
  transition: 0.3s;
}

.contact-info-item a:hover {
  color: #2563eb;
}

.contact-form {
  margin-top: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0f172a;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #ffffff;
  font-size: 15px;
  color: #0f172a;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

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

.contact-form .btn {
  border: none;
  cursor: pointer;
}

.form-status {
  margin-top: 14px;
  font-size: 14px;
  color: #2563eb;
  min-height: 20px;
}

.faq-preview-section {
  padding: 0 0 80px;
}

/* ===== CONTACT RESPONSIVE ===== */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-info-card,
  .contact-form-card {
    padding: 24px;
  }

  .contact-info-card h2,
  .contact-form-card h2 {
    font-size: 24px;
  }
}


/* ===== LEGAL PAGE ===== */
.legal-section {
  padding: 80px 0;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.legal-content h1 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #0f172a;
}

.legal-content h5 {
  font-size: 20px;
  line-height: 1.4;
  margin-top: 28px;
  margin-bottom: 12px;
  color: #0f172a;
}

.legal-content p {
  margin-bottom: 16px;
  color: #475569;
  font-size: 16px;
  line-height: 1.8;
  word-break: break-word;
}

.legal-content a {
  color: #2563eb;
}

.legal-content a:hover {
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .legal-section {
    padding: 50px 0;
  }

  .legal-content {
    padding: 24px;
  }

  .legal-content h1 {
    font-size: 28px;
  }

  .legal-content h5 {
    font-size: 18px;
  }

  .legal-content p {
    font-size: 15px;
  }
}


/* ===== LEGAL PAGE ===== */
.legal-section {
  padding: 80px 0;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.legal-content h1 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #0f172a;
}

.legal-content h3,
.legal-content h5 {
  font-size: 20px;
  line-height: 1.4;
  margin-top: 28px;
  margin-bottom: 12px;
  color: #0f172a;
}

.legal-content p {
  margin-bottom: 16px;
  color: #475569;
  font-size: 16px;
  line-height: 1.8;
  word-break: break-word;
}

.legal-content ul {
  margin: 0 0 16px 22px;
  padding: 0;
}

.legal-content ul li {
  margin-bottom: 10px;
  color: #475569;
  line-height: 1.8;
}

.legal-content a {
  color: #2563eb;
}

.legal-content a:hover {
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .legal-section {
    padding: 50px 0;
  }

  .legal-content {
    padding: 24px;
  }

  .legal-content h1 {
    font-size: 28px;
  }

  .legal-content h3,
  .legal-content h5 {
    font-size: 18px;
  }

  .legal-content p,
  .legal-content ul li {
    font-size: 15px;
  }
}

/* ===== SHOWCASE SECTION ===== */
.showcase-section {
  padding: 80px 0;
}

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

.showcase-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease;
}

.showcase-card:hover {
  transform: translateY(-6px);
}

.showcase-image {
  width: 100%;
  height: 240px;
  background: #e2e8f0;
}

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

.showcase-content {
  padding: 22px;
}

.showcase-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0f172a;
}

.showcase-content p {
  color: #475569;
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
  padding: 80px 0;
}

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

.partners-content h2 {
  margin-bottom: 16px;
}

.partners-content p {
  margin-bottom: 20px;
  color: #475569;
}

.partners-list {
  display: grid;
  gap: 14px;
}

.partners-list li {
  position: relative;
  padding-left: 22px;
  color: #475569;
}

.partners-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2563eb;
}

.partners-image {
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  background: #e2e8f0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

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

/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.gallery-item {
  height: 320px;
  border-radius: 18px;
  overflow: hidden;
  background: #e2e8f0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }

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

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

  .partners-image {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .showcase-section,
  .partners-section,
  .gallery-section {
    padding: 60px 0;
  }

  .showcase-image {
    height: 220px;
  }

  .gallery-item {
    height: 240px;
  }
}

.hero-card-main {
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  margin-bottom: 16px;
}

/* ===== ABOUT HERO IMAGE ===== */
.about-hero .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-media {
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  background: #e2e8f0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

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

/* ===== ABOUT SHOWCASE ===== */
.studio-showcase-section {
  padding: 80px 0;
}

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

.studio-showcase-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease;
}

.studio-showcase-card:hover {
  transform: translateY(-6px);
}

.studio-showcase-image {
  width: 100%;
  height: 240px;
  background: #e2e8f0;
}

.studio-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.studio-showcase-content {
  padding: 22px;
}

.studio-showcase-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0f172a;
}

.studio-showcase-content p {
  color: #475569;
}

/* ===== STUDIO PRINCIPLES ===== */
.studio-principles-section {
  padding: 80px 0;
}

.studio-principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.studio-principles-image {
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  background: #e2e8f0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.studio-principles-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.studio-principles-content h2 {
  margin-bottom: 16px;
}

.studio-principles-content p {
  margin-bottom: 20px;
  color: #475569;
}

.studio-principles-list {
  display: grid;
  gap: 14px;
}

.studio-principles-list li {
  position: relative;
  padding-left: 22px;
  color: #475569;
}

.studio-principles-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2563eb;
}

/* ===== ABOUT GALLERY ===== */
.studio-gallery-section {
  padding: 80px 0;
}

.studio-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.studio-gallery-item {
  height: 320px;
  border-radius: 18px;
  overflow: hidden;
  background: #e2e8f0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.studio-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== ABOUT PAGE RESPONSIVE ===== */
@media (max-width: 992px) {
  .about-hero .hero-grid,
  .studio-principles-grid {
    grid-template-columns: 1fr;
  }

  .studio-showcase-grid {
    grid-template-columns: 1fr;
  }

  .studio-gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .studio-principles-image {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .studio-showcase-section,
  .studio-principles-section,
  .studio-gallery-section {
    padding: 60px 0;
  }

  .studio-showcase-image {
    height: 220px;
  }

  .studio-gallery-item {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    width: 100%;
    display: none;
    border-bottom: 1px solid #e2e8f0;
    z-index: 999;
  }

  .site-nav.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    padding: 20px;
  }
}

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

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

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