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

:root {
  --primary: #e11d48;
  --primary-dark: #b51439;
  --accent: #db2777;
  --dark: #111827;
  --muted: #5c6474;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --line: #e6eaf0;
  --shadow: 0 15px 35px rgba(17, 24, 39, 0.08);
  --gradient-main: linear-gradient(135deg, #e11d48 0%, #db2777 100%);
}

/* GLOBAL */
html,
body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", sans-serif;
  background: var(--surface);
  color: var(--dark);
}

.container {
  width: 90%;
  max-width: 1180px;
  margin: auto;
}

section {
  padding: 96px 0;
}

h1,
h2,
h3 {
  font-weight: 700;
  letter-spacing: 0.2px;
}

p {
  line-height: 1.7;
  color: var(--muted);
}

/* SCROLL REVEAL */
.scroll-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .scroll-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* LINKS */
a {
  color: inherit;
  transition: 0.3s;
}

/* NAVBAR */
.navbar {
  width: 100%;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h2 {
  font-size: 22px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
  position: relative;
}

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

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

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

.menu-toggle {
  display: none;
  position: relative;
  cursor: pointer;
  border: 1px solid #e7ebf2;
  background: rgba(255, 255, 255, 0.96);
  padding: 0;
  width: 42px;
  height: 40px;
  border-radius: 10px;
  color: var(--dark);
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.06);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.menu-toggle i {
  position: absolute;
  font-size: 16px;
  color: #12243f;
  transition:
    transform 0.3s ease,
    opacity 0.25s ease,
    color 0.25s ease;
}

.menu-toggle .fa-xmark {
  opacity: 0;
  transform: scale(0.8) rotate(-90deg);
}

.menu-toggle:hover {
  background: #fff7fb;
  border-color: #f3c8da;
  box-shadow: 0 10px 22px rgba(190, 24, 93, 0.12);
}

.menu-toggle:focus-visible {
  outline: 2px solid #db2777;
  outline-offset: 3px;
}

.menu-toggle.active {
  background: #fff1f7;
  border-color: #f3c8da;
}

.menu-toggle.active .fa-bars {
  opacity: 0;
  transform: scale(0.8) rotate(90deg);
}

.menu-toggle.active .fa-xmark {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* HERO SECTION */
.hero {
  position: relative;
  overflow: hidden;
  padding: 128px 0 110px;
  background:
    radial-gradient(circle at 10% 18%, rgba(14, 165, 233, 0.14) 0%, rgba(14, 165, 233, 0) 42%),
    radial-gradient(circle at 88% 10%, rgba(225, 29, 72, 0.14) 0%, rgba(225, 29, 72, 0) 40%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 62%);
}

.hero::before {
  content: "";
  position: absolute;
  top: -48px;
  right: 9%;
  width: 220px;
  height: 220px;
  border-radius: 32% 68% 66% 34% / 40% 42% 58% 60%;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(14, 165, 233, 0.05));
  transform: rotate(12deg);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  left: 6%;
  bottom: -58px;
  width: 260px;
  height: 260px;
  border-radius: 62% 38% 30% 70% / 38% 48% 52% 62%;
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.14), rgba(225, 29, 72, 0.03));
  transform: rotate(-14deg);
  z-index: 0;
}

.hero-layout {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(225, 29, 72, 0.1);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 52px;
  line-height: 1.12;
  margin-bottom: 20px;
  color: #0b1a33;
  text-wrap: balance;
}

.hero p {
  font-size: 18px;
  color: #46536c;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
}

.cta-button {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, #e11d48 0%, #db2777 100%);
  box-shadow: 0 12px 26px rgba(190, 24, 93, 0.24);
}


/* SERVICES */
.services {
  background: var(--surface-soft);
  text-align: center;
}

.services h2,
.why-us h2,
.contact h2 {
  font-size: 36px;
  margin-bottom: 50px;
  color: var(--dark);
}

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

.service {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.05);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.service h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

.service p {
  font-size: 15px;
  margin-bottom: 14px;
}

.service-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #1f3a63;
  background: #eef4fb;
  border: 1px solid #dbe7f5;
  border-radius: 999px;
  padding: 6px 10px;
  margin-bottom: 12px;
}

.service-points {
  list-style: none;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-points li {
  position: relative;
  color: #42506a;
  font-size: 14px;
  line-height: 1.5;
  padding-left: 16px;
}

.service-points li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #db2777;
  position: absolute;
  left: 0;
  top: 8px;
}

