:root {
  --bg: radial-gradient(circle at 16% 12%, #150c26 0%, #090916 38%, #101024 100%);
  --card-surface: radial-gradient(circle at top, #1e1632 0%, #0c0b16 55%, #050509 100%);
  --card-border: 1px solid rgba(255, 255, 255, 0.08);
  --card: var(--card-surface);
  --text: #f9fafb;
  --muted: #cfd5e1;
  --primary: #f4d03f;
  --accent: #2ecc71;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  --radius: 16px;
  --transition: all 0.25s ease;
  --glow-card-radius: 28px;
  --glow-card-shadow: 0 18px 45px rgba(0, 0, 0, 0.8);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background-color: #050509; /* mobilde fallback */
}

body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #050509;
  background-image: var(--bg);
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* Arka planda gezinen sarı/turkuaz lekeler */
.gradient-background {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  isolation: isolate;
  background: transparent;
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

.blur-base {
  position: absolute;
  width: 252px;
  height: 252px;
  border-radius: 50%;
  filter: blur(63px);
  opacity: 0.9;
  mix-blend-mode: screen;
}

.blur-yellow {
  background: radial-gradient(circle at 30% 30%,
    #ffeaa6 0%,
    #ffc957 30%,
    #ff8c3a 65%,
    transparent 100%);
  animation: floatYellow 26s ease-in-out infinite alternate;
}

.blur-green {
  background: radial-gradient(circle at 30% 30%,
    #c4fff1 0%,
    #59f0bd 25%,
    #00c8ef 60%,
    transparent 100%);
  animation: floatGreen 30s ease-in-out infinite alternate;
}

@media (max-width: 640px) {
  .blur-base {
    width: 130px;
    height: 130px;
    filter: blur(40px);
    opacity: 0.78;
  }

  @keyframes floatYellow {
    0%   { transform: translate(-10vw, 32vh) scale(0.76); }
    30%  { transform: translate(12vw, -4vh) scale(0.8); }
    60%  { transform: translate(6vw, 24vh) scale(0.78); }
    100% { transform: translate(20vw, 4vh) scale(0.74); }
  }

  @keyframes floatGreen {
    0%   { transform: translate(30vw, 42vh) scale(0.75); }
    50%  { transform: translate(12vw, 6vh) scale(0.82); }
    100% { transform: translate(44vw, -8vh) scale(0.7); }
  }
}

@keyframes floatYellow {
  0%   { transform: translate(-14vw, 46vh) scale(0.94); }
  30%  { transform: translate(18vw, -6vh) scale(1.04); }
  60%  { transform: translate(6vw, 38vh) scale(0.98); }
  100% { transform: translate(28vw, 8vh) scale(0.92); }
}

@keyframes floatGreen {
  0%   { transform: translate(46vw, 58vh) scale(0.95); }
  50%  { transform: translate(20vw, 10vh) scale(1.08); }
  100% { transform: translate(62vw, -12vh) scale(0.88); }
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(5, 8, 22, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

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

.logo-img {
  height: 35px;
  width: auto;
  display: block;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #000;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 10px;
  transition: var(--transition);
  font-size: 16px;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-desktop,
.nav-all {
  display: inline-flex;
}

.hero {
  display: none;
}

.hero-media {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--glow-card-radius);
  padding: 12px;
  box-shadow: var(--shadow);
}

.video-placeholder {
  width: 100%;
  min-height: 180px;
  height: 100%;
  border: none;
  border-radius: calc(var(--glow-card-radius) - 6px);
  background: #0f172a;
  object-fit: cover;
}

.hero-copy .eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin: 8px 0;
}

.hero h1 {
  font-size: 1.9rem;
  margin: 0 0 12px;
}

.subtitle {
  color: var(--muted);
  margin: 0 0 16px;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Glow hero ve kart çerçeve animasyonu */
.glow-hero {
  position: relative;
  padding: 80px 0 50px;
  isolation: isolate;
  z-index: 1;
}

.page-wrapper {
  width: min(1180px, 94%);
  margin: 0 auto;
  min-height: 70vh;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 20px 0;
}

.hero-copy {
  max-width: 520px;
}

.hero-copy h1 {
  font-size: 2.2rem;
  margin: 6px 0 10px;
}

.hero-copy .subtitle {
  margin: 0 0 18px;
  color: #d7d9e5;
}

.hero-bullets {
  display: grid;
  gap: 10px;
  margin: 14px 0 18px;
  color: var(--muted);
  list-style: none;
  padding: 0;
  row-gap: 10px;
}

.hero-bullets li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
}

.hero-bullets li::before {
  content: "✦";
  color: #ffb4e2;
  font-size: 0.9rem;
}

@media (min-width: 641px) {
  .hero-bullets + * {
    margin-top: 5px;
  }
}

.card-glow {
  position: relative;
  border-radius: var(--glow-card-radius);
  isolation: isolate;
  --glow-gradient: conic-gradient(
    from 0deg,
    #ff8cf7,
    #b07cff,
    #7a5dff,
    #ff8cf7
  );
}

.card-glow:not(.card) {
  padding: 2px;
  display: inline-block;
  width: auto;
  max-width: 100%;
  justify-self: center;
  box-sizing: border-box;
}

/* Modal glow wrapper should not clamp modal width */
#intent-glow-wrapper {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: min(520px, 94vw);
  max-width: 100%;
  padding: 6px;
  border-radius: calc(var(--glow-card-radius) + 2px);
  box-sizing: border-box;
  margin: 0 auto;
  position: relative;
  isolation: isolate;
  overflow: visible;
}

@media (max-width: 640px) {
  #intent-glow-wrapper {
    display: block;
    width: 100%;
    max-width: calc(100vw - 12px);
    padding: 4px;
    border-radius: calc(var(--glow-card-radius) + 2px);
    box-sizing: border-box;
  }
}

.card-glow::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: var(--glow-gradient);
  filter: blur(5px);
  opacity: 0.8;
  z-index: -1;
  background-size: 200% 200%;
  animation: orbitGlow 6s linear infinite;
}

#intent-glow-wrapper.card-glow::before {
  inset: -8px;
  filter: blur(14px);
  opacity: 0.82;
  background-size: 220% 220%;
  background-position: 50% 50%;
  z-index: 0;
  animation: orbitGlow 4.5s linear infinite;
}

