:root {
  --navy: #0d083d;
  --navy2: #17105a;
  --navy3: #1f1578;
  --cream: #fff3e8;
  --cream2: #fffaf5;
  --orange: #f2a43a;
  --orange2: #ff8f4d;
  --gold: #ffd479;
  --lav: #d9d1ff;
  --ink: #171523;
  --muted: #706d79;
  --line: rgba(13, 8, 61, .1);
  --ease: cubic-bezier(.16, .84, .32, 1);
  --ease-soft: cubic-bezier(.22, .8, .28, 1);
}

* { box-sizing: border-box }

html { scroll-behavior: smooth }

body {
  margin: 0;
  font-family: Manrope, system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream2);
  overflow-x: hidden;
  cursor: default;
}

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

/* ===================== ACCESSIBILITY: SKIP LINK & FOCUS ===================== */
.skip-link {
  position: fixed; top: -60px; left: 12px; z-index: 5000;
  background: var(--navy); color: #fff; padding: 12px 20px;
  border-radius: 10px; font-size: 13px; font-weight: 800;
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 12px; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible, summary:focus-visible, [tabindex]:focus-visible {
  outline: 2.5px solid var(--orange);
  outline-offset: 3px;
  border-radius: 6px;
}

.hero h1 em { font-family: "Fraunces", serif; }
.section-head h2 i, .use h2 i, .corp-copy h2 i, .contact-copy h2 i { font-style: normal; font-family: inherit; }

.shell { width: min(1180px, calc(100% - 44px)); margin: auto; position: relative; }

/* ===================== PRELOADER ===================== */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 22px;
  transition: opacity .7s var(--ease), visibility .7s var(--ease);
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-mark { width: 92px; animation: pulseMark 1.4s ease-in-out infinite; }
.preloader-mark img { width: 100%; height: auto; filter: brightness(0) invert(1); }
@keyframes pulseMark { 0%,100%{ transform: scale(1); opacity:.85 } 50%{ transform: scale(1.08); opacity:1 } }
.preloader-bar { width: 140px; height: 2px; background: rgba(255,255,255,.15); border-radius: 2px; overflow: hidden; }
.preloader-bar span { display:block; height:100%; width:0%; background: linear-gradient(90deg,var(--orange),var(--gold)); animation: loadBar 1.6s var(--ease) forwards; }
@keyframes loadBar { to { width: 100% } }
.preloader-gift { width: 26px; }
.preloader-gift svg { width: 100%; height: 100%; filter: drop-shadow(0 4px 6px rgba(0,0,0,.3)); animation: giftBounce 1s ease-in-out infinite; }
@keyframes giftBounce { 0%,100% { transform: translateY(0) rotate(0deg) } 50% { transform: translateY(-9px) rotate(-8deg) } }
@media (prefers-reduced-motion: reduce) { .preloader-gift svg { animation: none } }

/* ===================== SCROLL PROGRESS RIBBON ===================== */
.progress-ribbon {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 1200;
  background: transparent; pointer-events: none;
}
.progress-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transition: width .08s linear;
}
.progress-bow {
  position: absolute; top: -8px; transform: translateX(-50%);
  font-size: 13px; color: var(--orange); left: 0%;
  transition: left .08s linear;
  filter: drop-shadow(0 2px 4px rgba(242,164,58,.5));
}

/* ===================== CUSTOM CURSOR ===================== */
.cursor-dot, .cursor-ring { position: fixed; top:0; left:0; pointer-events:none; z-index: 3000; border-radius: 50%; transform: translate(-50%,-50%); }
.cursor-dot { width: 6px; height: 6px; background: var(--orange); transition: transform .15s var(--ease-soft), opacity .2s; }
.cursor-ring { width: 34px; height: 34px; border: 1.5px solid rgba(242,164,58,.55); transition: transform .18s var(--ease-soft), width .25s, height .25s, opacity .2s, border-color .25s; }
.cursor-ring.grow { width: 58px; height: 58px; border-color: var(--orange); background: rgba(242,164,58,.08); }
@media (hover:none), (pointer:coarse) { .cursor-dot, .cursor-ring { display:none } }