.service-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #9f1239 0%, #db2777 100%);
  border-radius: 9px;
  padding: 11px 14px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.service-btn:hover {
  background: linear-gradient(135deg, #881337 0%, #be185d 100%);
  box-shadow: 0 12px 18px rgba(190, 24, 93, 0.22);
}

.service-btn:focus-visible {
  outline: 2px solid #db2777;
  outline-offset: 2px;
}

.service:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 165, 233, 0.4);
}

/* ABOUT US */
.about-us {
  background: #fff;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: start;
}

.about-main {
  border: 1px solid #e4e9f2;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  padding: 28px;
}

.about-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  color: #9f1239;
  background: #fde8f2;
  border: 1px solid #f8cde2;
  border-radius: 999px;
  padding: 6px 10px;
}

.about-main h2 {
  font-size: 34px;
  line-height: 1.22;
  margin-bottom: 16px;
  color: #0f213d;
}

.about-main p {
  margin-bottom: 14px;
  color: #4a5871;
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-card {
  border: 1px solid #e4e9f2;
  border-radius: 14px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.about-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
  color: #12243f;
}

.about-card p {
  font-size: 15px;
  color: #4b5a72;
}

/* SERVICE PAGES */
.service-page {
  padding: 104px 0 78px;
  background:
    radial-gradient(circle at 10% 12%, rgba(225, 29, 72, 0.08) 0%, rgba(225, 29, 72, 0) 28%),
    radial-gradient(circle at 92% 10%, rgba(212, 163, 115, 0.12) 0%, rgba(212, 163, 115, 0) 24%),
    linear-gradient(180deg, #fffdfb 0%, #ffffff 100%);
}

.service-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 42px;
  align-items: center;
}

.service-page-copy h1 {
  font-size: 48px;
  line-height: 1.08;
  margin-bottom: 16px;
  color: #101f38;
}

.service-page-highlight {
  font-size: 20px;
  line-height: 1.5;
  color: #b51439;
  font-weight: 700;
  max-width: 32ch;
  margin-bottom: 18px;
}

.service-page-lead {
  font-size: 18px;
  line-height: 1.55;
  color: #24324b;
  max-width: 58ch;
  margin-bottom: 24px;
}

.service-page-section-title {
  font-size: 18px;
  margin-bottom: 16px;
  color: #101f38;
}

.service-page-points {
  list-style: none;
  max-width: 44ch;
  margin: 0 0 34px;
  display: grid;
  gap: 12px;
}

.service-page-points li {
  position: relative;
  padding-left: 18px;
  color: #24324b;
  line-height: 1.6;
}

.service-page-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e11d48 0%, #db2777 100%);
}

.service-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 26px;
}

.service-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid #e4d8df;
  text-decoration: none;
  color: #162846;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.72);
}

.service-page-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
}

.service-highlight-card {
  padding: 18px 18px 16px;
  border-radius: 18px;
  border: 1px solid #ecdfe6;
  background: linear-gradient(180deg, rgba(255, 248, 251, 0.96) 0%, #ffffff 100%);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
}

.service-highlight-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  color: #10233f;
}

.service-highlight-card span {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  color: #556179;
}

.service-page-media {
  justify-self: end;
  max-width: 100%;
}

.service-page-media-card {
  position: relative;
  padding: 22px;
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(255, 244, 248, 0.95) 0%, rgba(255, 255, 255, 0.98) 48%, rgba(244, 250, 255, 0.96) 100%);
  border: 1px solid #f1dce6;
  box-shadow: 0 24px 50px rgba(17, 24, 39, 0.1);
}

.service-page-media-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #f4cadb;
  background: #fff7fb;
  color: #9f1239;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.service-page-media img {
  display: block;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  background: #ffffff;
}

.service-page-media-grid {
  display: grid;
  gap: 14px;
}

.service-page-media-grid img {
  min-height: 220px;
}

.service-page-media-grid img:first-child {
  min-height: 320px;
}

/* WHY US */
.why-us {
  text-align: center;
  background: #fff;
}

.why-intro,
.why-outro {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
}

.why-intro {
  margin-bottom: 42px;
}

.why-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 42px;
}

.why-item {
  padding: 26px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #fcfdff);
  text-align: left;
}

.why-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.why-item p {
  font-size: 15px;
}

/* CONTACT */
.contact {
  position: relative;
  overflow: hidden;
  background: var(--surface-soft);
}

.contact::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  top: -120px;
  right: -100px;
  border-radius: 50%;
  background: rgba(219, 39, 119, 0.08);
}

.contact-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: stretch;
}

.contact-form-box,
.contact-info {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.05);
  height: 100%;
}

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

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

