:root {
  --primary: #4f46e5;
  --primary-dark: #3730a3;
  --secondary: #06b6d4;
  --accent: #f97316;

  --bg: #f7f9ff;
  --white: #ffffff;
  --soft: #eef3ff;
  --text: #172033;
  --muted: #64748b;
  --border: #dbe4f3;

  --shadow: 0 24px 70px rgba(30, 41, 59, 0.12);
  --shadow-soft: 0 16px 40px rgba(30, 41, 59, 0.08);

  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(79, 70, 229, 0.12), transparent 34%),
    radial-gradient(circle at top right, rgba(6, 182, 212, 0.14), transparent 30%),
    var(--bg);
  color: var(--text);
  line-height: 1.7;
}

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(219, 228, 243, 0.8);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.logo span span {
  color: var(--primary);
}

.logo-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 12px 28px rgba(79, 70, 229, 0.28);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

.main-nav a {
  transition: 0.25s ease;
}

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

.header-btn {
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 14px 30px rgba(79, 70, 229, 0.22);
}

/* Hero */

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 78px 0 70px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 42px;
}

.hero-content {
  order: 1;
}

.login-card {
  order: 2;
}

.hero-pill {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.online-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.14);
}

.hero-content h1 {
  max-width: 690px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.07em;
  margin-bottom: 24px;
}

.hero-content p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.primary-btn,
.secondary-btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.25s ease;
}

.primary-btn {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 18px 44px rgba(79, 70, 229, 0.25);
}

.secondary-btn {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--border);
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-3px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 560px;
  gap: 14px;
}

.hero-stats div {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(219, 228, 243, 0.85);
}

.hero-stats strong {
  display: block;
  font-size: 22px;
  color: var(--primary);
  line-height: 1.2;
}

.hero-stats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

/* Login Card */

.login-card {
  padding: 30px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.88)),
    radial-gradient(circle at top right, rgba(6,182,212,0.2), transparent 35%);
  border: 1px solid rgba(219, 228, 243, 0.95);
  box-shadow: var(--shadow);
}

.login-badge {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

.login-badge span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.login-card h2 {
  font-size: 30px;
  letter-spacing: -0.05em;
  margin-bottom: 8px;
}

.login-card p {
  color: var(--muted);
  margin-bottom: 22px;
}

.chat-login-form {
  display: grid;
  gap: 12px;
}

.chat-login-form label {
  font-size: 13px;
  font-weight: 800;
  color: #334155;
}

.chat-login-form input,
.chat-login-form select {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border-radius: 15px;
  border: 1px solid var(--border);
  background: #f8fbff;
  color: var(--text);
  outline: none;
  font-size: 15px;
  transition: 0.25s ease;
}

.chat-login-form input:focus,
.chat-login-form select:focus {
  border-color: rgba(79, 70, 229, 0.65);
  background: #fff;
  box-shadow: 0 0 0 5px rgba(79, 70, 229, 0.1);
}

.chat-login-form button {
  height: 56px;
  margin-top: 8px;
  border: 0;
  border-radius: 17px;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 18px 38px rgba(79, 70, 229, 0.28);
  transition: 0.25s ease;
}

.chat-login-form button:hover {
  transform: translateY(-2px);
}

.login-note {
  margin-top: 16px;
  padding: 14px;
  border-radius: 15px;
  background: #fff7ed;
  color: #9a3412;
  font-size: 13px;
  font-weight: 700;
}

/* Sections */

.features-section,
.rooms-section,
.faq-section {
  padding: 76px 0;
}

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

.section-heading span,
.mini-title {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.section-heading h2,
.applet-info h2,
.content-card h2,
.final-cta h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.06em;
  margin-bottom: 14px;
}

.section-heading p,
.applet-info p {
  color: var(--muted);
  font-size: 17px;
}

.features-grid,
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card,
.room-card,
.content-card,
.side-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(219, 228, 243, 0.92);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  padding: 28px;
  transition: 0.25s ease;
}

.feature-card:hover,
.room-card:hover {
  transform: translateY(-6px);
}

.feature-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(79,70,229,0.12), rgba(6,182,212,0.14));
  font-size: 26px;
  margin-bottom: 18px;
}

.feature-card h3,
.room-card h3,
.side-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.feature-card p,
.room-card p,
.content-card p,
.side-card li,
.faq-list p {
  color: var(--muted);
}

/* Applet */