#intent-glow-wrapper .intent-glow-fallback {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.card.card-glow {
  overflow: visible;
}

@keyframes orbitGlow {
  0%   { background-position: 0% 0%; }
  25%  { background-position: 100% 0%; }
  50%  { background-position: 100% 100%; }
  75%  { background-position: 0% 100%; }
  100% { background-position: 0% 0%; }
}

@media (max-width: 640px) {
  .card-glow::before {
    inset: -1px;
    filter: blur(4px);
    opacity: 0.72;
    background-size: 180% 180%;
  }

  #intent-glow-wrapper.card-glow::before {
    inset: -6px;
    filter: blur(10px);
    opacity: 0.78;
    background-size: 200% 200%;
    background-position: 50% 50%;
    animation: orbitGlow 4s linear infinite;
  }
}

.card-inner {
  background: var(--card-surface);
  border-radius: var(--glow-card-radius);
  padding: 32px 28px 28px;
  width: 100%;
  max-width: 410px;
  box-shadow:
    var(--glow-card-shadow),
    0 0 40px rgba(164, 120, 255, 0.35);
  border: var(--card-border);
  position: relative;
  z-index: 1;
}

.card-inner h1 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.card-inner p {
  font-size: 0.95rem;
  color: #d8c9ff;
  line-height: 1.55;
}

.cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffb4e2, #f6e2ff, #bfa8ff);
  color: #20122f;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.75);
}

@media (max-width: 768px) {
  .glow-hero {
    padding: 60px 0 36px;
  }

  .page-wrapper {
    min-height: 60vh;
    gap: 22px;
  }

  .hero-copy h1 {
    font-size: 1.9rem;
  }

  .card-inner {
    padding: 28px 22px 24px;
  }
}

.section-header {
  text-align: center;
  padding: 12px 0 12px;
}

.section-header h2 {
  margin: 0 0 8px;
  font-size: 1.4rem;
}

.section-header p {
  margin: 0;
  color: var(--muted);
}

.section-header.no-margin {
  margin-bottom: 0 !important;
}

.widgets,
.why,
.customers,
.partners,
.faq,
.blog,
.contact {
  padding: 20px 0;
  background: transparent;
}

.scroll-indicator {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.4rem;
  color: rgba(249, 250, 251, 0.7);
  animation: scrollBounce 1.6s infinite ease-in-out;
  z-index: 8;
}

@keyframes scrollBounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -8px); }
}

.scroll-indicator.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
  .scroll-indicator {
    bottom: 90px;
  }
}

@media (min-width: 769px) {
  .scroll-indicator {
    display: none;
  }
}