/* ===================== MESH BACKGROUND ===================== */
.mesh-bg { position: absolute; inset: 0; overflow: visible; z-index: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; animation: drift 22s ease-in-out infinite; }
.b1 { width: 460px; height: 460px; background: radial-gradient(circle, #ffd9a0, transparent 70%); top: -120px; right: -60px; }
.b2 { width: 380px; height: 380px; background: radial-gradient(circle, #d9d1ff, transparent 70%); bottom: -140px; left: -80px; animation-delay: -6s; }
.b3 { width: 300px; height: 300px; background: radial-gradient(circle, #ffb98a, transparent 70%); top: 40%; left: 30%; animation-delay: -12s; opacity: .35; }
.b4 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(242,164,58,.35), transparent 70%); top: -180px; left: 50%; transform: translateX(-50%); }
.b5 { width: 480px; height: 480px; background: radial-gradient(circle, rgba(217,209,255,.28), transparent 70%); bottom: -160px; right: -60px; }
.mesh-bg.dark .blob { opacity: .3; }
@keyframes drift { 0%,100% { transform: translate(0,0) scale(1) } 50% { transform: translate(30px,-25px) scale(1.08) } }
@media (prefers-reduced-motion: reduce) { .blob { animation: none } }

/* ===================== HEADER ===================== */
.header {
  width: 100%; max-width: none; height: auto; margin: 0;
  position: sticky; top: 0; z-index: 1150;
  background: rgba(255, 250, 245, .9);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s var(--ease);
}
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; transition: min-height .25s var(--ease); }
.header.is-sticky { background: rgba(255, 250, 245, .82); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom-color: rgba(13,8,61,.07); box-shadow: 0 10px 30px rgba(13,8,61,.07); }
.header.is-sticky .header-inner { min-height: 70px }
.logo img { width: 126px; height: auto; transition: width .25s var(--ease) }
.header.is-sticky .logo img { width: 112px }
.header nav { display: flex; gap: 30px; font-size: 13px; font-weight: 700; color: #565261 }
.header nav a { position: relative; padding: 10px 0; transition: color .2s }
.header nav a:hover { color: var(--navy) }
.header nav a::after { content: ""; position: absolute; left: 50%; right: 50%; bottom: 1px; height: 2px; border-radius: 2px; background: var(--orange); transition: left .25s var(--ease), right .25s var(--ease) }
.header nav a.active { color: var(--navy) }
.header nav a.active::after { left: 0; right: 0 }

.app-btn, .primary, .light-btn { background: var(--navy); color: #fff; border-radius: 999px; padding: 14px 21px; font-size: 13px; font-weight: 800; display: inline-flex; align-items: center; }
.app-btn span { margin-left: 8px; transition: transform .25s var(--ease) }
.app-btn:hover span { transform: translate(2px,-2px) }

/* ===================== HEADER ACTIONS / MOBILE MENU ===================== */
.header-actions { display: flex; align-items: center; gap: 14px; }

.menu-toggle {
  display: none; width: 42px; height: 42px; border-radius: 12px; border: 1px solid rgba(13,8,61,.14);
  background: #fff; cursor: pointer; padding: 0; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  position: relative; z-index: 1200;
}
.menu-toggle span { display: block; width: 18px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; top: 0; right: 0; height: 100vh; height: 100dvh; width: min(320px, 84vw);
  background: var(--cream2); z-index: 1100; padding: 100px 30px 30px;
  flex-direction: column; gap: 34px; justify-content: space-between;
  box-shadow: -24px 0 60px rgba(13,8,61,.18);
  transform: translateX(100%); transition: transform .38s var(--ease);
}
.mobile-nav nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav nav a {
  font-size: 20px; font-weight: 800; color: var(--navy);
  padding: 14px 4px; border-bottom: 1px solid rgba(13,8,61,.08);
}
.mobile-nav .mobile-app-btn { justify-content: center; width: 100%; }
.mobile-nav nav a.active { color: var(--orange); }
.mobile-nav.open { transform: translateX(0); }

.nav-scrim {
  display: none; position: fixed; inset: 0; z-index: 1050;
  background: rgba(13,8,61,.4); opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease);
}
.nav-scrim.open { opacity: 1; pointer-events: auto; }

body.nav-open { overflow: hidden; }

/* Magnetic buttons */
.magnetic { transition: transform .25s var(--ease-soft), box-shadow .25s var(--ease-soft); will-change: transform; }
.magnetic:hover { box-shadow: 0 14px 34px rgba(13,8,61,.18); }

section[id] { scroll-margin-top: 90px }

/* ===================== HERO ===================== */
.hero { min-height: 750px; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; padding: 60px 0 100px; position: relative; }

.tag, .section-head>span, .kicker, .corp-copy>span, .download>div>span { font-size: 11px; font-weight: 800; letter-spacing: .18em; color: var(--navy) }

.hero h1 { font-size: 80px; line-height: 1; letter-spacing: -.07em; color: var(--navy); margin: 22px 0 28px; }
.hero h1 em { font-style: italic; font-weight: 500; color: var(--orange); letter-spacing: normal; }
.section-head h2 i, .use h2 i, .corp-copy h2 i, .contact-copy h2 i { color: var(--orange); font-weight: inherit }

.hero-copy>p { max-width:580px; font-size:17px; line-height:1.75; color:var(--muted)}
@media(max-width:600px){.hero-copy>p{max-width:100%;}}

.hero-actions { display: flex; align-items: center; gap: 25px; margin-top: 32px }
.primary { padding: 16px 25px; position: relative; overflow: hidden; }
.primary::before { content:""; position:absolute; inset:0; background: linear-gradient(120deg, var(--orange2), var(--orange)); opacity:0; transition: opacity .3s; }
.primary:hover::before { opacity: 1 }
.primary span, .primary { position: relative; z-index:1 }

.link { font-size: 13px; font-weight: 800; color: var(--navy); display: inline-flex; align-items: center; }
.link span { margin-left: 8px; transition: transform .25s var(--ease) }
.link:hover span { transform: translateY(4px) }

.safe { display: flex; gap: 12px; margin-top: 38px; max-width: 500px; padding-top: 24px; border-top: 1px solid rgba(13,8,61,.1) }
.safe>span { width: 27px; height: 27px; border-radius: 50%; display: grid; place-items: center; background: #e5f4e8; color: #31844b; font-size: 12px }
.safe strong, .safe small { display: block }
.safe strong { font-size: 12px }
.safe small { font-size: 10px; color: #8a8792; margin-top: 4px; line-height: 1.5 }

.hero-art { height: 590px; position: relative; display: grid; place-items: center; perspective: 1400px; overflow:hidden; }
.glow { position: absolute; width: 470px; height: 470px; border-radius: 50%; background: radial-gradient(circle, #f8d29a 0, #ffead0 32%, rgba(255,243,232,0) 70%); filter: blur(4px); animation: glowPulse 6s ease-in-out infinite; }
@keyframes glowPulse { 50% { transform: scale(1.06); opacity:.85 } }

.orbit-ring { position: absolute; border: 1px dashed rgba(13,8,61,.14); border-radius: 50%; }
.r1 { width: 500px; height: 500px; animation: spin 40s linear infinite; }
.r2 { width: 560px; height: 560px; animation: spin 60s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg) } }

.sparkle { position: absolute; color: var(--orange); font-size: 16px; animation: twinkle 3s ease-in-out infinite; }
.s1 { top: 10%; left: 4%; animation-delay: 0s }
.s2 { bottom: 16%; right: 2%; animation-delay: -1s; font-size: 12px }
.s3 { top: 46%; left: -4%; animation-delay: -2s; font-size: 10px }
@keyframes twinkle { 0%,100% { opacity: .2; transform: scale(.8) } 50% { opacity: 1; transform: scale(1.1) } }

.card-stack { width: 410px; height: 300px; position: relative; transform-style: preserve-3d; transition: transform .15s var(--ease-soft); }
.gift-card { position: absolute; width: 390px; height: 245px; border-radius: 30px }
.back-card { background: linear-gradient(135deg, var(--lav), #efe9ff); transform: translate(-30px,20px) rotate(-11deg); box-shadow: 0 25px 55px rgba(74,39,18,.1); opacity: .7; }
.card-shadow { background: linear-gradient(135deg, #f6b650, #e99224); transform: translate(42px,-38px) rotate(9deg); box-shadow: 0 35px 70px rgba(74,39,18,.16) }
.main-card { z-index: 2; background: linear-gradient(145deg, #100b48, #20136c); transform: rotate(-7deg); padding: 30px; color: #fff; box-shadow: 0 40px 90px rgba(13,8,61,.28); overflow: hidden }
.main-card:after { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; background: rgba(255,255,255,.05); right: -70px; top: -100px }
.main-card img { width: 122px; height: auto; filter: brightness(0) invert(1) }
.shine { position: absolute; inset: -50%; background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,.18) 49%, transparent 58%); animation: shine 5s infinite }
@keyframes shine { 0%,55% { transform: translateX(-45%) rotate(12deg) } 85%,100% { transform: translateX(45%) rotate(12deg) } }
.card-copy { margin-top: 52px; position: relative }
.card-copy small { font-size: 9px; letter-spacing: .18em; color: #c9c4e9 }
.card-copy strong { display: block; font-size: 23px; margin-top: 5px }
.card-bottom { position: absolute; left: 30px; right: 30px; bottom: 25px; display: flex; justify-content: space-between; font-size: 10px; color: #d8d4ef }

.message-pill { position: absolute; z-index: 5; padding: 11px 15px; border-radius: 999px; background: rgba(255,255,255,.88); box-shadow: 0 16px 40px rgba(35,20,67,.13); backdrop-filter: blur(14px); font-size: 11px; font-weight: 800; color: var(--navy); animation: float 4s ease-in-out infinite }
.message-pill span { margin-left: 5px }
.p1 { left: -42px; top: -18px }
.p2 { right: -50px; top: 88px; animation-delay: -1.2s }
.p3 { left: 22px; bottom: -28px; animation-delay: -2.3s }
@keyframes float { 50% { transform: translateY(-8px) } }

.gift-icon-badge {
  position: absolute; z-index: 3;
  top: 22px; right: 22px;
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.28), 0 10px 22px rgba(0,0,0,.22);
  display: grid; place-items: center;
  opacity: 0;
  animation: giftPop .7s var(--ease-soft) .9s forwards, giftWiggle 4.2s ease-in-out 1.7s infinite;
}
.gift-icon-badge svg { width: 30px; height: 30px; filter: drop-shadow(0 2px 4px rgba(0,0,0,.25)); }
@keyframes giftPop { from { opacity: 0; transform: scale(.4) rotate(-16deg) } to { opacity: 1; transform: scale(1) rotate(0deg) } }
@keyframes giftWiggle { 0%,100% { transform: rotate(0deg) translateY(0) } 50% { transform: rotate(-6deg) translateY(-3px) } }
@media (prefers-reduced-motion: reduce) { .gift-icon-badge { opacity: 1; animation: none; } }
@media(max-width:600px) { .gift-icon-badge { width: 44px; height: 44px; top: 16px; right: 16px; } .gift-icon-badge svg { width: 24px; height: 24px; } }

/* ===================== SCROLL REVEAL ===================== */
.reveal-up, .split-heading .word, .tilt, .moment, .partner-card, .mini-card, .faq-list details {
  opacity: 0; transform: translateY(28px);
}
.reveal-up.in, .split-heading.in .word, .tilt.in, .moment.in, .partner-card.in, .mini-card.in, .faq-list details.in {
  opacity: 1; transform: translateY(0);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.split-heading .word { display: inline-block; transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-up.d2, .split-heading.d2 { transition-delay: .08s }
.reveal-up.d3 { transition-delay: .16s }
.reveal-up.d4 { transition-delay: .24s }
@media (prefers-reduced-motion: reduce) {
  .reveal-up, .split-heading .word, .tilt, .moment, .partner-card, .mini-card, .faq-list details { opacity: 1 !important; transform: none !important; }
}

/* ===================== MOMENTS ===================== */
.moments { background: var(--navy); color: #fff; padding: 130px 0; position: relative; overflow: hidden; }
.section-head { max-width: 740px; position: relative; z-index: 1 }
.section-head h2, .use h2, .corp-copy h2 { font-size: clamp(48px, 6vw, 76px); line-height: 1; letter-spacing: -.055em; margin: 16px 0 20px; color: var(--navy) }
.moments .section-head>span { color: #f4c0b2 }
.moments .section-head h2 { color: #fff }
.section-head p { color: var(--muted); line-height: 1.7 }
.moments .section-head p { color: #bcb6d0 }

.moment-track { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; margin-top: 55px; position: relative; z-index: 1; }
.moment {
  min-height:280px;
  border-radius:28px;
  padding:22px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  color:var(--navy);
  transition:transform .25s var(--ease-soft), box-shadow .25s var(--ease-soft), opacity .8s var(--ease);
}
.moment:hover { transform: translateY(-6px); box-shadow: 0 18px 36px rgba(0,0,0,.16); }
.moment b { font-size: 34px; margin-bottom: auto; transition: transform .35s var(--ease-soft) }
.moment:hover b { transform:none; }
.moment h3 { font-size: 19px; margin: 0 0 8px }
.moment p { font-size: 12px; line-height: 1.5; margin: 0; color: #5e596a }
.birthday{background:#F8E4C7}.newyear{background:#E5F3E8}.love{background:#FBE5EC}.congrats{background:#F8DDB0}.bayram{background:#E6EEF9}

/* ===================== HOW / PHONE ===================== */
.how { padding: 130px 0 }
.centered { text-align: center; margin: auto }
.centered p { margin-inline: auto; max-width: 650px }

.phone-story { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; margin-top: 65px }
.steps { display: flex; flex-direction: column }
.step { display: flex; gap: 22px; padding: 25px 10px; border-bottom: 1px solid rgba(13,8,61,.1); opacity: .42; transition: opacity .35s var(--ease), transform .35s var(--ease); cursor: pointer; position: relative; }
.step.active { opacity: 1; transform: translateX(8px) }
.step-progress { position: absolute; left: 0; bottom: -1px; height: 2px; width: 0; background: var(--orange); transition: width .05s linear; }
.step.active .step-progress { width: 0; animation: stepFill 4.2s linear forwards; }
@keyframes stepFill { to { width: 100% } }
.step>b { font-size: 10px; color: var(--orange); padding-top: 5px }
.step h3 { margin: 0; color: var(--navy); font-size: 20px }
.step p { margin: 7px 0 0; color: var(--muted); font-size: 12px }

.phone-wrap { height: 610px; position: relative; display: grid; place-items: center }
.phone-orbit { position: absolute; width: 470px; height: 470px; border-radius: 50%; background: linear-gradient(135deg,#f8d39d,#efe5d8); opacity: .5; z-index: -1; animation: glowPulse 7s ease-in-out infinite; }
.phone { width: 285px; height: 565px; border: 9px solid var(--navy); border-radius: 48px; background: #fff; box-shadow: 0 40px 90px rgba(13,8,61,.2); padding: 8px; position: relative }
.notch { position: absolute; width: 105px; height: 23px; border-radius: 0 0 15px 15px; background: var(--navy); left: 50%; top: 0; transform: translateX(-50%); z-index: 2 }
.screen { height: 100%; border-radius: 32px; background: #fff8f3; overflow: hidden }
.screen-top { height: 72px; display: flex; align-items: center; justify-content: space-between; padding: 15px 20px }
.screen-top img { width: 78px; height: auto; }
.screen-content { padding: 50px 22px 22px; transition: opacity .3s var(--ease), transform .3s var(--ease) }
.screen-content small { font-size: 9px; letter-spacing: .14em; color: #8e8996 }
.screen-content h4 { font-size: 25px; line-height: 1.1; color: var(--navy); margin: 12px 0 28px }
.amounts { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px }
.amounts span { padding: 11px 4px; border: 1px solid #ddd8e2; border-radius: 11px; font-size: 10px; text-align: center; transition: background .2s, color .2s; }
.amounts .selected { background: var(--navy); color: #fff }
.screen-content button { width: 100%; margin-top: 24px; border: 0; border-radius: 999px; padding: 13px; background: var(--orange); color: #fff; font-weight: 800; transition: transform .2s var(--ease-soft); }
.screen-content button:active { transform: scale(.96) }

/* ===================== USE ===================== */
.use { padding: 130px 0; background: #fff0e5 }
.use-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center }
.use p { color: var(--muted); line-height: 1.7; max-width: 520px }
.partner-card { min-height: 330px; border-radius: 35px; background: #fff; box-shadow: 0 30px 70px rgba(79,50,37,.1); padding: 35px; position: relative; display: flex; flex-direction: column; justify-content: flex-end; transition: transform .4s var(--ease-soft), box-shadow .4s var(--ease-soft), opacity .8s var(--ease); }
.partner-card:hover { box-shadow: 0 40px 90px rgba(79,50,37,.18) }
.partner-logo.a101 { width: 100px; height: 100px; border-radius: 25px; background: #00bad3; color: #fff; display: grid; place-items: center; font-size: 26px; font-weight: 900; margin-bottom: auto }
.partner-card small { font-size: 9px; letter-spacing: .15em; color: #99929b }
.partner-card h3 { font-size: 24px; line-height: 1.25; color: var(--navy); max-width: 390px; margin: 8px 0 0 }
.arrow { position: absolute; right: 32px; bottom: 32px; width: 45px; height: 45px; border-radius: 50%; display: grid; place-items: center; background: var(--navy); color: #fff; transition: transform .3s var(--ease-soft); }
.partner-card:hover .arrow { transform: rotate(45deg) }

/* ===================== CORPORATE ===================== */
.corporate { background: var(--navy); padding: 130px 0; color: #fff; overflow: hidden; position: relative; }
.corporate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.corp-copy>span { color: #f5c5b8 }
.corp-copy h2 { color: #fff }
.corp-copy p { color: #bbb5d0; line-height: 1.7; max-width: 530px }
.light-btn { display: inline-block; background: var(--cream); color: var(--navy); margin-top: 22px }
.corp-visual { height: 470px; position: relative }
.corp-center { position: absolute; width: 235px; height: 235px; border-radius: 50%; background: var(--cream); left: 50%; top: 50%; transform: translate(-50%,-50%); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--navy); box-shadow: 0 30px 80px rgba(0,0,0,.25) }
.corp-center img { width: 120px; height: auto; }
.corp-center strong { margin-top: 12px; font-size: 12px }
.mini-card { position: absolute; width: 180px; height: 115px; border-radius: 22px; padding: 18px; color: var(--navy); display: flex; flex-direction: column; justify-content: space-between; font-size: 25px; box-shadow: 0 20px 50px rgba(0,0,0,.18); animation: float 5s ease-in-out infinite; will-change: transform; }
.mini-card span { font-size: 12px; font-weight: 800 }
.c1 { background: #f8d39d; left: 2%; top: 10%; transform: rotate(-7deg) }
.c2 { background: #f3e6d2; right: 2%; top: 17%; transform: rotate(8deg); animation-delay: -1.5s }
.c3 { background: #f4bd69; left: 18%; bottom: 4%; transform: rotate(5deg); animation-delay: -2.5s }

/* ===================== DOWNLOAD ===================== */
.download { margin-top: 110px; margin-bottom: 110px; }
.download-inner { background: linear-gradient(135deg,#f8cf93,#f6dfbd 55%,#f2eadf); border-radius: 40px; padding: 65px 70px; display: flex; justify-content: space-between; align-items: center; position: relative; overflow: hidden; }
.download h2 { font-size: clamp(42px,5vw,64px); letter-spacing: -.05em; line-height: 1.03; color: var(--navy); margin: 14px 0 }
.download p { color: #655e68 }
.stores { display: flex; gap: 10px; margin-top: 28px }
.stores a { background: var(--navy); color: #fff; border-radius: 13px; padding: 12px 17px; font-size: 12px; display: inline-flex; align-items: center; }
.stores b { margin-left: 6px }
.qr { display: flex; align-items: center; gap: 15px; position: relative; z-index: 1; }
.qr img, img.qr { height: auto; }
.qrbox { width: 125px; height: 125px; background: #fff; border-radius: 18px; display: grid; place-items: center; font-size: 56px; color: var(--navy); cursor: pointer; transition: transform .3s var(--ease-soft); }
.qrbox:hover { transform: scale(1.05) rotate(-3deg) }
.qr small { font-size: 10px; line-height: 1.5; color: #625b67 }

/* ===================== FAQ ===================== */
.faq { padding: 40px 0 130px; display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px }
.faq-list details { border-top: 1px solid rgba(13,8,61,.13); padding: 22px 0 }
.faq-list details:last-child { border-bottom: 1px solid rgba(13,8,61,.13) }
summary { list-style: none; display: flex; justify-content: space-between; align-items: center; font-weight: 800; color: var(--navy); cursor: pointer }
summary::-webkit-details-marker { display: none }
summary b { transition: transform .3s var(--ease-soft); font-weight: 500; }
details[open] summary b { transform: rotate(45deg) }
.faq-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
details[open] .faq-panel { grid-template-rows: 1fr; }
.faq-panel > p { overflow: hidden; margin: 12px 0 0; color: var(--muted); font-size: 13px; line-height: 1.7; max-width: 650px; }
.faq-panel { overflow: hidden; }

/* ===================== ABOUT ===================== */
.about-section { padding: 120px 0; background: #fffaf4; border-top: 1px solid rgba(13,11,69,.07); border-bottom: 1px solid rgba(13,11,69,.07) }
.about-section .about-head { max-width: 760px; margin: 0 auto 48px; text-align: center }
.about-section .about-head h2 i { color: var(--orange); font-style: normal }
.about-section .about-head p { max-width: 620px; margin: 18px auto 0 }
.about-text { max-width: 850px; margin: 0 auto; text-align: center }
.about-text p { color: #6d6976; font-size: 16px; line-height: 1.8; margin: 0 auto 14px }
.about-text p strong { color: var(--navy) }
.about-link { display: inline-flex; gap: 10px; align-items: center; margin-top: 22px; color: var(--navy); font-weight: 800; border-bottom: 1px solid rgba(13,11,69,.22); padding-bottom: 6px }
.about-link span { color: var(--orange); transition: transform .25s var(--ease) }
.about-link:hover span { transform: translateX(4px) }

/* ===================== CONTACT ===================== */
.contact-section { padding: 130px 0; background: #fff0e5 }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start }
.contact-copy h2 { font-size: clamp(48px,5.5vw,72px); line-height: 1; letter-spacing: -.055em; color: var(--navy); margin: 16px 0 22px }
.contact-copy p { max-width: 460px; color: var(--muted); line-height: 1.75 }
.contact-form { background: #fff; border-radius: 30px; padding: 34px; box-shadow: 0 28px 70px rgba(13,8,61,.08) }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px }
.contact-form label { display: flex; flex-direction: column; gap: 8px; font-size: 11px; font-weight: 800; color: var(--navy); margin-bottom: 17px }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid rgba(13,8,61,.12); background: #fffaf6; border-radius: 13px; padding: 14px 15px; font: inherit; font-size: 12px; color: var(--ink); outline: none; transition: border-color .2s, box-shadow .2s; }
.contact-form textarea { resize: vertical }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(242,164,58,.13) }
.contact-form button { border: 0; background: var(--navy); color: #fff; border-radius: 999px; padding: 15px 22px; font-weight: 800; font: inherit; font-size: 12px; display: inline-flex; align-items:center; }
.contact-form button span { margin-left: 10px; transition: transform .25s var(--ease) }
.contact-form button:hover span { transform: translateX(4px) }
.contact-form input:invalid:not(:placeholder-shown), .contact-form textarea:invalid:not(:placeholder-shown) { border-color: #e0685f }
.form-status { min-height: 20px; margin: 16px 0 0; font-size: 12.5px; font-weight: 700; }
.form-status.success { color: #2f8a4e }
.form-status.error { color: #d1483f }

/* ===================== FOOTER ===================== */
.giftino-footer { background: #0b0b33; width: 100%; margin: 0; border-top: 1px solid rgba(255,255,255,.08); position: relative; color: #fff; overflow: hidden; }
.giftino-footer::before { content:""; position:absolute; top:0; left:0; right:0; height:2px; background: linear-gradient(90deg, transparent, var(--orange), var(--gold), var(--orange), transparent); background-size: 200% 100%; animation: shimmer 6s linear infinite; }
@keyframes shimmer { to { background-position: -200% 0 } }
.giftino-footer-inner { display: grid; grid-template-columns: 245px 1px 500px 1px 1fr; align-items: center; gap: 40px; max-width: 1400px; margin: 0 auto; padding: 55px 70px }
.footer-divider { width: 1px; height: 240px; background: rgba(255,255,255,.15) }
.footer-brand img { width: 140px; height: auto; filter: brightness(0) invert(1) }
.footer-brand p { font-size: 16px; line-height: 1.4; color: #fff; margin-top: 18px }
.footer-brand span { color: var(--orange); font-weight: 800; font-size: 18px }
.footer-downloads { display: flex; align-items: center; justify-content: center; padding-left: 30px; gap: 22px }
.store-buttons { display: flex; flex-direction: column; gap: 12px }
.store-buttons a { display: block; line-height: 0; }
.footer-downloads .qr { width: 110px }
.footer-downloads .store { height: 48px; width: auto; transition: transform .25s var(--ease-soft); }
.footer-downloads .store:hover { transform: translateY(-3px) }
.footer-links { display: flex; flex-direction: column; align-items: flex-end; text-align: right; gap: 18px }
.top-links, .legal-links, .social-links { display: flex; justify-content: flex-end; gap: 20px; flex-wrap: nowrap }
.footer-links a { color: #fff; white-space: nowrap; transition: color .2s; }
.footer-links .top-links a:hover { color: var(--orange) }
.footer-legal-link { font-size: 12px; color: #afadaa }
.social-icon { width: 30px; height: auto; transition: transform .25s var(--ease-soft), filter .25s; }
.social-icon:hover { transform: translateY(-3px) scale(1.08) }
.footer-copy { border-top: 1px solid rgba(255,255,255,.12); padding: 24px; text-align: center; color: #ddd }

/* ===================== TOP DISCOVERY BAR ===================== */
.top-discovery { height: 34px; background: #09062d; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .22em }
.top-discovery a { display: flex; gap: 8px; align-items: center }
.top-discovery strong { color: var(--orange); font-weight: 800 }
.top-discovery span { font-size: 13px; transition: transform .25s; color: var(--orange); margin-left: 4px }
.top-discovery a:hover span { transform: translateY(3px) }

/* ===================== CONFETTI ===================== */
.confetti-piece { position: fixed; top: 0; left: 0; width: 8px; height: 8px; pointer-events: none; z-index: 4000; border-radius: 2px; }

/* ===================== RESPONSIVE ===================== */
@media(max-width:900px) {
  #primaryNav { display: none }
  .menu-toggle { display: flex }
  .mobile-nav { display: flex }
  .nav-scrim { display: block }
  .app-btn:not(.mobile-app-btn) { display: none }
  .hero, .phone-story, .use-grid, .corporate-grid, .faq { grid-template-columns: 1fr }
  .hero-copy { text-align: center }
  .hero-copy>p, .safe { margin-inline: auto }
  .hero-actions { justify-content: center }
  .hero-art { height: 520px }
  .moment-track { grid-template-columns: 1fr 1fr }
  .phone-story { gap: 30px }
  .steps { order: 2 }
  .corporate-grid { gap: 30px }
  .corp-visual { order: 2 }
  .download-inner { padding: 45px; gap: 30px }
  .faq { gap: 35px }
  .contact-grid { grid-template-columns: 1fr; gap: 40px }
  .giftino-footer-inner { grid-template-columns: 1fr; padding: 40px 24px }
  .footer-divider { display: none }
  .footer-brand, .footer-downloads, .footer-links { align-items: center; text-align: center }
  .top-links, .legal-links, .social-links { justify-content: center; flex-wrap: wrap }
  .about-section { padding: 85px 0 }
}

@media(max-width:600px) {
  .shell, .header { width: calc(100% - 28px); max-width:1180px; }
  .header { height: 72px }
  .logo img { width: 105px }
  .app-btn { font-size: 11px; padding: 11px 14px }
  .hero { padding-top:30px; min-height:auto; grid-template-columns:1fr; gap:0; }
  .hero h1 { font-size: 53px }
  .hero-art { height: 430px }
  .card-stack { transform: scale(.78) }
  .moment-track { grid-template-columns: 1fr }
  .moment { min-height: 220px }
  .section-head h2, .use h2, .corp-copy h2 { font-size: 47px }
  .how, .moments, .use, .corporate { padding: 85px 0 }
  .phone-wrap { height: 570px }
  .use-grid, .corporate-grid { gap: 45px }
  .corp-visual { height: 390px; transform: scale(.82) }
  .download-inner { margin: 0; padding: 38px 28px; flex-direction: column; align-items: flex-start }
  .stores { flex-wrap: wrap }
  .qr { display: none }
  .faq { padding-bottom: 80px }
  .top-discovery { height: 30px }
  .form-row { grid-template-columns: 1fr }
  .contact-section { padding: 80px 0 }
  .contact-form { padding: 24px }
}


@media(max-width:380px) {
  .card-stack { transform: scale(.68) }
  .hero-art { height: 380px }
  .phone { width: 250px; height: 495px }
  .phone-wrap { height: 510px }
  .mobile-nav { padding: 90px 22px 24px }
}





@media(max-width:600px){
  .shell,.header{
    width:100%!important;
    max-width:100%!important;
    margin:0!important;
    padding-left:14px!important;
    padding-right:14px!important;
    box-sizing:border-box!important;
  }
  .hero{
    width:100%!important;
    grid-template-columns:1fr!important;
    gap:0!important;
    padding:30px 14px 0!important;
    box-sizing:border-box!important;
  }
  .hero-copy,.hero-copy>p{
    width:100%!important;
    max-width:100%!important;
  }
}


@media(max-width:600px){
  .hero-art{
    overflow:visible!important;
    height:auto!important;
    display:flex!important;
    justify-content:center!important;
    align-items:center!important;
    padding:20px 0 10px!important;
  }
  .card-stack{
    width:92vw!important;
    max-width:360px!important;
    transform:none!important;
    margin:0 auto!important;
  }
  .gift-card{
    width:100%!important;
    height:auto!important;
    aspect-ratio:390/245;
  }
}


/* FINAL REVIZE 5 - mobile card sizing */
@media (max-width:600px){
  .hero-art{
    height:380px !important;
    overflow:visible !important;
  }
  .card-stack{
    width:320px !important;
    height:235px !important;
    transform:scale(.90) !important;
    transform-origin:center center;
    margin:0 auto !important;
  }
}


/* FINAL REVIZE 6 */
@media (max-width:600px){
  /* Kart animasyonunu biraz aşağı indir */
  .hero-art{
    padding-top:55px !important;
    margin-top:20px !important;
    height:420px !important;
  }

  /* Use section üst boşluk */
  .use{
    padding-top:60px !important;
  }

  /* Giftino etrafındaki baloncuk yazıları */
  .moment,
  .bubble,
  .feature-card{
    overflow:visible !important;
  }

  .moment{
    padding:18px 18px 18px 22px !important;
  }

  .moment h3,
  .moment p{
    text-align:left !important;
    padding-left:10px !important;
  }

  /* Sonraki mobil bölüm arasında nefes */
  .download{
    margin-top:40px !important;
  }
}