.applet-section {
  padding: 76px 0;
  background: linear-gradient(180deg, transparent, rgba(238, 243, 255, 0.75), transparent);
}

.applet-wrapper {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 30px;
  align-items: center;
}

.applet-info ul {
  margin-top: 20px;
  list-style: none;
  display: grid;
  gap: 12px;
}

.applet-info li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
  font-weight: 700;
}

.applet-info li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.14);
  color: #16a34a;
  font-size: 12px;
}

.chat-applet-box {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.applet-topbar {
  height: 52px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border-bottom: 1px solid var(--border);
  background: #f8fbff;
}

.applet-topbar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.applet-topbar span:nth-child(1) {
  background: #fb7185;
}

.applet-topbar span:nth-child(2) {
  background: #facc15;
}

.applet-topbar span:nth-child(3) {
  background: #22c55e;
}

.applet-topbar strong {
  margin-left: 8px;
  font-size: 14px;
  color: var(--muted);
}

.applet-placeholder {
  min-height: 430px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 36px;
  background:
    linear-gradient(135deg, rgba(79,70,229,0.08), rgba(6,182,212,0.08)),
    repeating-linear-gradient(
      45deg,
      rgba(79,70,229,0.04),
      rgba(79,70,229,0.04) 10px,
      transparent 10px,
      transparent 20px
    );
}

.applet-placeholder h3 {
  font-size: 26px;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.applet-placeholder p {
  color: var(--muted);
}

/* Rooms */

.rooms-grid {
  grid-template-columns: repeat(4, 1fr);
}

.room-card {
  padding: 24px;
  transition: 0.25s ease;
}

.room-card span {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}

/* Content */

.content-section {
  padding: 76px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 26px;
  align-items: start;
}

.content-card {
  padding: 38px;
}

.content-card h3 {
  margin-top: 26px;
  margin-bottom: 8px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.content-card p + p {
  margin-top: 16px;
}

.side-card {
  position: sticky;
  top: 100px;
  padding: 26px;
}

.side-card ul {
  margin: 16px 0 22px;
  list-style: none;
  display: grid;
  gap: 12px;
}

.side-card li {
  padding-left: 24px;
  position: relative;
}

.side-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 24px;
  line-height: 1;
}

.side-btn {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-weight: 900;
}

/* FAQ */

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 900;
  list-style: none;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  color: var(--primary);
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  padding: 0 24px 22px;
}

/* CTA */

.final-cta {
  padding: 40px 0 86px;
}

.final-cta-inner {
  text-align: center;
  padding: 54px 28px;
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.28), transparent 30%),
    linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 30px 80px rgba(79, 70, 229, 0.25);
}

.final-cta p {
  max-width: 620px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.88);
}

.final-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  background: #fff;
  color: var(--primary);
  font-weight: 900;
}

/* Footer */