.solo {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 0 64px;
}

.solo-logos .section-header {
  padding-bottom: 8px;
}

.solo-logos .eyebrow-small {
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

.hero-widgets-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.hero-widgets-grid .hero-media {
  height: 100%;
}

.hero-widgets-grid .hero-media .video-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow-small {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(249, 250, 251, 0.7);
}

.cards-grid {
  display: grid;
  gap: 16px;
}

.card {
  background: var(--card-surface);
  border-radius: var(--glow-card-radius);
  border: var(--card-border);
  padding: 24px 22px;
  /* box-shadow: var(--glow-card-shadow), 0 0 34px rgba(164, 120, 255, 0.28); */
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.85), 0 0 42px rgba(164, 120, 255, 0.4);
}

.card-top h3 {
  margin: 0 0 8px;
}

.card-top p {
  margin: 0;
  color: var(--muted);
}

.widgets .card {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 24px 22px;
}

.card-primary {
  border: 1px solid #2ecc71;
}

.card-secondary {
  border: 1px solid #f4d03f;
}

.card-primary.card-glow {
  --glow-gradient: conic-gradient(
    from 0deg,
    #7dffb5,
    #45efb0,
    #00d2ff,
    #7dffb5
  );
}

.card-secondary.card-glow {
  --glow-gradient: conic-gradient(
    from 0deg,
    #ffb347,
    #ff7a42,
    #ff4d5a,
    #ffb347
  );
}

.card-glow-green {
  --glow-gradient: conic-gradient(from 0deg, #ace5c8, #19c488, #1bffe3, #8dddb4);
}

.card-glow-yellow {
  --glow-gradient: conic-gradient(from 0deg, #f8e5a8, #ffb347, #f16d35, #ffe79b);
}

.card-glow-green::before,
.card-glow-yellow::before {
  inset: -2px;
  filter: blur(4px);
  opacity: 0.78;
  background-size: 190% 190%;
}

.card-primary h3 {
  color: #2ecc71;
}

.card-secondary h3 {
  color: #f4d03f;
}

.widgets .cards-grid .card:first-child h3 {
  color: #2ecc71;
}

.widgets .cards-grid .card:nth-child(2) h3 {
  color: #f4d03f;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0px 0 10px;
  display: grid;
  gap: 0px;
  color: #e3e7ee;
}

.feature-list li::before {
  content: '✦';
  color: #2ecc71;
  font-weight: 700;
  font-size: 0.9rem;
  margin-right: 5px;
}

.card-secondary .feature-list li::before {
  color: #f4d03f;
}

@media (max-width: 640px) {
  .feature-list li::before {
    content: '• ';
    font-size: 1rem;
    margin-right: 0px;
  }
}

.card.linkable {
  cursor: pointer;
}

.card-actions {
  /* display: flex; */
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  text-align: center;
}

.feature {
  text-align: left;
  background: rgb(27 123 78 / 18%);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
}

.icon-circle {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: transparent;
  border: 3px solid #ffb300;
  color: #ffb300;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
  margin-bottom: 12px;
}

.icon-circle svg {
  width: 20px;
  height: 20px;
}

.icon-circle.icon-panel,
.icon-circle.icon-electric {
  font-size: 1.05rem;
  box-shadow: 0 0 10px rgba(255, 211, 79, 0.25);
}

.customers .cards-row,
.logos-row,
.partners .logos-row {
  gap: 12px;
}

.horizontal-scroll {
  display: flex;
  overflow-x: auto;
  padding: 4px 0 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
}

.horizontal-scroll > * {
  flex: 0 0 auto;
}

.horizontal-scroll::-webkit-scrollbar {
  display: none;
}

.slider-row {
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.slider-row > .card {
  scroll-snap-align: start;
}

.blog-row {
  gap: 14px;
  column-gap: 14px;
}

.blog-row .card {
  flex: 0 0 260px;
}

.blog-row {
  gap: 16px;
  padding: 4px 0 20px;
}

.blog-card {
  display: grid;
  gap: 12px;
  border-radius: var(--glow-card-radius);
  min-width: 260px;
  max-width: 260px;
  cursor: pointer;
  height: auto;
  pointer-events: auto;
}

.blog-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 120;
}

.blog-modal-overlay[hidden] {
  display: none !important;
}

.blog-modal {
  background: var(--card-surface);
  border-radius: var(--glow-card-radius);
  padding: 24px 22px;
  width: min(720px, 92vw);
  max-height: 80vh;
  color: #f9fafb;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--glow-card-shadow), 0 18px 48px rgba(0, 0, 0, 0.7);
  position: relative;
  overflow-y: auto;
  z-index: 1;
}

.blog-modal h3 {
  margin: 8px 0 12px;
  font-size: 1.3rem;
}

.blog-modal p {
  margin: 0 0 12px;
  color: #d8d9e3;
  line-height: 1.55;
}

.blog-category {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffb347;
  font-weight: 700;
  font-size: 0.85rem;
}

.blog-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: transparent;
  border: none;
  color: #f4d03f;
  font-size: 30px;
  cursor: pointer;
}

.slider-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.slider-controls {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-left: auto;
}

.slider-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #f9fafb;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.video-card {
  min-width: 240px;
  display: grid;
  gap: 10px;
}