.contact-form input,
.contact-form textarea {
  padding: 13px 14px;
  border: 1px solid #ccd5e1;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(219, 39, 119, 0.14);
}

.contact-quick-square {
  border: 1px solid #ecd3df;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff7fb 0%, #fff 100%);
  padding: 12px;
  min-height: 270px;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quick-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.45px;
  color: #9f1239;
  background: #fde8f2;
  border: 1px solid #f8cade;
  border-radius: 999px;
  padding: 6px 10px;
}

.contact-quick-square h3 {
  font-size: 20px;
  line-height: 1.25;
  color: #10233f;
}

.contact-quick-square p {
  color: #4b5a72;
  font-size: 14px;
}

.contact-quick-square textarea {
  flex: 1;
  min-height: 95px;
  border: 1px solid #d8e2ef;
  border-radius: 10px;
  padding: 9px 10px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  resize: none;
  background: #fff;
}

.contact-quick-square textarea:focus {
  border-color: #db2777;
  box-shadow: 0 0 0 3px rgba(219, 39, 119, 0.14);
}

.quick-send-btn {
  width: 100%;
  background: linear-gradient(135deg, #e11d48 0%, #db2777 100%);
  box-shadow: 0 10px 20px rgba(190, 24, 93, 0.2);
}

.quick-send-btn:hover {
  background: linear-gradient(135deg, #be123c 0%, #be185d 100%);
}

button {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: var(--accent);
}

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

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-intro h3 {
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 8px;
  color: #12243f;
}

.contact-intro p {
  margin-bottom: 8px;
}

.contact-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #9f1239;
  background: #fde8f2;
  border: 1px solid #f8cde2;
  border-radius: 999px;
  padding: 6px 10px;
}

.contact-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.contact-metric {
  border: 1px solid #e1e8f2;
  border-radius: 10px;
  padding: 12px 10px;
  background: #fbfdff;
  text-align: center;
}

.contact-metric strong {
  display: block;
  font-size: 20px;
  color: #12243f;
}

.contact-metric span {
  font-size: 12px;
  color: #5b6a82;
}

.contact-flow {
  border: 1px dashed #d8e1ee;
  border-radius: 12px;
  padding: 14px 16px;
  background: #fff;
}

.contact-flow h4 {
  font-size: 15px;
  margin-bottom: 8px;
  color: #1a2e4b;
}

.contact-flow ol {
  padding-left: 18px;
}

.contact-flow li {
  color: #475670;
  font-size: 14px;
  margin-bottom: 6px;
}

.info-item h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  margin-bottom: 6px;
  color: #1a2e4b;
}

.info-item i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #be185d;
  background: #fde8f2;
  border: 1px solid #f7cade;
}

.info-item p,
.info-item a {
  font-size: 13px;
  line-height: 1.5;
  color: #556179;
  text-decoration: none;
}

.info-item {
  border: 1px solid #e1e8f2;
  border-radius: 10px;
  background: #fbfdff;
  padding: 12px;
}

.info-item a:hover {
  color: var(--primary);
}

/* FOOTER */
.footer {
  position: relative;
  padding: 52px 0 20px;
  background: linear-gradient(180deg, #0e1a33 0%, #111827 100%);
  color: rgba(255, 255, 255, 0.92);
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  top: -120px;
  right: -80px;
  border-radius: 56% 44% 40% 60% / 52% 44% 56% 48%;
  background: rgba(14, 165, 233, 0.12);
}

.footer::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  left: -90px;
  bottom: -100px;
  border-radius: 50%;
  background: rgba(225, 29, 72, 0.1);
}

.footer-highlight,
.footer-container,
.footer-metrics,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-highlight {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 34px;
  padding: 20px 22px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.footer-kicker {
  margin-bottom: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-highlight h3 {
  font-size: 24px;
  line-height: 1.3;
  color: #fff;
}

.footer-cta {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  background: var(--gradient-main);
  white-space: nowrap;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 28px;
}

.footer-col h2 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #fff;
}

.footer-col h3 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #fff;
}

.footer-col p,
.footer-col a {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: 8px;
}

.footer-note {
  color: rgba(255, 255, 255, 0.62);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: #fff;
}

.footer-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.metric-box {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.metric-box strong {
  display: block;
  font-size: 24px;
  color: #fff;
  margin-bottom: 2px;
}

.metric-box span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.dev-credit {
  display: inline-block;
  margin-left: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.84);
}

.dev-brand {
  font-weight: 700;
  background: linear-gradient(135deg, #f43f5e 0%, #db2777 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