.site-footer {
  padding: 34px 0;
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-logo {
  display: inline-block;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}

.site-footer p {
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

/* Responsive */

@media (max-width: 980px) {
  .main-nav,
  .header-btn {
    display: none;
  }

  .hero-section {
    padding: 34px 0 60px;
  }

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

  .mobile-first {
    order: 1;
  }

  .hero-content {
    order: 2;
    text-align: center;
  }

  .hero-pill,
  .hero-actions {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats {
    margin: 0 auto;
  }

  .applet-wrapper,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .side-card {
    position: static;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .header-inner {
    height: 68px;
  }

  .logo {
    font-size: 19px;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
  }

  .login-card {
    padding: 22px;
    border-radius: 24px;
  }

  .login-card h2 {
    font-size: 26px;
  }

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

  .hero-content p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .features-section,
  .rooms-section,
  .faq-section,
  .applet-section,
  .content-section {
    padding: 54px 0;
  }

  .features-grid,
  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .content-card {
    padding: 24px;
  }

  .applet-placeholder {
    min-height: 320px;
    padding: 24px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.applet-image-box {
  position: relative;
  min-height: 430px;
  padding: 0;
  overflow: hidden;
  display: block;
  background: #ffffff;
}

.applet-illustration {
  width: 100%;
  height: 100%;
  min-height: 430px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.applet-image-content {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 420px;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(30, 41, 59, 0.14);
  text-align: left;
}

.applet-image-content h3 {
  margin-bottom: 6px;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--text);
}

.applet-image-content p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Applet iframe kullanacağın zaman */
.applet-placeholder iframe {
  width: 100%;
  min-height: 520px;
  display: block;
  border: 0;
}

/* Mobil uyum */
@media (max-width: 640px) {
  .applet-image-box {
    min-height: 320px;
  }

  .applet-illustration {
    min-height: 320px;
  }

  .applet-image-content {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
    padding: 16px;
    border-radius: 18px;
  }

  .applet-image-content h3 {
    font-size: 20px;
  }

  .applet-image-content p {
    font-size: 13px;
  }
}
/* Inner Pages */

.page-hero {
  position: relative;
  padding: 82px 0 58px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(79, 70, 229, 0.13), transparent 32%),
    radial-gradient(circle at top right, rgba(6, 182, 212, 0.15), transparent 34%);
}

.page-hero .container {
  max-width: 880px;
  text-align: center;
}

.page-hero span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(79, 70, 229, 0.08);
  border: 1px solid rgba(79, 70, 229, 0.12);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero h1 {
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.04;
  letter-spacing: -0.07em;
  margin-bottom: 18px;
}

.page-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}

/* Legal Pages */

.legal-section {
  padding: 64px 0 86px;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-block {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(219, 228, 243, 0.95);
  box-shadow: var(--shadow-soft);
}

.legal-block h2 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.legal-block p {
  color: var(--muted);
  margin-bottom: 12px;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-block ul {
  margin-top: 14px;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.legal-block li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.legal-block li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.13);
  color: #16a34a;
  font-size: 12px;
  font-weight: 900;
}

.legal-sidebar {
  position: sticky;
  top: 100px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.88)),
    radial-gradient(circle at top right, rgba(6,182,212,0.15), transparent 42%);
  border: 1px solid rgba(219, 228, 243, 0.95);
  box-shadow: var(--shadow);
}

.legal-sidebar h3 {
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.legal-sidebar p {
  color: var(--muted);
  margin-bottom: 18px;
}

.legal-sidebar ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 16px 0 20px;
}

.legal-sidebar li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-weight: 700;
}

.legal-sidebar li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--primary);
  font-size: 24px;
}

.legal-info-box {
  padding: 16px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: #f8fbff;
  border: 1px solid var(--border);
}

.legal-info-box strong {
  display: block;
  color: var(--text);
  font-size: 14px;
  margin-bottom: 4px;
}

.legal-info-box span {
  color: var(--muted);
  font-size: 14px;
}

/* Contact Page */

.contact-section {
  padding: 64px 0 60px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  align-items: start;
}

.contact-card,
.contact-info-box {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(219, 228, 243, 0.95);
  box-shadow: var(--shadow-soft);
}

.contact-card {
  padding: 34px;
  border-radius: var(--radius-xl);
}

.contact-card h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.06em;
  margin-bottom: 12px;
}

.contact-card p {
  color: var(--muted);
  margin-bottom: 26px;
}

.contact-form {
  display: grid;
  gap: 15px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-form label {
  display: block;
  margin-bottom: 7px;
  color: #334155;
  font-size: 13px;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: #f8fbff;
  color: var(--text);
  outline: none;
  border-radius: 15px;
  font-family: inherit;
  font-size: 15px;
  transition: 0.25s ease;
}

.contact-form input {
  height: 52px;
  padding: 0 16px;
}

.contact-form textarea {
  min-height: 170px;
  resize: vertical;
  padding: 15px 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(79, 70, 229, 0.65);
  background: #fff;
  box-shadow: 0 0 0 5px rgba(79, 70, 229, 0.1);
}

.contact-form button {
  height: 56px;
  border: 0;
  border-radius: 17px;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 18px 38px rgba(79, 70, 229, 0.25);
  transition: 0.25s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
}

.contact-side {
  display: grid;
  gap: 18px;
}

.contact-info-box {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.contact-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(79,70,229,0.12), rgba(6,182,212,0.14));
  font-size: 24px;
}

.contact-info-box h3 {
  margin-bottom: 8px;
  font-size: 21px;
  letter-spacing: -0.04em;
}

.contact-info-box p {
  color: var(--muted);
  margin-bottom: 12px;
}

.contact-info-box a {
  color: var(--primary);
  font-weight: 900;
}

.contact-faq {
  padding-top: 34px;
}

/* Inner Responsive */

@media (max-width: 980px) {
  .legal-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding: 54px 0 42px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .legal-section,
  .contact-section {
    padding: 42px 0 60px;
  }

  .legal-block,
  .contact-card,
  .legal-sidebar,
  .contact-info-box {
    padding: 22px;
    border-radius: 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}