.thumb {
  height: 120px;
  border-radius: calc(var(--glow-card-radius) - 8px);
  background: linear-gradient(135deg, #111827, #0b1224);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--muted);
}

.logo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 600;
  border: none;
  flex: 0 0 auto;
}

.partner-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
  background: transparent;
  margin-right: 12px;
}

.partner-logo-sm {
  height: 25px;
}

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

.faq-item {
  background: var(--card-surface);
  border-radius: var(--glow-card-radius);
  box-shadow: var(--glow-card-shadow), 0 0 34px rgba(164, 120, 255, 0.24);
  border: var(--card-border);
  overflow: hidden;
  width: 100%;
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  color: #22c55e;
}

.faq-icon {
  transition: var(--transition);
  color: #f9fafb;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 18px 16px;
  color: #f9fafb;
}

.blog-card {
  display: grid;
  gap: 12px;
  border-radius: var(--glow-card-radius);
  min-width: 260px;
  cursor: pointer;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(46, 204, 113, 0.12);
  color: #158f53;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1;
}

.contact-grid {
  display: grid;
}

@media (min-width: 900px) {
  #contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  #contact-form label:nth-child(1),
  #contact-form label:nth-child(2),
  #contact-form label:nth-child(3),
  #contact-form label:nth-child(4) {
    margin-bottom: 0;
  }

  #contact-form label:nth-child(5) {
    grid-column: 1 / -1;
  }

  #contact-form .btn-submit-outline,
  #contact-form .form-success {
    grid-column: 1 / -1;
  }

  #contact-form .btn-submit-outline {
    width: calc(50% - 7px);
    min-width: 200px;
    max-width: 320px;
    justify-self: end;
  }
}

.form-card label,
.form-card fieldset {
  display: grid;
  gap: 8px;
  color: #e5e7eb;
  margin-bottom: 12px;
  font-weight: 600;
}

.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: #ffffff;
  font-family: inherit;
  BORDER: 1PX solid;
}

.form-card textarea {
  min-height: 70px;
}

.form-card fieldset {
  border: none;
  padding: 12px 14px;
  border-radius: 0;
}

.form-card legend {
  padding: 0 6px;
}

.radio {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text);
}

.form-success {
  margin: 8px 0 0;
  color: var(--accent);
  font-weight: 700;
}

input,
textarea,
select {
  background: transparent;
  color: #ffffff;
  border: none;
  outline: none;
}

::placeholder {
  color: rgba(249, 250, 251, 0.6);
}

.form-card {
  background: var(--card-surface);
  box-shadow: var(--glow-card-shadow), 0 0 34px rgba(164, 120, 255, 0.28);
  border: var(--card-border);
  border-radius: var(--glow-card-radius);
}

.site-footer {
  background: linear-gradient(180deg, #0d0a14, #05030b);
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #f9fafb;
}

.footer-grid {
  display: grid;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-logo-center {
  text-align: center;
  margin-top: 12px;
}

.footer-logo-center a {
  display: inline-flex;
  transition: var(--transition);
}

.footer-logo-center a:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Footer logosu için özel boyut ve boşluk (header logosunu etkilemez) */
.footer-logo-center .logo-img {
  height: 35px;
  width: auto;
  margin-top: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #000;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  filter: brightness(0.95);
  transform: translateY(-1px);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: #f9fafb;
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-green {
  background: transparent;
  color: #2ecc71;
  border: 2px solid #2ecc71;
}

.btn-yellow {
  background: transparent;
  color: #fbc02d;
  border: 2px solid #fbc02d;
}

.btn-outline-green {
  background: transparent;
  color: #2ecc71;
  border: 2px solid #2ecc71;
}

.btn-green:hover,
.btn-yellow:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.btn-outline-green:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  background: rgba(46, 204, 113, 0.12);
}

.btn-yellow:hover {
  background: rgba(252, 192, 45, 0.14);
}

.btn-green:hover {
  background: rgba(46, 204, 113, 0.12);
}

.widgets .btn {
  text-transform: uppercase;
  border-radius: 12px;
  /* border: none; */
  width: 100%;
}

.btn-submit-outline {
  width: 100%;
  border-radius: 12px;
  background: rgba(244, 208, 63, 0.08);
  border: 1px solid #f4d03f;
  color: #f4d03f;
  text-transform: uppercase;
  box-shadow: none;
  padding: 12px 14px;
}

.btn-submit-outline:hover {
  background: rgba(244, 208, 63, 0.2);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.modal-backdrop[hidden] {
  display: none;
}

.modal-backdrop:not([hidden]) {
  display: flex;
}

.modal {
  width: min(700px, 92%);
  max-height: 80vh;
  background: #050816;
  border: 1px solid #f4d03f;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.75);
  display: flex;
  flex-direction: column;
  border-radius: 0;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #f4d03f;
  color: #050816;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.modal-header h3 {
  margin: 0;
  font-size: 0.98rem;
}

.modal-close {
  background: transparent;
  border: none;
  font-size: 30px;
  font-weight: 700;
  cursor: pointer;
  color: #050816;
  padding: 0 4px;
  line-height: 1;
}

.modal-close:hover {
  opacity: 0.8;
}

.modal-body {
  padding: 16px;
  overflow-y: auto;
  color: #f9fafb;
  font-size: 0.92rem;
}

.modal-body p {
  margin: 0 0 10px;
  color: #e5e7eb;
}

.intent-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.intent-modal-overlay[hidden] {
  display: none !important;
}

.intent-modal {
  position: relative;
  background: var(--card-surface);
  color: #f9fafb;
  padding: 26px 24px;
  width: min(500px, 92vw);
  max-width: 500px;
  border-radius: var(--glow-card-radius);
  box-shadow: var(--glow-card-shadow), 0 18px 48px rgba(0, 0, 0, 0.7);
  border: var(--card-border);
  overflow: visible;
  isolation: isolate;
  z-index: 1;
}

.intent-modal h2 {
  margin: 0 0 6px;
  font-size: 1.2rem;
}

.intent-modal p {
  margin: 0 0 16px;
  color: var(--muted);
}

.intent-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: transparent;
  border: none;
  color: #f4d03f;
  font-size: 33px;
  cursor: pointer;
}

.intent-modal.intent-green .intent-modal-close {
  color: #2ecc71;
}

.intent-form {
  display: grid;
  gap: 10px;
}

.intent-form label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
}

.intent-form input,
.intent-form textarea {
  padding: 10px 12px;
  background: transparent;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  color: #f9fafb;
  font-family: inherit;
  font-size: 0.9rem;
}

.intent-form input:focus,
.intent-form textarea:focus {
  outline: none;
  border-color: #f4d03f;
}

.intent-modal.intent-green .intent-form input:focus,
.intent-modal.intent-green .intent-form textarea:focus {
  border-color: #2ecc71;
}

.intent-submit-btn {
  width: 100%;
  margin-top: 8px;
  border-radius: 10px;
  border: 1px solid #f4d03f;
  background: transparent;
  color: #f4d03f;
  box-shadow: none;
}

@media (max-width: 640px) {
  input,
  textarea,
  select,
  button,
  .intent-form input,
  .intent-form textarea {
    font-size: 16px;
  }
}

.intent-submit-btn:hover {
  background: rgba(244, 208, 63, 0.08);
  transform: none;
}

.intent-modal.intent-green .intent-submit-btn {
  border-color: #2ecc71;
  color: #2ecc71;
  background: rgba(46, 204, 113, 0.08);
}

.intent-modal.intent-green .intent-submit-btn:hover {
  background: rgba(46, 204, 113, 0.14);
}

.intent-success {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--accent);
}

@media (max-width: 600px) {
  .intent-modal {
    margin: 0 8px;
  }
}

.status-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 60;
}

.status-modal-overlay[hidden] {
  display: none !important;
}

.status-modal {
  background: rgba(15, 23, 42, 0.96);
  color: #f9fafb;
  padding: 20px 18px;
  width: min(420px, 92%);
  border: 1px solid #f4d03f;
  box-shadow: var(--shadow);
  border-radius: 0;
  position: relative;
  isolation: isolate;
  overflow: visible;
  --status-glow-gradient: conic-gradient(
    from 0deg,
    #bfa8ff,
    #7a5dff,
    #ff8cf7,
    #bfa8ff
  );
}

/* Daha hızlı modal glow animasyonu */
#intent-glow-wrapper.card-glow::before {
  animation: orbitGlow 6s linear infinite;
}

.status-modal::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 6px;
  background: var(--status-glow-gradient);
  background-size: 240% 240%;
  filter: blur(12px);
  opacity: 0.7;
  z-index: -1;
  animation: orbitGlow 9s linear infinite;
}

.status-modal::after {
  content: '';
  position: absolute;
  inset: 0;                  /* istersen 3–4px içeri alabilirsin */
  border-radius: 6px;
  background: rgb(12 3 24 / 95%);  /* siyaha yakın mor */
  z-index: -1;               /* glow'un üstünde, içeriğin altında */
}

.status-spinner {
  display: none;
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255, 255, 255, 0.25);
  border-top-color: #f4d03f;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-left: auto;
}

.status-modal.loading .status-spinner {
  display: inline-block;
}

.status-modal.loading .status-actions {
  visibility: hidden;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.status-modal h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.status-modal p {
  margin: 0 0 14px;
  color: #e5e7eb;
}

.status-detail {
  font-size: 0.84rem;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.04);
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 14px;
  white-space: pre-wrap;
}

.status-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: none;
  color: #f4d03f;
  font-size: 24px;
  cursor: pointer;
}

.status-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.status-cancel,
.status-start {
  border: 1px solid #f4d03f;
  color: #f4d03f;
  background: transparent;
  border-radius: 10px;
  box-shadow: none;
  padding: 10px 14px;
}

.status-start {
  border-color: #2ecc71;
  color: #2ecc71;
}

.status-cancel:hover,
.status-start:hover {
  background: rgba(244, 208, 63, 0.1);
}

@media (max-width: 640px) {
  .modal {
    max-height: 85vh;
  }
}

@media (max-width: 417px) {
  .widgets .feature-list {
    font-size: 0.8rem;
  }

  .widgets .card h3 {
    font-size: 15.2px;
  }
}

/* iPhone 12 Pro (≈390px genişlik) için biraz daha sıkı fontlar */
@media (max-width: 390px) {
  .widgets .feature-list {
    font-size: 0.76rem;
  }

  .widgets .card h3 {
    font-size: 14.6px;
  }
}

@media (min-width: 640px) {
  .hero-content {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .cards-grid.two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1.1fr;
  }
}

@media (min-width: 900px) {
  .hero h1 {
    font-size: 2.4rem;
  }

  .cards-grid.three-col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: auto 1fr auto;
    column-gap: 16px;
  }
}

@media (max-width: 768px) {
  .hero-widgets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "video video"
      "card1 card2";
    gap: 16px;
  }

  .hero-widgets-grid .hero-media {
    grid-area: video;
  }

  .hero-widgets-grid .card-primary {
    grid-area: card1;
  }

  .hero-widgets-grid .card-secondary {
    grid-area: card2;
  }

  .section-header {
    text-align: center;
    margin-bottom: 16px;
  }

  .widgets .card h3 {
    font-size: 15.8px;
    /* font-weight: bold; */
  }

  .widgets .feature-list {
    font-size: 0.80rem;
  }

  .eyebrow-small {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
  }

  .widgets .btn {
    padding: 10px 10px;
    font-size: 12px;
    font-weight: bold;
  }

  .logo-text {
    display: none;
  }

  .nav-links a {
    font-size: 16px;
  }

  .widgets {
    padding: 0;
  }

  .nav-desktop {
    display: none;
  }

  .logo-img {
    height: 40px;
  }
}



@media (max-width: 390px) {
.widgets .card h3 {
    font-size: 15.2px;
    /* font-weight: bold; */
  }

    .widgets .feature-list {
        font-size: 0.76rem;
    }
}@media (max-width: 430px) {
.widgets .card h3 {
    font-size: 16px;
    /* font-weight: bold; */
  }

    .widgets .feature-list {
        font-size: 0.88rem;
    }
}
@media (max-width: 403px) {
.widgets .card h3 {
    font-size: 15.7px;
    /* font-weight: bold; */
  }

    .widgets .feature-list {
        font-size: 0.85rem;
    }
}
