:root{
  --yoruw-navy:#0D1026;
  --yoruw-navy-2:#151936;
  --yoruw-purple:#6366F1;
  --yoruw-purple-2:#7C3AED;
  --yoruw-lilac:#A78BFA;
  --yoruw-lilac-soft:#F1EEFF;
  --yoruw-bg:#F6F7FB;
  --yoruw-white:#FFFFFF;
  --yoruw-text:#111426;
  --yoruw-muted:#6B7280;
  --yoruw-line:#E8EAF2;
  --yoruw-success:#16A36A;
  --yoruw-warning:#F59E0B;

  --radius-xl:30px;
  --radius-lg:22px;
  --radius-md:16px;
  --radius-sm:12px;

  --shadow-sm:0 8px 24px rgba(13,16,38,.06);
  --shadow-md:0 18px 50px rgba(13,16,38,.10);
  --container:1220px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--yoruw-white);
  color:var(--yoruw-text);
  font-family:-apple-system,BlinkMacSystemFont,"SF Pro Display","SF Pro Text","Segoe UI",Inter,Roboto,Helvetica,Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button,input,select,textarea{font:inherit}
.site-container{
  width:min(calc(100% - 36px),var(--container));
  margin:0 auto;
}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  border-bottom:1px solid rgba(232,234,242,.82);
  background:rgba(255,255,255,.90);
  backdrop-filter:saturate(180%) blur(20px);
}
.site-header__inner{
  min-height:78px;
  display:flex;
  align-items:center;
  gap:34px;
}
.site-brand{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
}
.site-brand img{
  width:138px;
  height:auto;
}
.site-nav{
  display:flex;
  align-items:center;
  gap:26px;
  margin-left:18px;
  font-size:14px;
  font-weight:650;
  color:#303343;
}
.site-nav a{transition:.18s ease}
.site-nav a:hover{color:var(--yoruw-purple)}
.site-header__actions{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  font-weight:650;
}

/* BUTTONS */
.button{
  min-height:46px;
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  padding:0 19px;
  border:1px solid transparent;
  border-radius:999px;
  font-weight:750;
  cursor:pointer;
  transition:transform .18s ease,box-shadow .18s ease,background .18s ease;
}
.button:hover{transform:translateY(-1px)}
.button--primary{
  color:white;
  background:var(--yoruw-navy);
  box-shadow:0 8px 20px rgba(13,16,38,.12);
}
.button--accent{
  color:white;
  background:linear-gradient(135deg,var(--yoruw-purple),var(--yoruw-purple-2));
  box-shadow:0 10px 24px rgba(99,102,241,.24);
}
.button--ghost{
  color:var(--yoruw-navy);
  border-color:var(--yoruw-line);
  background:white;
}
.button--soft{
  color:#5345D9;
  background:var(--yoruw-lilac-soft);
}

/* GLOBAL */
.site-main{min-height:72vh}
.card{
  background:white;
  border:1px solid var(--yoruw-line);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-sm);
}
.muted{color:var(--yoruw-muted)}
.small{font-size:13px}
.section{padding:72px 0}
.section--soft{background:var(--yoruw-bg)}
.section__head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:24px;
  margin-bottom:30px;
}
.section__head h2{
  margin:0;
  color:var(--yoruw-navy);
  font-size:clamp(30px,4vw,44px);
  line-height:1.05;
  letter-spacing:-.045em;
}
.section__head p{
  margin:9px 0 0;
  color:var(--yoruw-muted);
  line-height:1.55;
}

/* HERO */
.hero{
  position:relative;
  overflow:hidden;
  padding:92px 0 72px;
  background:
    radial-gradient(circle at 84% 22%,rgba(167,139,250,.22),transparent 28%),
    radial-gradient(circle at 68% 82%,rgba(99,102,241,.12),transparent 30%),
    linear-gradient(180deg,#fff 0%,#fbfbff 100%);
}
.hero::after{
  content:"";
  position:absolute;
  right:-100px;
  top:80px;
  width:460px;
  height:460px;
  border-radius:50%;
  background:linear-gradient(135deg,rgba(99,102,241,.08),rgba(167,139,250,.03));
  filter:blur(3px);
}
.hero__grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  align-items:center;
  gap:66px;
}
.hero__eyebrow{
  display:inline-flex;
  align-items:center;
  padding:9px 13px;
  border:1px solid #E2DEFF;
  border-radius:999px;
  background:#F7F5FF;
  color:#5E52D6;
  font-size:13px;
  font-weight:800;
}
.hero h1{
  max-width:760px;
  margin:20px 0 18px;
  color:var(--yoruw-navy);
  font-size:clamp(48px,7.4vw,84px);
  line-height:.96;
  letter-spacing:-.065em;
}
.hero h1 .accent{
  background:linear-gradient(135deg,var(--yoruw-purple),var(--yoruw-purple-2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero p{
  max-width:680px;
  margin:0;
  color:#666B78;
  font-size:19px;
  line-height:1.65;
}
.hero-proof{
  display:flex;
  gap:26px;
  flex-wrap:wrap;
  margin-top:24px;
}
.hero-proof__item{
  display:flex;
  align-items:center;
  gap:8px;
  color:#555A69;
  font-size:13px;
  font-weight:650;
}
.hero-proof__dot{
  width:8px;height:8px;border-radius:50%;
  background:var(--yoruw-purple);
}
.hero-visual{
  min-height:410px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:36px;
  border:1px solid rgba(232,234,242,.85);
  border-radius:36px;
  background:rgba(255,255,255,.78);
  box-shadow:var(--shadow-md);
  backdrop-filter:blur(18px);
}
.hero-visual__score{
  width:100%;
}
.score-label{
  color:var(--yoruw-muted);
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.score-number{
  margin:4px 0;
  color:var(--yoruw-navy);
  font-size:88px;
  font-weight:900;
  letter-spacing:-.075em;
}
.score-caption{
  margin:0;
  color:#494D5C;
  font-size:18px;
  font-weight:700;
}
.score-bars{
  display:grid;
  gap:13px;
  margin-top:28px;
}
.score-row{
  display:grid;
  grid-template-columns:120px 1fr auto;
  gap:12px;
  align-items:center;
  font-size:13px;
  color:#555A69;
}
.score-bar{
  height:8px;
  border-radius:999px;
  background:#ECECF4;
  overflow:hidden;
}
.score-bar span{
  display:block;
  height:100%;
  border-radius:inherit;
  background:linear-gradient(90deg,var(--yoruw-purple),var(--yoruw-lilac));
}

/* SEARCH */
.search-shell{
  display:grid;
  grid-template-columns:1.35fr 1fr auto;
  gap:8px;
  max-width:880px;
  margin-top:30px;
  padding:9px;
  border:1px solid var(--yoruw-line);
  border-radius:20px;
  background:white;
  box-shadow:0 14px 38px rgba(13,16,38,.09);
}
.search-shell input,
.search-shell select{
  min-height:54px;
  width:100%;
  padding:0 15px;
  border:0;
  outline:0;
  color:var(--yoruw-text);
  background:transparent;
}
.search-shell .button{
  min-height:54px;
  border-radius:14px;
}

/* CATEGORY */
.category-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.category-card{
  position:relative;
  overflow:hidden;
  padding:26px;
  transition:.2s ease;
}
.category-card:hover{
  transform:translateY(-3px);
  border-color:#DAD6FF;
  box-shadow:var(--shadow-md);
}
.category-card__icon{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:15px;
  background:var(--yoruw-lilac-soft);
  color:var(--yoruw-purple);
  font-size:22px;
}
.category-card h3{
  margin:18px 0 8px;
  color:var(--yoruw-navy);
  font-size:24px;
  letter-spacing:-.025em;
}
.category-card p{
  margin:0;
  color:var(--yoruw-muted);
  line-height:1.6;
}

/* BUSINESS CARDS */
.business-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.business-card{
  overflow:hidden;
  transition:.2s ease;
}
.business-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow-md);
}
.business-card__media{
  position:relative;
  aspect-ratio:16/10;
  background:
    linear-gradient(145deg,rgba(99,102,241,.12),rgba(167,139,250,.18)),
    var(--yoruw-bg);
}
.business-card__media::after{
  content:"yoruw";
  position:absolute;
  left:18px;
  bottom:16px;
  color:rgba(13,16,38,.25);
  font-size:17px;
  font-weight:900;
  letter-spacing:-.04em;
}
.business-card__body{padding:19px}
.business-card__meta{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
}
.business-card h3{
  margin:0;
  color:var(--yoruw-navy);
  font-size:20px;
  letter-spacing:-.025em;
}
.experience-score{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 10px;
  border-radius:999px;
  background:var(--yoruw-lilac-soft);
  color:#5445D8;
  font-size:14px;
  font-weight:850;
}
.experience-score::before{
  content:"★";
  color:var(--yoruw-purple);
}

/* SPONSORED */
.sponsored-wrap{
  margin:22px 0 34px;
  padding:20px;
  border:1px solid #E2DCFF;
  border-radius:24px;
  background:linear-gradient(180deg,#FBFAFF,#F6F3FF);
}
.sponsored-wrap--public{
  box-shadow:0 12px 34px rgba(77,61,169,.055);
}
.sponsored-head{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
  margin-bottom:14px;
}
.sponsored-label{
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:#5D4BD6;
  font-size:12px;
  font-weight:900;
  letter-spacing:.055em;
  text-transform:uppercase;
}
.sponsored-label::before{
  content:"✦";
}
.sponsored-head__note{
  margin-top:4px;
  color:#858294;
  font-size:12px;
  line-height:1.45;
}
.sponsored-head__count{
  flex:0 0 auto;
  color:#8B8798;
  font-size:11px;
  font-weight:750;
}
.sponsored-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.sponsored-grid--single{
  grid-template-columns:minmax(0,1fr);
}
.sponsored-card{
  min-width:0;
  display:flex;
  flex-direction:column;
  padding:17px 18px 16px;
  border:1px solid #E2DEFA;
  border-radius:17px;
  background:#fff;
  color:inherit;
  box-shadow:0 8px 22px rgba(21,18,55,.035);
  transition:.18s ease;
}
.sponsored-card:hover{
  border-color:#CCC3FF;
  transform:translateY(-1px);
  box-shadow:0 14px 30px rgba(55,43,136,.08);
}
.sponsored-card__top{
  display:flex;
  align-items:center;
  gap:8px;
  min-width:0;
}
.sponsored-card__badge{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  min-height:22px;
  padding:0 8px;
  border:1px solid #DED8FF;
  border-radius:999px;
  background:#F5F2FF;
  color:#5B48D2;
  font-size:10px;
  font-weight:900;
  letter-spacing:.045em;
  text-transform:uppercase;
}
.sponsored-card__business{
  min-width:0;
  overflow:hidden;
  color:#3F3B50;
  font-size:12px;
  font-weight:800;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.sponsored-card__domain{
  margin-top:9px;
  overflow:hidden;
  color:#777386;
  font-size:11px;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.sponsored-card h3{
  margin:8px 0 6px;
  color:#5B49D5;
  font-size:18px;
  line-height:1.25;
  letter-spacing:-.02em;
}
.sponsored-card p{
  margin:0;
  color:#666372;
  font-size:13px;
  line-height:1.52;
}
.sponsored-card__cta{
  display:inline-flex;
  align-items:center;
  align-self:flex-start;
  margin-top:auto;
  padding-top:13px;
  color:#5946D3;
  font-size:12px;
  font-weight:900;
}

/* LISTINGS */
.listing{
  display:flex;
  flex-direction:column;
  gap:13px;
}
.listing-item{
  display:grid;
  grid-template-columns:132px 1fr auto;
  gap:18px;
  align-items:center;
  padding:13px;
  border:1px solid var(--yoruw-line);
  border-radius:20px;
  background:white;
  transition:.18s ease;
}
.listing-item:hover{
  border-color:#DCD8FF;
  transform:translateY(-1px);
  box-shadow:var(--shadow-sm);
}
.listing-item__image{
  width:132px;
  aspect-ratio:4/3;
  overflow:hidden;
  border-radius:14px;
  background:linear-gradient(145deg,#F0EEFF,#F7F7FA);
}
.listing-item h3{
  margin:0 0 6px;
  color:var(--yoruw-navy);
  font-size:20px;
  letter-spacing:-.02em;
}
.listing-item__actions{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:7px;
}

/* BUSINESS PROFILE */
.profile-hero{
  padding:44px 0 0;
  background:linear-gradient(180deg,#FAFAFF,#fff 240px);
}
.profile-grid{
  display:grid;
  grid-template-columns:1fr 370px;
  gap:30px;
}
.profile-title{
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:flex-start;
}
.profile-title h1{
  margin:7px 0 8px;
  color:var(--yoruw-navy);
  font-size:clamp(38px,5vw,58px);
  line-height:1;
  letter-spacing:-.05em;
}
.profile-aside{
  position:sticky;
  top:104px;
  align-self:start;
}
.profile-card{padding:22px}
.profile-actions{
  display:grid;
  grid-template-columns:1fr;
  gap:9px;
  margin-top:18px;
}
.profile-tabs{
  display:flex;
  gap:22px;
  overflow:auto;
  margin-top:28px;
  border-bottom:1px solid var(--yoruw-line);
}
.profile-tabs a{
  padding:14px 0;
  white-space:nowrap;
  color:#5E6270;
  font-size:14px;
  font-weight:750;
}
.profile-tabs a.is-active{
  color:var(--yoruw-purple);
  border-bottom:2px solid var(--yoruw-purple);
}
.experience-card{
  padding:22px;
}
.experience-card + .experience-card{margin-top:12px}
.experience-card__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}
.experience-stars{
  color:#F5A623;
  letter-spacing:1px;
}

/* FORMS */
.form-card{padding:25px}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.form-group{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.form-group--full{grid-column:1/-1}
.form-group label{
  color:#343746;
  font-size:14px;
  font-weight:750;
}
.form-control{
  min-height:50px;
  width:100%;
  padding:0 14px;
  border:1px solid var(--yoruw-line);
  border-radius:14px;
  outline:none;
  color:var(--yoruw-text);
  background:white;
}
textarea.form-control{
  min-height:130px;
  padding:14px;
  resize:vertical;
}
.form-control:focus{
  border-color:#B9B0FF;
  box-shadow:0 0 0 4px rgba(99,102,241,.09);
}

/* AUTH */
.auth-shell{
  max-width:560px;
  margin:0 auto;
}
.auth-logo{
  display:flex;
  justify-content:center;
  margin-bottom:20px;
}
.auth-logo img{width:164px}

/* FOOTER */
.site-footer{
  margin-top:72px;
  border-top:1px solid var(--yoruw-line);
  background:#FAFAFC;
}
.site-footer__inner{
  min-height:190px;
  display:grid;
  grid-template-columns:1fr auto auto;
  align-items:center;
  gap:30px;
}
.site-footer__brand img{width:132px}
.site-footer__tagline{
  margin:9px 0 0;
  color:var(--yoruw-muted);
  font-size:14px;
}
.site-footer__nav{
  display:flex;
  gap:18px;
  color:#656A78;
  font-size:14px;
}
.site-footer__copyright{
  color:#8A8E99;
  font-size:13px;
}

/* RESPONSIVE */
@media(max-width:1000px){
  .site-nav{display:none}
  .hero__grid,.profile-grid{grid-template-columns:1fr}
  .hero-visual{min-height:auto}
  .business-grid{grid-template-columns:repeat(2,1fr)}
  .sponsored-grid{grid-template-columns:repeat(2,1fr)}
  .profile-aside{position:static}
}
@media(max-width:700px){
  .site-header__inner{min-height:68px}
  .site-brand img{width:112px}
  .site-header__actions a:not(.button--primary):not([href$="/login.php"]){display:none}
  .site-header__actions a[href$="/login.php"]{
    min-height:40px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0 12px;
    border:1px solid #E2E4EC;
    border-radius:12px;
    background:#fff;
    color:#252839;
    font-weight:700;
    white-space:nowrap;
  }
  .site-header__actions .button--primary{
    min-height:40px;
    padding:0 13px;
    white-space:nowrap;
  }
  .site-header__actions{
    gap:7px;
  }
  .hero{padding:58px 0 44px}
  .hero h1{font-size:48px}
  .hero p{font-size:17px}
  .hero-visual{padding:25px}
  .score-number{font-size:68px}
  .search-shell{grid-template-columns:1fr}
  .category-grid,.business-grid,.sponsored-grid{grid-template-columns:1fr}
  .sponsored-wrap{padding:16px;border-radius:20px}
  .sponsored-head{align-items:flex-start;flex-direction:column;gap:5px}
  .sponsored-head__count{display:none}
  .sponsored-card{padding:16px}
  .listing-item{
    grid-template-columns:92px 1fr;
  }
  .listing-item__image{width:92px}
  .listing-item__actions{
    grid-column:1/-1;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
  }
  .form-grid{grid-template-columns:1fr}
  .form-group--full{grid-column:auto}
  .site-footer__inner{
    grid-template-columns:1fr;
    padding:38px 0;
  }
  .site-footer__nav{flex-wrap:wrap}
}

/* =========================================================
   YORUW HOME V2
   ========================================================= */

.home-hero{
  position:relative;
  overflow:hidden;
  padding:88px 0 76px;
  background:
    radial-gradient(circle at 82% 15%,rgba(124,58,237,.10),transparent 26%),
    radial-gradient(circle at 64% 84%,rgba(99,102,241,.08),transparent 28%),
    linear-gradient(180deg,#fff 0%,#fbfbff 100%);
}

.home-hero__grid{
  display:grid;
  grid-template-columns:minmax(0,1.02fr) minmax(480px,.98fr);
  gap:64px;
  align-items:center;
}

.home-hero__title{
  margin:20px 0 20px;
  max-width:800px;
  color:var(--yoruw-navy);
  font-size:clamp(54px,6.8vw,88px);
  line-height:.96;
  letter-spacing:-.066em;
}

.home-hero__title .accent{
  display:block;
  background:linear-gradient(
    135deg,
    var(--yoruw-purple),
    var(--yoruw-purple-2)
  );
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.home-hero__lead{
  max-width:720px;
  margin:0;
  color:#666B78;
  font-size:19px;
  line-height:1.68;
}

.yoruw-search{
  display:grid;
  grid-template-columns:minmax(260px,1fr) minmax(160px,.48fr) auto;
  gap:0;
  max-width:920px;
  margin-top:32px;
  padding:7px;
  border:1px solid #E6E7EF;
  border-radius:22px;
  background:#fff;
  box-shadow:
    0 20px 60px rgba(13,16,38,.10),
    0 2px 8px rgba(13,16,38,.04);
}

.yoruw-search__main,
.yoruw-search__location{
  min-height:58px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:0 16px;
}

.yoruw-search__main{
  border-right:1px solid #ECECF3;
}

.yoruw-search__icon,
.yoruw-search__location > span{
  flex:0 0 auto;
  color:#797D8A;
  font-size:22px;
}

.yoruw-search input{
  width:100%;
  border:0;
  outline:0;
  background:transparent;
  color:var(--yoruw-text);
  font-size:15px;
}

.yoruw-search input::placeholder{
  color:#989CA8;
}

.yoruw-search__button{
  min-height:58px;
  padding:0 22px;
  border:0;
  border-radius:16px;
  background:linear-gradient(
    135deg,
    var(--yoruw-purple),
    var(--yoruw-purple-2)
  );
  color:#fff;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(99,102,241,.22);
  transition:.2s ease;
}

.yoruw-search__button:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 30px rgba(99,102,241,.28);
}

.home-search-note{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:9px;
  margin-top:15px;
  color:#8A8E9A;
  font-size:13px;
}

.home-search-note a{
  padding:5px 9px;
  border-radius:999px;
  background:#F4F3FC;
  color:#6255D8;
  font-weight:700;
}

.experience-stage{
  position:relative;
  min-height:530px;
}

.experience-stage::before{
  content:"";
  position:absolute;
  inset:50px 20px 40px 40px;
  border:1px solid rgba(220,218,239,.82);
  border-radius:42px;
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.88),
      rgba(247,246,255,.80)
    );
  box-shadow:0 28px 80px rgba(13,16,38,.10);
  backdrop-filter:blur(20px);
}

.experience-stage__glow{
  position:absolute;
  border-radius:50%;
  filter:blur(10px);
}

.experience-stage__glow--one{
  width:260px;
  height:260px;
  right:-50px;
  top:0;
  background:rgba(124,58,237,.12);
}

.experience-stage__glow--two{
  width:220px;
  height:220px;
  left:30px;
  bottom:0;
  background:rgba(99,102,241,.09);
}

.experience-stage__brand{
  position:absolute;
  z-index:3;
  left:70px;
  top:82px;
  display:flex;
  align-items:baseline;
  color:var(--yoruw-navy);
  font-size:20px;
  font-weight:900;
  letter-spacing:-.05em;
}

.experience-stage__brand strong{
  color:var(--yoruw-purple);
}

.experience-stage__brand small{
  margin-left:8px;
  color:#8A8D98;
  font-size:11px;
  font-weight:700;
  letter-spacing:0;
}

.floating-experience{
  position:absolute;
  z-index:5;
  width:min(350px,72%);
  padding:19px;
  border:1px solid rgba(226,226,238,.92);
  border-radius:22px;
  background:rgba(255,255,255,.93);
  box-shadow:0 20px 50px rgba(13,16,38,.10);
  backdrop-filter:blur(18px);
  transition:.2s ease;
}

.floating-experience:hover{
  transform:translateY(-3px);
  box-shadow:0 26px 60px rgba(13,16,38,.14);
}

.floating-experience--1{
  top:125px;
  left:40px;
  transform:rotate(-2deg);
}

.floating-experience--2{
  top:245px;
  right:0;
  transform:rotate(2deg);
}

.floating-experience--3{
  bottom:36px;
  left:86px;
  transform:rotate(-1deg);
}

.floating-experience__top{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
}

.experience-category{
  color:#777B88;
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.05em;
}

.floating-score{
  padding:5px 8px;
  border-radius:999px;
  background:#F1EEFF;
  color:#5B4AD9;
  font-size:12px;
  font-weight:850;
}

.floating-experience__business{
  display:block;
  margin-top:10px;
  color:var(--yoruw-navy);
  font-size:17px;
  letter-spacing:-.02em;
}

.floating-experience p{
  margin:8px 0;
  color:#666A77;
  font-size:13px;
  line-height:1.55;
}

.floating-experience__link{
  color:#6354DE;
  font-size:12px;
  font-weight:800;
}

.experience-stage__trust{
  position:absolute;
  z-index:7;
  right:34px;
  bottom:0;
  display:flex;
  align-items:center;
  gap:8px;
  padding:9px 12px;
  border:1px solid rgba(224,224,235,.9);
  border-radius:999px;
  background:rgba(255,255,255,.88);
  color:#727681;
  font-size:11px;
  font-weight:700;
}

.experience-stage__trust-dot{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#20A66A;
  box-shadow:0 0 0 4px rgba(32,166,106,.10);
}

.home-category-strip,
.home-experience-section,
.home-score-section{
  padding:76px 0;
}

.home-category-strip{
  border-top:1px solid #F0F0F5;
  border-bottom:1px solid #F0F0F5;
  background:#fff;
}

.home-experience-section{
  background:#F7F7FB;
}

.home-section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:30px;
  margin-bottom:28px;
}

.home-section-kicker{
  display:block;
  margin-bottom:9px;
  color:#6556DA;
  font-size:11px;
  font-weight:900;
  letter-spacing:.10em;
}

.home-section-kicker--light{
  color:#BDB7FF;
}

.home-section-head h2{
  max-width:840px;
  margin:0;
  color:var(--yoruw-navy);
  font-size:clamp(32px,4vw,48px);
  line-height:1.05;
  letter-spacing:-.045em;
}

.home-section-head p{
  max-width:680px;
  margin:10px 0 0;
  color:#737784;
  line-height:1.6;
}

.text-link{
  flex:0 0 auto;
  color:#5B4AD8;
  font-size:14px;
  font-weight:800;
}

.home-categories{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.home-category-pill{
  min-height:48px;
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:0 16px;
  border:1px solid #E7E7EF;
  border-radius:999px;
  background:#fff;
  color:#343746;
  font-size:14px;
  font-weight:750;
  transition:.18s ease;
}

.home-category-pill:hover{
  border-color:#D6D0FF;
  color:#5D4DD9;
  transform:translateY(-1px);
  box-shadow:0 8px 20px rgba(13,16,38,.06);
}

.home-category-pill__icon{
  color:#7B68EE;
}

.home-experience-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.home-experience-card{
  min-height:250px;
  display:flex;
  flex-direction:column;
  padding:23px;
  border:1px solid #E5E5ED;
  border-radius:24px;
  background:#fff;
  box-shadow:0 10px 30px rgba(13,16,38,.04);
  transition:.2s ease;
}

.home-experience-card:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 50px rgba(13,16,38,.09);
}

.home-experience-card__meta{
  display:flex;
  justify-content:space-between;
  gap:12px;
  color:#797D89;
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.home-experience-card__meta strong{
  color:#5C4DD8;
}

.home-experience-card h3{
  margin:32px 0 10px;
  color:var(--yoruw-navy);
  font-size:22px;
  line-height:1.18;
  letter-spacing:-.025em;
}

.home-experience-card p{
  margin:0;
  color:#6E7280;
  font-size:14px;
  line-height:1.62;
}

.home-experience-card__business{
  margin-top:auto;
  padding-top:24px;
  color:#383B49;
  font-size:13px;
  font-weight:800;
}

.home-experience-empty{
  grid-column:1/-1;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
  padding:34px;
  border:1px solid #E5E5ED;
  border-radius:28px;
  background:#fff;
}

.home-experience-empty h3{
  max-width:660px;
  margin:8px 0;
  color:var(--yoruw-navy);
  font-size:27px;
  letter-spacing:-.03em;
}

.home-experience-empty p{
  max-width:650px;
  margin:0;
  color:#707481;
  line-height:1.6;
}

.home-business-ranking{
  border:1px solid #E7E7EF;
  border-radius:26px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 12px 34px rgba(13,16,38,.045);
}

.home-business-row{
  min-height:88px;
  display:grid;
  grid-template-columns:52px minmax(0,1fr) 120px 130px;
  gap:18px;
  align-items:center;
  padding:14px 20px;
  border-bottom:1px solid #EEEEF3;
  transition:.18s ease;
}

.home-business-row:last-child{
  border-bottom:0;
}

.home-business-row:hover{
  background:#FAFAFE;
}

.home-business-row__rank{
  color:#AAAEB8;
  font-size:15px;
  font-weight:850;
}

.home-business-row__identity strong{
  display:block;
  color:var(--yoruw-navy);
  font-size:17px;
}

.home-business-row__identity span,
.home-business-row__experiences{
  color:#818590;
  font-size:12px;
}

.home-business-row__score{
  text-align:right;
}

.home-business-row__score strong{
  display:block;
  color:#5C4DD8;
  font-size:22px;
  letter-spacing:-.03em;
}

.home-business-row__score span{
  color:#999CA6;
  font-size:10px;
  font-weight:700;
}

.home-score-placeholder{
  display:grid;
  grid-template-columns:180px 1fr;
  gap:28px;
  align-items:center;
  padding:34px;
  border:1px solid #E7E7EF;
  border-radius:28px;
  background:#fff;
}

.home-score-placeholder__number{
  display:grid;
  place-items:center;
  width:150px;
  height:150px;
  border-radius:38px;
  background:linear-gradient(145deg,#F0EDFF,#FAF9FF);
  color:#5D4DD9;
  font-size:54px;
  font-weight:900;
  letter-spacing:-.06em;
}

.home-score-placeholder strong{
  color:var(--yoruw-navy);
  font-size:24px;
}

.home-score-placeholder p{
  max-width:600px;
  margin:8px 0 0;
  color:#737784;
  line-height:1.6;
}

.home-share-section{
  padding:72px 0;
  background:
    radial-gradient(circle at 82% 20%,rgba(124,58,237,.18),transparent 28%),
    linear-gradient(135deg,#0D1026,#171A3D);
}

.home-share-section__inner{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:60px;
  align-items:center;
}

.home-share-section h2{
  max-width:800px;
  margin:0;
  color:#fff;
  font-size:clamp(34px,4.6vw,56px);
  line-height:1.03;
  letter-spacing:-.048em;
}

.home-share-section p{
  max-width:720px;
  margin:14px 0 0;
  color:#BFC2D2;
  font-size:16px;
  line-height:1.65;
}

.home-share-button{
  min-height:58px;
  display:inline-flex;
  align-items:center;
  gap:16px;
  padding:0 22px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:18px;
  background:#fff;
  color:#111426;
  font-weight:850;
  box-shadow:0 16px 40px rgba(0,0,0,.18);
}

.home-share-button span{
  color:#6556DC;
  font-size:22px;
}

@media(max-width:1050px){
  .home-hero__grid{
    grid-template-columns:1fr;
  }

  .experience-stage{
    max-width:720px;
    width:100%;
    margin:0 auto;
  }

  .home-experience-grid{
    grid-template-columns:1fr 1fr;
  }

  .home-business-row{
    grid-template-columns:44px minmax(0,1fr) 120px;
  }

  .home-business-row__experiences{
    display:none;
  }
}

@media(max-width:720px){
  .home-hero{
    padding:56px 0 48px;
  }

  .home-hero__title{
    font-size:49px;
  }

  .home-hero__lead{
    font-size:17px;
  }

  .yoruw-search{
    grid-template-columns:1fr;
    gap:0;
    padding:8px;
  }

  .yoruw-search__main{
    border-right:0;
    border-bottom:1px solid #ECECF3;
  }

  .yoruw-search__button{
    margin-top:7px;
  }

  .experience-stage{
    min-height:570px;
  }

  .experience-stage::before{
    inset:44px 0 34px;
  }

  .experience-stage__brand{
    left:28px;
  }

  .floating-experience{
    width:88%;
  }

  .floating-experience--1{
    left:5px;
  }

  .floating-experience--2{
    right:5px;
  }

  .floating-experience--3{
    left:28px;
  }

  .home-section-head{
    align-items:flex-start;
    flex-direction:column;
  }

  .home-experience-grid{
    grid-template-columns:1fr;
  }

  .home-experience-empty{
    align-items:flex-start;
    flex-direction:column;
  }

  .home-business-row{
    grid-template-columns:34px minmax(0,1fr) 86px;
    padding:13px 12px;
  }

  .home-business-row__score strong{
    font-size:19px;
  }

  .home-score-placeholder{
    grid-template-columns:1fr;
  }

  .home-share-section__inner{
    grid-template-columns:1fr;
  }

  .home-share-button{
    width:max-content;
  }
}

/* =========================================================
   YORUW BILLBOARD / BRAND MANIFESTO
   style.css dosyasının en altına ekle
   ========================================================= */

.yoruw-billboard{
  position:relative;
  overflow:hidden;
  padding:88px 0;
  background:
    radial-gradient(circle at 88% 18%,rgba(124,58,237,.24),transparent 26%),
    radial-gradient(circle at 65% 82%,rgba(99,102,241,.14),transparent 28%),
    linear-gradient(135deg,#0D1026 0%,#151936 56%,#1A1742 100%);
}

.yoruw-billboard::before{
  content:"";
  position:absolute;
  inset:0;
  opacity:.18;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size:48px 48px;
}

.yoruw-billboard__inner{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(420px,.95fr);
  gap:70px;
  align-items:center;
}

.yoruw-billboard__kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:18px;
  color:#BEB8FF;
  font-size:11px;
  font-weight:900;
  letter-spacing:.12em;
}

.yoruw-billboard__kicker::before{
  content:"";
  width:24px;
  height:1px;
  background:#8B7BFF;
}

.yoruw-billboard h2{
  max-width:860px;
  margin:0;
  color:#fff;
  font-size:clamp(42px,5.7vw,72px);
  line-height:.99;
  letter-spacing:-.058em;
}

.yoruw-billboard h2 span{
  display:block;
  margin-top:6px;
  background:linear-gradient(135deg,#FFFFFF,#BEB5FF 72%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.yoruw-billboard__manifesto{
  max-width:780px;
  margin:24px 0 0;
  color:#C8CBD8;
  font-size:18px;
  line-height:1.72;
}

.yoruw-billboard__manifesto strong{
  color:#fff;
}

.yoruw-billboard__signature{
  display:inline-flex;
  margin-top:30px;
  padding:11px 15px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  background:rgba(255,255,255,.07);
  color:#fff;
  font-size:14px;
  font-weight:850;
  backdrop-filter:blur(10px);
}

.yoruw-billboard__visual{
  position:relative;
  min-height:430px;
}

.billboard-orbit{
  position:absolute;
  border:1px solid rgba(183,175,255,.16);
  border-radius:50%;
}

.billboard-orbit--one{
  width:380px;
  height:380px;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
}

.billboard-orbit--two{
  width:280px;
  height:280px;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
}

.billboard-node{
  position:absolute;
  width:185px;
  min-height:120px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:18px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:22px;
  background:rgba(255,255,255,.08);
  box-shadow:0 24px 60px rgba(0,0,0,.22);
  backdrop-filter:blur(18px);
}

.billboard-node__icon{
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  margin-bottom:11px;
  border-radius:12px;
  background:rgba(255,255,255,.12);
  color:#CFC9FF;
  font-size:18px;
}

.billboard-node strong{
  color:#fff;
  font-size:15px;
}

.billboard-node small{
  margin-top:5px;
  color:#AEB2C2;
  font-size:11px;
  line-height:1.45;
}

.billboard-node--customer{
  left:0;
  top:42px;
}

.billboard-node--experience{
  right:8px;
  top:150px;
  background:linear-gradient(
    145deg,
    rgba(99,102,241,.18),
    rgba(255,255,255,.08)
  );
}

.billboard-node--business{
  left:70px;
  bottom:12px;
}

.billboard-flow{
  position:absolute;
  color:#8E7EFF;
  font-size:28px;
  font-weight:300;
  opacity:.9;
}

.billboard-flow--one{
  left:205px;
  top:112px;
  transform:rotate(20deg);
}

.billboard-flow--two{
  right:120px;
  top:285px;
  transform:rotate(128deg);
}

.billboard-loop{
  position:absolute;
  right:14px;
  bottom:26px;
  display:flex;
  align-items:center;
  gap:8px;
  color:#9FA3B5;
  font-size:11px;
  font-weight:700;
}

.billboard-loop span{
  color:#A898FF;
  font-size:22px;
}

@media(max-width:1000px){
  .yoruw-billboard__inner{
    grid-template-columns:1fr;
  }

  .yoruw-billboard__visual{
    max-width:620px;
    width:100%;
    margin:0 auto;
  }
}

@media(max-width:700px){
  .yoruw-billboard{
    padding:62px 0;
  }

  .yoruw-billboard h2{
    font-size:43px;
  }

  .yoruw-billboard__manifesto{
    font-size:16px;
  }

  .yoruw-billboard__visual{
    min-height:500px;
  }

  .billboard-node{
    width:165px;
  }

  .billboard-node--customer{
    left:0;
  }

  .billboard-node--experience{
    right:0;
    top:175px;
  }

  .billboard-node--business{
    left:30px;
    bottom:18px;
  }

  .billboard-flow--one,
  .billboard-flow--two{
    display:none;
  }
}


/* YORUW — HERO + BILLBOARD UPDATE */
.yoruw-hero-visual{position:relative;min-height:500px;isolation:isolate}
.yh-orbit{position:absolute;left:50%;top:48%;transform:translate(-50%,-50%);border:1px solid rgba(99,54,241,.15);border-radius:50%;pointer-events:none}
.yh-orbit--outer{width:440px;height:350px}
.yh-orbit--inner{width:300px;height:300px}
.yh-brandmark{position:absolute;left:50%;top:47%;transform:translate(-50%,-50%);width:210px;height:180px;filter:drop-shadow(0 24px 30px rgba(99,54,241,.24))}
.yh-y{position:absolute;left:14px;top:0;font-size:176px;line-height:1;font-weight:900;font-family:Inter,sans-serif;font-style:italic;color:#6B48F5;transform:rotate(-5deg)}
.yh-o{position:absolute;right:8px;top:48px;width:88px;height:88px;border:19px solid #6B48F5;border-radius:50%;background:#fff}
.yh-o:after{content:"";position:absolute;left:-14px;bottom:-25px;border-width:20px 25px 0 0;border-style:solid;border-color:#6B48F5 transparent transparent transparent;transform:rotate(-10deg)}
.yh-o i{position:relative;z-index:2;display:inline-block;width:8px;height:8px;margin:21px 1px 0;border-radius:50%;background:#6B48F5}
.yh-o i:first-child{margin-left:8px}
.yh-person{position:absolute;z-index:3;text-align:center;color:#4e3be5;font-size:13px;font-weight:800}
.yh-person__photo{width:132px;height:132px;border-radius:50%;background:linear-gradient(145deg,#f0eaff,#d9d1ff);box-shadow:0 16px 38px rgba(39,33,84,.10)}
.yh-person--user{left:4%;top:5%}
.yh-person--business{right:3%;top:34%}
.yh-person span{display:block;margin-top:9px}
.yh-short{position:absolute;left:5%;bottom:24%;font-size:13px;font-weight:800;color:#4e3be5}
.yh-summary{position:absolute;left:50%;bottom:2%;transform:translateX(-50%);display:flex;width:min(95%,520px);justify-content:center;gap:0;background:rgba(255,255,255,.9);border:1px solid rgba(13,16,38,.06);border-radius:14px;box-shadow:0 12px 35px rgba(26,21,70,.08);overflow:hidden}
.yh-summary span{padding:14px 18px;font-size:11px;font-weight:750;color:#24243a;white-space:nowrap}
.yh-summary span+span{border-left:1px solid #eceaf7}

.yoruw-billboard{position:relative;overflow:hidden;padding:90px 0;background:linear-gradient(135deg,#0D1026,#17183b 58%,#21194d);color:#fff}
.yoruw-billboard:after{content:"";position:absolute;width:520px;height:520px;right:-160px;top:-200px;border-radius:50%;background:radial-gradient(circle,rgba(99,54,241,.34),transparent 68%)}
.yoruw-billboard__inner{position:relative;z-index:2;display:grid;grid-template-columns:1.05fr .95fr;gap:70px;align-items:center}
.yoruw-billboard__kicker{font-size:11px;letter-spacing:.14em;font-weight:850;color:#bcb4ff}
.yoruw-billboard h2{margin:16px 0 22px;font-size:clamp(42px,5vw,70px);line-height:1;letter-spacing:-.055em}
.yoruw-billboard h2 span{display:block;color:#c7c0ff}
.yoruw-billboard__copy p{max-width:700px;color:#c8cad7;font-size:18px;line-height:1.7}
.yoruw-billboard__copy p strong{color:#fff}
.yoruw-billboard__signature{display:inline-flex;margin-top:22px;padding:11px 16px;border:1px solid rgba(255,255,255,.14);border-radius:999px;background:rgba(255,255,255,.07);font-weight:800}
.yoruw-billboard__story{display:flex;align-items:center;gap:10px}
.yb-card{flex:1;min-height:190px;padding:22px;border:1px solid rgba(255,255,255,.12);border-radius:24px;background:rgba(255,255,255,.07);backdrop-filter:blur(14px)}
.yb-card b{display:block;color:#9283ff;font-size:12px;margin-bottom:48px}
.yb-card strong,.yb-card span{display:block}
.yb-card strong{font-size:15px}
.yb-card span{margin-top:8px;color:#aeb1c1;font-size:11px;line-height:1.5}
.yb-card--two{transform:translateY(-22px);background:rgba(105,76,245,.14)}
.yb-arrow{color:#8172f4;font-size:22px}

@media(max-width:900px){
 .yoruw-billboard__inner{grid-template-columns:1fr}
 .yoruw-billboard__story{margin-top:15px}
 .yh-person__photo{width:105px;height:105px}
}
@media(max-width:620px){
 .yoruw-hero-visual{min-height:430px}
 .yh-brandmark{transform:translate(-50%,-50%) scale(.78)}
 .yh-orbit--outer{width:330px;height:300px}
 .yh-person--business{right:0}
 .yh-summary{width:100%;overflow-x:auto;justify-content:flex-start}
 .yoruw-billboard__story{display:grid;grid-template-columns:1fr}
 .yb-card--two{transform:none}
 .yb-arrow{transform:rotate(90deg);text-align:center}
}

/* =========================================================
   YORUW HERO IMAGE UPDATE
   style.css dosyasının en altına ekle
   ========================================================= */

.home-hero__visual{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:0;
  min-height:500px;
}

.home-hero__visual::before{
  content:"";
  position:absolute;
  width:78%;
  aspect-ratio:1;
  border-radius:50%;
  background:
    radial-gradient(
      circle,
      rgba(112,78,245,.13) 0%,
      rgba(112,78,245,.06) 42%,
      rgba(112,78,245,0) 72%
    );
  filter:blur(5px);
  pointer-events:none;
}

.home-hero__visual-image{
  position:relative;
  z-index:2;
  display:block;
  width:100%;
  max-width:700px;
  height:auto;
  object-fit:contain;
  border-radius:34px;
  filter:
    drop-shadow(0 30px 60px rgba(65,47,145,.08));
}

@media(max-width:1050px){
  .home-hero__visual{
    min-height:auto;
    max-width:760px;
    width:100%;
    margin:10px auto 0;
  }

  .home-hero__visual-image{
    max-width:760px;
  }
}

@media(max-width:720px){
  .home-hero__visual{
    margin-top:8px;
  }

  .home-hero__visual-image{
    width:112%;
    max-width:none;
    margin-left:-6%;
    border-radius:24px;
  }
}



/* =========================================================
   YORUW ANA CTA — DENEYİMİNİ YAZ
   ========================================================= */
.button--experience{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  min-height:48px;
  padding:0 22px;
  border:1px solid rgba(99,102,241,.18);
  background:
    linear-gradient(135deg,#6255F6 0%,#7652F4 48%,#8A4DEB 100%);
  color:#fff;
  box-shadow:
    0 10px 28px rgba(99,82,246,.24),
    inset 0 1px 0 rgba(255,255,255,.22);
  letter-spacing:-.01em;
}
.button--experience::before{
  content:"";
  position:absolute;
  z-index:-1;
  width:90px;
  height:90px;
  right:-34px;
  top:-55px;
  border-radius:50%;
  background:rgba(255,255,255,.18);
  transition:transform .24s ease;
}
.button--experience:hover{
  color:#fff;
  transform:translateY(-1px);
  box-shadow:
    0 14px 32px rgba(99,82,246,.30),
    inset 0 1px 0 rgba(255,255,255,.24);
}
.button--experience:hover::before{
  transform:scale(1.28);
}
.button--experience__spark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:20px;
  height:20px;
  border-radius:7px;
  background:rgba(255,255,255,.15);
  font-size:12px;
  line-height:1;
}
.auth-secondary-action{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  margin-top:16px;
  color:var(--yoruw-muted);
  font-size:14px;
}
.auth-secondary-action a{
  color:#5E52D6;
  font-weight:800;
}
.auth-secondary-action a:hover{
  text-decoration:underline;
}

@media(max-width:700px){
  .site-header__actions .button--experience{
    min-height:40px;
    padding:0 12px;
    border-radius:12px;
    font-size:12px;
  }
  .button--experience__spark{
    width:17px;
    height:17px;
    border-radius:6px;
    font-size:10px;
  }
}


/* ================================================================
   Yoruw Cookie Consent
   ================================================================ */

.cookie-consent {
    position: relative;
    z-index: 9999;
}

.cookie-consent__banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px 22px;
    border: 1px solid #E5E4ED;
    border-radius: 18px;
    background: rgba(255,255,255,.97);
    box-shadow: 0 24px 70px rgba(25,24,48,.16);
    backdrop-filter: blur(16px);
}

.cookie-consent__copy {
    max-width: 720px;
}

.cookie-consent__copy strong {
    display: block;
    color: var(--yoruw-navy);
    font-size: 17px;
    margin-bottom: 5px;
}

.cookie-consent__copy p {
    margin: 0 0 5px;
    color: #676B7A;
    line-height: 1.55;
    font-size: 14px;
}

.cookie-consent__copy a {
    font-size: 13px;
    font-weight: 800;
}

.cookie-consent__actions,
.cookie-preferences__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.cookie-consent__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(16,16,27,.45);
    backdrop-filter: blur(3px);
}

.cookie-preferences {
    position: fixed;
    left: 50%;
    top: 50%;
    width: min(620px, calc(100vw - 32px));
    max-height: calc(100vh - 40px);
    overflow: auto;
    transform: translate(-50%,-50%);
    padding: 24px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 30px 90px rgba(17,16,40,.24);
}

.cookie-preferences__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.cookie-preferences__header h2 {
    margin: 4px 0 0;
    color: var(--yoruw-navy);
}

.cookie-preferences__close {
    width: 38px;
    height: 38px;
    border: 1px solid #E4E5EC;
    border-radius: 50%;
    background: #fff;
    color: #3A3C49;
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
}

.cookie-preferences__list {
    display: grid;
    gap: 10px;
    margin: 20px 0;
}

.cookie-preference {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 16px;
    border: 1px solid #E7E7EF;
    border-radius: 14px;
    background: #FAFAFC;
}

.cookie-preference strong {
    display: block;
    color: #272936;
    margin-bottom: 3px;
}

.cookie-preference p {
    margin: 0;
    color: #737786;
    font-size: 13px;
    line-height: 1.5;
}

.cookie-preference input[type="checkbox"] {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    accent-color: #6D55F7;
}

.cookie-preference__required {
    flex: 0 0 auto;
    padding: 6px 9px;
    border-radius: 999px;
    background: #EEEDF5;
    color: #626574;
    font-size: 11px;
    font-weight: 800;
}

.cookie-preferences__actions {
    justify-content: flex-end;
}

.cookie-consent__banner[hidden],
.cookie-consent__backdrop[hidden],
.cookie-preferences[hidden],
.cookie-consent[hidden] {
    display: none !important;
}

@media (max-width: 760px) {
    .cookie-consent__banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        display: block;
        padding: 17px;
    }

    .cookie-consent__actions {
        margin-top: 14px;
    }

    .cookie-consent__actions .button {
        flex: 1 1 auto;
    }

    .cookie-preferences {
        padding: 18px;
    }

    .cookie-preference {
        align-items: flex-start;
    }

    .cookie-preferences__actions .button {
        flex: 1 1 100%;
    }
}



/* ================================================================
   Yoruw Footer 2026
   ================================================================ */

.site-footer {
    margin-top: 72px;
    padding: 0 18px 18px;
    background: transparent;
}

.site-footer__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 42px 44px 0;
    border: 1px solid #ececf2;
    border-radius: 24px 24px 12px 12px;
    background: #fff;
    box-shadow: 0 18px 60px rgba(20, 24, 55, 0.06);
    overflow: hidden;
}

.site-footer__brand {
    grid-area: brand;
}

.site-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 0;
    color: #111633;
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.06em;
    text-decoration: none;
}

.site-footer__logo span {
    color: #7a5cff;
}

.site-footer__tagline {
    margin: 14px 0 0;
    color: #72778a;
    font-size: 16px;
}

.site-footer__description {
    max-width: 260px;
    margin: 16px 0 0;
    color: #64697b;
    font-size: 14px;
    line-height: 1.7;
}

.site-footer__socials {
    display: flex;
    gap: 9px;
    margin-top: 22px;
}

.site-footer__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #e1e3eb;
    border-radius: 50%;
    color: #596074;
    background: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: transform .18s ease, border-color .18s ease, color .18s ease;
}

.site-footer__socials a:hover {
    transform: translateY(-2px);
    border-color: #765df7;
    color: #684ff0;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(220px, 1.15fr) minmax(0, 4fr);
    grid-template-areas:
        "brand links"
        "bottom bottom";
    gap: 36px 56px;
}

.site-footer__links {
    grid-area: links;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 28px;
}

.site-footer__group {
    margin: 0;
    border: 0;
}

.site-footer__group summary {
    position: relative;
    list-style: none;
    margin-bottom: 16px;
    color: #15192f;
    font-size: 15px;
    font-weight: 800;
    cursor: default;
}

.site-footer__group summary::-webkit-details-marker {
    display: none;
}

.site-footer__group summary::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 9px;
    border-radius: 50%;
    background: #775cff;
    vertical-align: 2px;
}

.site-footer__group nav {
    display: grid;
    gap: 11px;
}

.site-footer__group nav a {
    color: #6b7082;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: color .18s ease, transform .18s ease;
}

.site-footer__group nav a::before {
    content: "›";
    display: inline-block;
    margin-right: 7px;
    color: #9ca0af;
}

.site-footer__group nav a:hover {
    color: #5c48df;
    transform: translateX(2px);
}

.site-footer__bottom {
    grid-area: bottom;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 0 -44px;
    padding: 20px 44px 22px;
    border-top: 1px solid #ececf3;
    background: linear-gradient(90deg, #fbfaff 0%, #f6f3ff 100%);
}

.site-footer__trust {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-footer__trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    color: #6c52f6;
    background: #eee9ff;
    font-size: 22px;
}

.site-footer__trust strong {
    display: block;
    color: #1a1d31;
    font-size: 14px;
}

.site-footer__trust span {
    display: block;
    margin-top: 2px;
    color: #777b8e;
    font-size: 13px;
}

.site-footer__copyright {
    color: #73788b;
    font-size: 13px;
    white-space: nowrap;
}

@media (max-width: 1040px) {
    .site-footer__inner {
        grid-template-columns: 1fr;
        grid-template-areas:
            "brand"
            "links"
            "bottom";
        gap: 30px;
    }

    .site-footer__links {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .site-footer__description {
        max-width: 520px;
    }
}

@media (max-width: 760px) {
    .site-footer {
        margin-top: 48px;
        padding: 0 10px 10px;
    }

    .site-footer__inner {
        padding: 0;
        border-radius: 20px;
        gap: 0;
    }

    .site-footer__brand {
        padding: 22px 18px 18px;
        border-bottom: 1px solid #ececf2;
    }

    .site-footer__logo {
        font-size: 30px;
    }

    .site-footer__tagline {
        margin-top: 10px;
        font-size: 14px;
    }

    .site-footer__description {
        display: none;
    }

    .site-footer__socials {
        margin-top: 16px;
    }

    .site-footer__links {
        display: block;
    }

    .site-footer__group {
        border-bottom: 1px solid #ececf2;
    }

    .site-footer__group summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin: 0;
        padding: 17px 18px;
        cursor: pointer;
        font-size: 15px;
    }

    .site-footer__group summary::before {
        width: 7px;
        height: 7px;
        margin-right: 9px;
    }

    .site-footer__group summary::after {
        content: "⌄";
        margin-left: auto;
        color: #697085;
        font-size: 18px;
        transition: transform .18s ease;
    }

    .site-footer__group[open] summary::after {
        transform: rotate(180deg);
    }

    .site-footer__group nav {
        padding: 0 18px 16px 34px;
        gap: 10px;
    }

    .site-footer__group nav a {
        font-size: 14px;
    }

    .site-footer__bottom {
        display: block;
        margin: 0;
        padding: 20px 16px;
        border-top: 0;
        text-align: center;
    }

    .site-footer__trust {
        justify-content: center;
        text-align: left;
    }

    .site-footer__copyright {
        margin-top: 18px;
    }
}


/* =========================================================
   YORUW — BUSINESS PROFILE MOBILE FIX
   2026-08-19
   /musteri-deneyimi/* sayfalarındaki mobil taşmaları düzeltir.
   Masaüstü görünümünü değiştirmez.
   ========================================================= */

@media (max-width: 700px) {

  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-container {
    width: calc(100% - 28px);
    max-width: 100%;
  }

  /* Profil üst alanı */
  .profile-hero {
    padding-top: 28px;
    overflow: hidden;
  }

  .profile-grid {
    width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .profile-grid > *,
  .profile-title > *,
  .profile-card,
  .profile-aside,
  .experience-card {
    min-width: 0;
    max-width: 100%;
  }

  .profile-title {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .profile-title h1 {
    max-width: 100%;
    margin-top: 4px;
    font-size: clamp(38px, 11vw, 50px);
    line-height: .98;
    overflow-wrap: anywhere;
  }

  .profile-title .button,
  .profile-title .button--experience {
    max-width: 100%;
  }

  /* Profil sekmeleri: ekranı büyütmek yerine kendi içinde kayar */
  .profile-tabs {
    width: 100%;
    max-width: 100%;
    gap: 24px;
    margin-top: 22px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .profile-tabs::-webkit-scrollbar {
    display: none;
  }

  .profile-tabs a {
    flex: 0 0 auto;
    padding: 13px 0;
    font-size: 14px;
  }

  /* Bölüm başlıkları ve sağdaki aksiyonlar */
  .profile-hero .section__head,
  .profile-grid .section__head,
  .profile-card .section__head,
  .experience-card .section__head {
    width: 100%;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .profile-hero .section__head > *,
  .profile-grid .section__head > *,
  .profile-card .section__head > * {
    min-width: 0;
    max-width: 100%;
  }

  .profile-hero .section__head h2,
  .profile-grid .section__head h2 {
    font-size: clamp(30px, 9vw, 40px);
    overflow-wrap: anywhere;
  }

  /* Deneyim kartları */
  .experience-card {
    width: 100%;
    padding: 18px;
    overflow: hidden;
  }

  .experience-card__head {
    width: 100%;
    min-width: 0;
    flex-wrap: wrap;
  }

  .experience-card p,
  .experience-card div,
  .experience-card span,
  .profile-card p,
  .profile-card div,
  .profile-card span {
    max-width: 100%;
  }

  .experience-card p,
  .profile-card p {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  /* Etiketler / chipler */
  .experience-card [class*="tag"],
  .experience-card [class*="chip"],
  .experience-card [class*="badge"] {
    max-width: 100%;
    white-space: normal;
  }

  /* Deneyim profili / puan ve bar alanları */
  .profile-card {
    width: 100%;
    padding: 18px;
    overflow: hidden;
  }

  .score-row {
    width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 7px;
  }

  .score-row > * {
    min-width: 0;
    max-width: 100%;
  }

  .score-bar {
    width: 100%;
    max-width: 100%;
  }

  /* Profil içindeki grid yapıları mobilde tek kolon */
  .profile-card [class*="grid"],
  .profile-grid [class*="grid"] {
    min-width: 0;
  }

  /* Resim ve medya hiçbir zaman viewport'u aşmasın */
  .profile-hero img,
  .profile-card img,
  .experience-card img,
  .profile-grid video,
  .profile-grid iframe {
    max-width: 100%;
    height: auto;
  }

  /* Uzun link / işletme bilgileri */
  .profile-card a:not(.button),
  .experience-card a:not(.button) {
    overflow-wrap: anywhere;
  }

  /* Mobil butonların sağa taşmasını engelle */
  .profile-hero .button,
  .profile-grid .button,
  .profile-card .button,
  .experience-card .button {
    max-width: 100%;
  }
}

@media (max-width: 430px) {

  .site-container {
    width: calc(100% - 24px);
  }

  .profile-title h1 {
    font-size: 38px;
  }

  .profile-tabs {
    gap: 20px;
  }

  .experience-card,
  .profile-card {
    padding: 16px;
    border-radius: 20px;
  }
}

.home-hero .yoruw-search input::placeholder {
    font-size: 9px;
}

@media (max-width: 768px) {
    .home-hero .yoruw-search input::placeholder {
        font-size: 13px;
    }
}


/* --------------------------------------------------------------------------
   YORUW SPONSORLU — ARAMA / KEŞFET KOMPAKT YERLEŞİMİ
   Arama sayfasında sponsorlu kartlar organik KEŞFET başlığının üstünde,
   masaüstünde yan yana ve mobilde alt alta görünür.
   -------------------------------------------------------------------------- */
.sponsored-wrap[data-ad-placement="search"]{
  margin:0 0 24px;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}
.sponsored-wrap[data-ad-placement="search"] .sponsored-head{
  margin:0 0 8px;
  min-height:auto;
}
.sponsored-wrap[data-ad-placement="search"] .sponsored-label{
  gap:5px;
  color:#6752E8;
  font-size:10px;
  font-weight:900;
  letter-spacing:.07em;
}
.sponsored-wrap[data-ad-placement="search"] .sponsored-label::before{
  content:"✦";
  font-size:9px;
}
.sponsored-wrap[data-ad-placement="search"] .sponsored-head__note,
.sponsored-wrap[data-ad-placement="search"] .sponsored-head__count{
  display:none;
}
.sponsored-wrap[data-ad-placement="search"] .sponsored-grid{
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}
.sponsored-wrap[data-ad-placement="search"] .sponsored-grid--single{
  grid-template-columns:minmax(0,1fr);
  max-width:calc(50% - 5px);
}
.sponsored-wrap[data-ad-placement="search"] .sponsored-card{
  min-height:0;
  padding:12px 14px;
  border:1px solid #E4DFFF;
  border-radius:15px;
  background:#fff;
  box-shadow:0 5px 16px rgba(57,43,128,.045);
}
.sponsored-wrap[data-ad-placement="search"] .sponsored-card:hover{
  border-color:#CFC6FF;
  transform:translateY(-1px);
  box-shadow:0 8px 20px rgba(57,43,128,.075);
}
.sponsored-wrap[data-ad-placement="search"] .sponsored-card__top{
  gap:7px;
}
.sponsored-wrap[data-ad-placement="search"] .sponsored-card__badge{
  min-height:18px;
  padding:2px 7px;
  font-size:8px;
  border-radius:999px;
}
.sponsored-wrap[data-ad-placement="search"] .sponsored-card__business{
  font-size:11px;
}
.sponsored-wrap[data-ad-placement="search"] .sponsored-card__domain{
  margin-top:5px;
  font-size:9.5px;
}
.sponsored-wrap[data-ad-placement="search"] .sponsored-card h3{
  margin:5px 0 3px;
  font-size:15px;
  line-height:1.22;
  letter-spacing:-.015em;
}
.sponsored-wrap[data-ad-placement="search"] .sponsored-card p{
  display:-webkit-box;
  overflow:hidden;
  margin:0;
  font-size:11.5px;
  line-height:1.38;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
}
.sponsored-wrap[data-ad-placement="search"] .sponsored-card__cta{
  margin-top:7px;
  font-size:10.5px;
  font-weight:800;
}

@media(max-width:700px){
  .sponsored-wrap[data-ad-placement="search"]{
    margin-bottom:20px;
  }
  .sponsored-wrap[data-ad-placement="search"] .sponsored-grid,
  .sponsored-wrap[data-ad-placement="search"] .sponsored-grid--single{
    grid-template-columns:1fr;
    max-width:none;
    gap:8px;
  }
  .sponsored-wrap[data-ad-placement="search"] .sponsored-card{
    padding:11px 13px;
    border-radius:14px;
  }
}


/* ================================================================
   Deneyim ek dosyaları — gizlilik / moderasyon
   ================================================================ */

.yoruw-media-gallery{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-start;
  gap:10px;
  margin-top:16px;
}

.yoruw-media-image{
  display:block;
  flex:0 0 180px;
  text-decoration:none;
}

.yoruw-media-image img{
  display:block;
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:14px;
  border:1px solid #E8E8F0;
  background:#F7F7FA;
}

.yoruw-media-locked,
.yoruw-media-document{
  box-sizing:border-box;
  display:grid;
  grid-template-columns:46px minmax(0,1fr) 28px;
  align-items:center;
  gap:12px;
  flex:0 1 430px;
  width:min(100%,430px);
  min-height:78px;
  padding:13px 14px;
  border:1px solid #E5E1F3;
  border-radius:17px;
  background:
    linear-gradient(
      135deg,
      #FBFAFF 0%,
      #F7F5FF 100%
    );
  color:#252638;
  text-align:left;
  text-decoration:none;
  box-shadow:0 8px 24px rgba(44,38,78,.045);
  transition:
    transform .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    background .18s ease;
}

button.yoruw-media-locked{
  appearance:none;
  -webkit-appearance:none;
  font:inherit;
  cursor:pointer;
}

.yoruw-media-locked:hover,
.yoruw-media-document:hover{
  transform:translateY(-1px);
  border-color:#CFC6F8;
  background:
    linear-gradient(
      135deg,
      #F9F7FF 0%,
      #F4F0FF 100%
    );
  box-shadow:0 12px 28px rgba(75,57,150,.08);
}

.yoruw-media-locked:focus-visible,
.yoruw-media-document:focus-visible{
  outline:3px solid rgba(101,79,227,.18);
  outline-offset:2px;
}

.yoruw-media-locked__icon,
.yoruw-media-document__icon{
  display:grid;
  place-items:center;
  width:46px;
  height:46px;
  border-radius:14px;
  background:#EEE9FF;
  color:#654FE3;
}

.yoruw-media-locked__icon svg{
  width:23px;
  height:23px;
}

.yoruw-media-document__icon{
  font-size:21px;
  line-height:1;
}

.yoruw-media-locked__copy{
  min-width:0;
}

.yoruw-media-locked strong,
.yoruw-media-document strong{
  display:block;
  color:#202235;
  font-size:13.5px;
  line-height:1.35;
  font-weight:850;
  letter-spacing:-.01em;
}

.yoruw-media-locked small,
.yoruw-media-document small{
  display:block;
  margin-top:4px;
  color:#777989;
  font-size:11.5px;
  line-height:1.45;
  font-weight:550;
}

.yoruw-media-locked__action{
  display:grid;
  place-items:center;
  width:28px;
  height:28px;
  border-radius:50%;
  background:#FFFFFF;
  border:1px solid #E2DDF5;
  color:#6A54DD;
  font-size:12px;
  line-height:1;
  font-weight:900;
  box-shadow:0 3px 10px rgba(58,46,115,.06);
}

.yoruw-media-notice[hidden]{
  display:none;
}

.yoruw-media-notice{
  position:fixed;
  inset:0;
  z-index:99999;
  display:grid;
  place-items:center;
  padding:20px;
}

.yoruw-media-notice__backdrop{
  position:absolute;
  inset:0;
  background:rgba(21,20,29,.55);
  backdrop-filter:blur(5px);
  -webkit-backdrop-filter:blur(5px);
}

.yoruw-media-notice__dialog{
  position:relative;
  z-index:1;
  box-sizing:border-box;
  width:min(520px,100%);
  padding:42px 38px 34px;
  border:1px solid rgba(231,227,244,.9);
  border-radius:26px;
  background:#FFFFFF;
  box-shadow:0 32px 100px rgba(22,19,40,.28);
  text-align:center;
}

.yoruw-media-notice__close{
  position:absolute;
  top:15px;
  right:15px;
  display:grid;
  place-items:center;
  width:38px;
  height:38px;
  padding:0;
  border:0;
  border-radius:50%;
  background:#F2F1F6;
  color:#83818D;
  font:500 26px/1 Arial,sans-serif;
  cursor:pointer;
  transition:background .18s ease,color .18s ease;
}

.yoruw-media-notice__close:hover{
  background:#EAE7F4;
  color:#4E475F;
}

.yoruw-media-notice__icon{
  display:grid;
  place-items:center;
  width:62px;
  height:62px;
  margin:1px auto 15px;
  border-radius:20px;
  background:#EEE9FF;
  color:#654FE3;
}

.yoruw-media-notice__icon svg{
  width:30px;
  height:30px;
}

.yoruw-media-notice__eyebrow{
  margin-bottom:9px;
  color:#6A54DD;
  font-size:10px;
  line-height:1;
  font-weight:900;
  letter-spacing:.12em;
}

.yoruw-media-notice__dialog h2{
  margin:0 auto 13px;
  max-width:430px;
  color:#202235;
  font-size:23px;
  line-height:1.3;
  font-weight:850;
  letter-spacing:-.025em;
}

.yoruw-media-notice__dialog p{
  margin:7px auto;
  max-width:430px;
  color:#686A78;
  font-size:14px;
  line-height:1.6;
}

.yoruw-media-notice__highlight{
  padding:12px 14px;
  border:1px solid #E7E2FA;
  border-radius:14px;
  background:#F8F6FF;
  color:#4D4960 !important;
}

.yoruw-media-notice__foot{
  color:#8A8B97 !important;
  font-size:12px !important;
}

.yoruw-media-notice__ok{
  min-width:180px;
  margin-top:18px;
  justify-content:center;
}

.yoruw-modal-open{
  overflow:hidden;
}

@media(max-width:620px){
  .yoruw-media-gallery{
    margin-top:14px;
  }

  .yoruw-media-locked,
  .yoruw-media-document{
    grid-template-columns:42px minmax(0,1fr) 26px;
    gap:10px;
    flex-basis:100%;
    width:100%;
    min-height:72px;
    padding:11px 12px;
    border-radius:15px;
  }

  .yoruw-media-locked__icon,
  .yoruw-media-document__icon{
    width:42px;
    height:42px;
    border-radius:13px;
  }

  .yoruw-media-locked__icon svg{
    width:21px;
    height:21px;
  }

  .yoruw-media-locked strong,
  .yoruw-media-document strong{
    font-size:13px;
  }

  .yoruw-media-locked small,
  .yoruw-media-document small{
    font-size:10.5px;
  }

  .yoruw-media-image{
    flex:1 1 135px;
    max-width:180px;
  }

  .yoruw-media-notice{
    padding:14px;
  }

  .yoruw-media-notice__dialog{
    padding:38px 22px 26px;
    border-radius:22px;
  }

  .yoruw-media-notice__dialog h2{
    font-size:20px;
  }

  .yoruw-media-notice__dialog p{
    font-size:13px;
  }

  .yoruw-media-notice__ok{
    width:100%;
  }
}

.yoruw-owner-media-list{
  display:grid;
  gap:10px;
  margin-top:14px;
}

.yoruw-owner-media-card{
  padding:13px 14px;
  border:1px solid #E7E6ED;
  border-radius:14px;
  background:#FAFAFC;
}

.yoruw-owner-media-card__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}

.yoruw-owner-media-card__file{
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:#3E3A4A;
  text-decoration:none;
}

.yoruw-owner-media-card__status{
  display:inline-flex;
  align-items:center;
  min-height:25px;
  padding:0 8px;
  border-radius:999px;
  background:#EEEAFD;
  color:#5E49DF;
  font-size:10px;
  font-weight:850;
}

.yoruw-owner-media-card p{
  margin:9px 0 0;
  color:#666572;
  font-size:12px;
  line-height:1.55;
}

.yoruw-owner-media-card__rejection{
  margin-top:11px;
  padding:12px 13px;
  border:1px solid #F0CECE;
  border-radius:12px;
  background:#FFF7F7;
}

.yoruw-owner-media-card__rejection > strong{
  color:#A22A2A;
  font-size:12px;
}

.yoruw-owner-media-card__replace{
  display:grid;
  gap:9px;
  margin-top:11px;
}

.yoruw-owner-media-card__replace input[type="file"]{
  width:100%;
  font-size:11px;
}

@media(max-width:700px){
  .yoruw-media-notice__dialog{
    padding:40px 22px 28px;
    border-radius:22px;
  }

  .yoruw-media-notice__dialog h2{
    font-size:21px;
  }

  .yoruw-media-notice__dialog p{
    font-size:14px;
  }

  .yoruw-media-notice__ok{
    width:100%;
  }
}


/* ================================================================
   Yoruw Mobile Header Menu
   ================================================================ */
.site-mobile-menu-toggle,
.site-mobile-menu{
  display:none;
}

@media(max-width:1000px){
  .site-header__inner{
    gap:14px;
  }

  .site-header__actions{
    gap:8px;
  }

  .site-mobile-menu-toggle{
    width:42px;
    height:42px;
    flex:0 0 42px;
    display:inline-flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:4px;
    padding:0;
    border:1px solid #E5E6EF;
    border-radius:13px;
    background:#fff;
    color:#202334;
    box-shadow:0 7px 20px rgba(18,22,45,.06);
    cursor:pointer;
  }

  .site-mobile-menu-toggle span{
    width:17px;
    height:2px;
    display:block;
    border-radius:999px;
    background:currentColor;
    transition:transform .2s ease,opacity .2s ease;
  }

  .site-mobile-menu-toggle[aria-expanded="true"] span:nth-child(1){
    transform:translateY(6px) rotate(45deg);
  }
  .site-mobile-menu-toggle[aria-expanded="true"] span:nth-child(2){
    opacity:0;
  }
  .site-mobile-menu-toggle[aria-expanded="true"] span:nth-child(3){
    transform:translateY(-6px) rotate(-45deg);
  }

  .site-mobile-menu{
    position:fixed;
    inset:0;
    z-index:999;
    display:block;
  }

  .site-mobile-menu[hidden]{
    display:none !important;
  }

  .site-mobile-menu__backdrop{
    position:absolute;
    inset:0;
    background:rgba(16,18,34,.40);
    backdrop-filter:blur(6px);
  }

  .site-mobile-menu__panel{
    position:absolute;
    top:0;
    right:0;
    width:min(88vw,390px);
    height:100%;
    overflow-y:auto;
    padding:24px 20px 28px;
    border-left:1px solid rgba(225,226,238,.9);
    background:#fff;
    box-shadow:-22px 0 60px rgba(20,22,45,.16);
  }

  .site-mobile-menu__head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:20px;
    margin-bottom:24px;
  }

  .site-mobile-menu__eyebrow,
  .site-mobile-menu__section-title{
    display:block;
    margin-bottom:5px;
    color:#6B4CF6;
    font-size:10px;
    font-weight:900;
    letter-spacing:.12em;
    text-transform:uppercase;
  }

  .site-mobile-menu__head strong{
    display:block;
    color:#16192A;
    font-size:24px;
    line-height:1.15;
  }

  .site-mobile-menu__close{
    width:38px;
    height:38px;
    flex:0 0 38px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0;
    border:0;
    border-radius:12px;
    background:#F1F1F6;
    color:#6F7180;
    font-size:25px;
    line-height:1;
    cursor:pointer;
  }

  .site-mobile-menu__nav{
    display:grid;
    gap:7px;
  }

  .site-mobile-menu__nav a{
    min-height:48px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:0 14px;
    border:1px solid transparent;
    border-radius:13px;
    color:#26293A;
    font-size:14px;
    font-weight:750;
    transition:background .18s ease,border-color .18s ease,color .18s ease;
  }

  .site-mobile-menu__nav a:hover{
    border-color:#E5E0FF;
    background:#F8F6FF;
    color:#5F45DC;
  }

  .site-mobile-menu__divider{
    height:1px;
    margin:20px 0;
    background:#ECECF2;
  }

  .site-mobile-menu__section-title{
    margin:0 0 8px 3px;
  }

  .site-mobile-menu__badge{
    min-width:24px;
    height:24px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0 7px;
    border-radius:999px;
    background:#6B4CF6;
    color:#fff;
    font-size:10px;
    font-weight:900;
  }

  .site-mobile-menu__nav a.site-mobile-menu__logout{
    margin-top:8px;
    color:#A03D4C;
    background:#FFF7F8;
  }

  html.yoruw-mobile-menu-open,
  html.yoruw-mobile-menu-open body{
    overflow:hidden;
  }
}

@media(max-width:700px){
  .site-container.site-header__inner{
    width:min(calc(100% - 24px),var(--container));
  }

  .site-brand{
    min-width:0;
  }

  .site-brand img{
    width:104px;
  }

  .site-header__actions{
    min-width:0;
    margin-left:auto;
  }

  .site-header__actions .button--experience{
    max-width:142px;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .site-mobile-menu-toggle{
    width:40px;
    height:40px;
    flex-basis:40px;
    border-radius:12px;
  }

  .site-mobile-menu__panel{
    width:min(92vw,370px);
    padding:20px 16px 24px;
  }
}

@media(max-width:430px){
  .site-header__actions .button--experience{
    min-height:38px;
    max-width:128px;
    padding:0 10px;
    font-size:11px;
  }

  .site-mobile-menu-toggle{
    width:38px;
    height:38px;
    flex-basis:38px;
  }
}


/* Yoruw topluluk rozetleri — #055 */
.yoruw-author-line{display:inline-flex;align-items:center;gap:7px;flex-wrap:wrap}
.yoruw-badge{--badge-ink:#287E69;--badge-bg:#E0F5EE;display:inline-flex;align-items:center;gap:4px;vertical-align:middle;border-radius:999px;padding:4px 9px;background:var(--badge-bg);color:var(--badge-ink);font-size:10px;font-weight:800;line-height:1.35;white-space:nowrap;letter-spacing:0;border:1px solid rgba(0,0,0,.045)}
.yoruw-badge__icon{font-size:13px;line-height:1}
.yoruw-badge--1{--badge-ink:#287E69;--badge-bg:#E0F5EE}
.yoruw-badge--2{--badge-ink:#377E40;--badge-bg:#EAF8DB}
.yoruw-badge--3{--badge-ink:#306EB5;--badge-bg:#E8F2FF}
.yoruw-badge--4{--badge-ink:#7952B5;--badge-bg:#F1E9FF}
.yoruw-badge--5{--badge-ink:#673DAB;--badge-bg:#EDE5FF}
.yoruw-badge--6{--badge-ink:#995E12;--badge-bg:#FFF1D5}
.yoruw-badge--7{--badge-ink:#986913;--badge-bg:#FFF2C5}
.yoruw-badge--8{--badge-ink:#975C28;--badge-bg:#FFE9CC}
.yoruw-badge--9{--badge-ink:#4A287F;--badge-bg:#EDE5FC}
.yoruw-badge--10{--badge-ink:#F0CA78;--badge-bg:#17171D;border-color:#C19C52}
.yoruw-badges-panel{margin-bottom:28px;padding:26px;border:1px solid #E9E4FB;background:linear-gradient(135deg,#fff 0%,#F9F7FF 100%);scroll-margin-top:115px}
.yoruw-badges-panel__head{display:flex;align-items:flex-start;justify-content:space-between;gap:14px;flex-wrap:wrap;margin-bottom:20px}
.yoruw-badges-panel__eyebrow{font-size:10px;font-weight:900;letter-spacing:.11em;color:#7151C4}
.yoruw-badges-panel__head h2{font-size:clamp(22px,3vw,30px);letter-spacing:-.035em;margin:5px 0}
.yoruw-badges-panel__head p{font-size:12px;line-height:1.5;color:#787384;margin:0}
.yoruw-badges-panel__level{font-size:10px;font-weight:900;color:#6C50CA;background:#EEE8FF;border-radius:999px;padding:8px 11px}
.yoruw-badges-panel__hero{display:flex;align-items:center;flex-wrap:wrap;gap:13px;padding:18px;background:#fff;border-radius:18px;border:1px solid #EAE6F5}
.yoruw-badges-panel__hero-icon{display:grid;place-items:center;flex-shrink:0;width:57px;height:57px;border-radius:17px;background:#F1EBFF;font-size:27px}
.yoruw-badges-panel__hero>div{flex:1;min-width:150px}
.yoruw-badges-panel__hero strong{font-size:19px;letter-spacing:-.02em}
.yoruw-badges-panel__hero p{font-size:12px;color:#857E92;margin:5px 0 0}
.yoruw-badges-panel__progress-top{display:flex;align-items:center;justify-content:space-between;gap:10px;margin:21px 0 10px;font-size:12px}
.yoruw-badges-panel__progress-top span{color:#786D94;font-weight:800;white-space:nowrap}
.yoruw-badges-panel__progress{height:10px;background:#EAE6F3;border-radius:999px;overflow:hidden}
.yoruw-badges-panel__progress span{display:block;height:100%;background:linear-gradient(90deg,#B38DFF,#6848ED);border-radius:inherit;transition:width .3s ease}
.yoruw-badges-panel__remaining{font-size:11px;color:#777082;margin:9px 0 21px}
.yoruw-badges-panel__collection{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:10px}
.yoruw-badges-panel__item{display:flex;flex-direction:column;align-items:center;text-align:center;gap:5px;padding:15px 6px 12px;border:1px solid #EAE6F3;border-radius:14px;background:#fff;min-width:0}
.yoruw-badges-panel__item-icon{display:grid;place-items:center;width:47px;height:47px;border-radius:15px;font-size:23px;background:var(--badge-bg);color:var(--badge-ink)}
.yoruw-badges-panel__item strong{font-size:11px;line-height:1.3;color:#383041;overflow-wrap:anywhere}
.yoruw-badges-panel__item small{font-size:9px;color:#817D8A;line-height:1.35}
.yoruw-badges-panel__item.is-locked{background:#F8F8FA;border-style:dashed}
.yoruw-badges-panel__item.is-locked .yoruw-badges-panel__item-icon{background:#EDEDF0;color:#999}
.yoruw-badges-panel__item.is-locked strong{color:#A3A0AA}
.yoruw-badges-panel__fineprint{font-size:10px;color:#898291;line-height:1.6;margin:18px 0 0}
@media(max-width:760px){.yoruw-badges-panel__collection{grid-template-columns:repeat(3,minmax(0,1fr))}.yoruw-badges-panel{padding:18px}.yoruw-badges-panel__item{padding:12px 4px}.yoruw-badge{font-size:9px;padding:4px 7px}}
@media(max-width:430px){.yoruw-badges-panel__collection{grid-template-columns:repeat(2,minmax(0,1fr))}}

/* 056 | Public user display preferences + read-only experience profile */
.yoruw-author-link{color:inherit;text-decoration:none;border-bottom:1px solid transparent;transition:color .15s,border-color .15s}
.yoruw-author-link:hover,.yoruw-author-link:focus-visible{color:#6247DF;border-bottom-color:currentColor}
.home-experience-card h3 a:hover,.home-experience-card__business a:hover{color:#6547E4}
.yoruw-privacy-settings{margin-bottom:30px;scroll-margin-top:105px}
.yoruw-privacy-settings__card{padding:28px}
.yoruw-name-choice{border:0;padding:0;margin:0;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:13px;min-width:0}
.yoruw-name-choice legend{font-weight:850;font-size:14px;margin-bottom:13px}
.yoruw-name-choice__option{display:flex;align-items:flex-start;gap:12px;min-width:0;border:1px solid #E6E1EE;border-radius:15px;background:#FAFAFD;padding:18px;cursor:pointer}
.yoruw-name-choice__option:has(input:checked){background:#F7F4FF;border-color:#8469EA;box-shadow:0 0 0 2px rgba(120,88,230,.09)}
.yoruw-name-choice__option input{accent-color:#6547E4;margin-top:4px;flex:none}
.yoruw-name-choice__option span{display:grid;gap:5px;min-width:0}
.yoruw-name-choice__option strong{font-size:13px;line-height:1.4}
.yoruw-name-choice__option small{color:#6D6B7F;font-size:13px}
.yoruw-privacy-settings__hint{color:#6E7180;font-size:12px;line-height:1.6;margin:16px 0 20px}
.yoruw-privacy-settings__actions{display:flex;gap:10px;align-items:center;justify-content:space-between;flex-wrap:wrap}
.yoruw-reviewer-page{padding-top:32px;padding-bottom:78px}
.yoruw-reviewer-back{display:inline-flex;align-items:center;gap:5px;margin-bottom:17px;color:#6557B2;font-size:13px;font-weight:750}
.yoruw-reviewer-back:hover{text-decoration:underline}
.yoruw-reviewer-profile{display:flex;align-items:center;gap:24px;padding:30px;border-radius:24px;background:linear-gradient(105deg,#FFF 0%,#F8F6FF 100%);border-color:#E6E1FA}
.yoruw-reviewer-profile__avatar{width:76px;height:76px;min-width:76px;display:grid;place-items:center;border-radius:22px;color:#6A50E4;background:#EBE6FF;font-size:37px}
.yoruw-reviewer-profile h1{font-size:clamp(26px,4vw,40px);line-height:1.16;letter-spacing:-.04em;margin:7px 0 10px;overflow-wrap:anywhere}
.yoruw-reviewer-profile__meta{display:flex;gap:10px;flex-wrap:wrap;align-items:center;color:#5B5970;font-weight:750;font-size:12px}
.yoruw-reviewer-profile__identity p{color:#81818D;font-size:12px;line-height:1.6;margin:13px 0 0}
.yoruw-reviewer-list-head{display:flex;justify-content:space-between;gap:16px;align-items:end;margin:35px 0 17px}
.yoruw-reviewer-list-head h2{font-size:clamp(23px,3vw,30px);letter-spacing:-.035em;margin:6px 0 0}
.yoruw-reviewer-list{display:grid;gap:14px;max-width:960px}
.yoruw-reviewer-review{padding:24px;border-radius:19px}
.yoruw-reviewer-review__head{display:flex;justify-content:space-between;align-items:center;gap:12px;flex-wrap:wrap}
.yoruw-reviewer-review__business{font-weight:850;font-size:16px;color:#22253A}
.yoruw-reviewer-review__business:hover{color:#6848E7}
.yoruw-reviewer-review__head time{font-size:12px;color:#838694}
.yoruw-reviewer-review__rating{display:flex;align-items:center;gap:12px;margin-top:13px;color:#E89B24;font-size:19px;letter-spacing:2px}
.yoruw-reviewer-review__rating strong{font-size:12px;letter-spacing:0;color:#585C6A}
.yoruw-reviewer-review__empty{color:#D1D3DB}
.yoruw-reviewer-review h3{font-size:16px;margin:13px 0 7px}
.yoruw-reviewer-review p{font-size:14px;line-height:1.7;color:#454858;margin:9px 0 15px;overflow-wrap:anywhere}
.yoruw-reviewer-review__details{font-size:12px;color:#694ADB;font-weight:800}
.yoruw-reviewer-review__details:hover{text-decoration:underline}
.yoruw-reviewer-pagination{display:flex;align-items:center;justify-content:center;gap:18px;margin:28px 0 0}
.yoruw-reviewer-pagination span{color:#85808F;font-size:12px;font-weight:800}
@media(max-width:700px){
  .yoruw-name-choice{grid-template-columns:1fr}
  .yoruw-privacy-settings__card{padding:18px}
  .yoruw-privacy-settings__actions{align-items:stretch;flex-direction:column-reverse}
  .yoruw-privacy-settings__actions .button{width:100%}
  .yoruw-reviewer-profile{align-items:flex-start;gap:14px;padding:19px;flex-direction:column}
  .yoruw-reviewer-profile__avatar{width:55px;height:55px;min-width:55px;border-radius:16px;font-size:29px}
  .yoruw-reviewer-review{padding:19px}
  .yoruw-reviewer-list-head{align-items:flex-start;flex-direction:column}
  .yoruw-reviewer-pagination{gap:9px;flex-wrap:wrap}
}

/* 057 | PROFİL AYARLARI: photo, privacy, account and security */
.yoruw-profile-settings{display:grid;gap:16px;margin-bottom:35px}
.yoruw-profile-settings>.home-section-head{margin-bottom:0}
.yoruw-profile-settings__card{padding:27px;border-radius:20px}
.yoruw-profile-settings__head{display:flex;justify-content:space-between;align-items:center;gap:22px;margin-bottom:19px}
.yoruw-profile-settings__eyebrow{display:block;font-size:10px;letter-spacing:.09em;font-weight:900;color:#7154E6;margin-bottom:6px}
.yoruw-profile-settings__card h3{font-size:21px;letter-spacing:-.035em;margin:0 0 7px;color:#242238}
.yoruw-profile-settings__head p,.yoruw-profile-settings__intro{font-size:13px;color:#737285;line-height:1.6;margin:0 0 13px}
.yoruw-profile-settings__head p{margin:0}
.yoruw-profile-settings__avatar{flex:none;width:88px;height:88px;display:grid;place-items:center;background:#EDE7FF;color:#7454DE;border-radius:25px;overflow:hidden;font-size:39px}
.yoruw-profile-settings__avatar img,.yoruw-reviewer-profile__avatar img{width:100%;height:100%;display:block;object-fit:cover}
.yoruw-profile-settings__photo-form{display:flex;align-items:center;flex-wrap:wrap;gap:12px}
.yoruw-profile-settings__file-label{font-size:12px;font-weight:800;color:#4D4769}
.yoruw-profile-settings__photo-form input[type=file]{flex:1 1 250px;min-width:0;max-width:410px;font-size:12px;color:#5A5869}
.yoruw-profile-settings__note{display:block;margin-top:12px;font-size:11px;line-height:1.55;color:#7F7D8C}
.yoruw-profile-settings__remove-form{margin-top:10px}
.yoruw-profile-settings__text-button{background:transparent;border:0;padding:5px 0;color:#9F4751;font-size:12px;font-weight:750;cursor:pointer;text-decoration:underline;text-underline-offset:3px}
.yoruw-profile-settings__details{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:15px;margin:18px 0 0}
.yoruw-profile-settings__details>div{padding:14px;background:#FAF9FD;border:1px solid #EDEAF3;border-radius:12px;min-width:0}
.yoruw-profile-settings__details dt{font-size:11px;color:#777589;margin-bottom:5px}
.yoruw-profile-settings__details dd{margin:0;font-size:13px;font-weight:800;color:#2C2939;overflow-wrap:anywhere}
.yoruw-profile-settings__reset-form{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;margin-top:16px}
.yoruw-profile-settings__reset-destination{display:grid;gap:4px;min-width:0}
.yoruw-profile-settings__reset-destination small{color:#898594;font-size:11px}
.yoruw-profile-settings__reset-destination strong{color:#302B42;font-size:13px;overflow-wrap:anywhere}
.yoruw-comment-avatar-link{display:inline-flex;align-items:center;vertical-align:middle;flex:0 0 auto;text-decoration:none}
.yoruw-comment-avatar{display:block;width:27px;height:27px;object-fit:cover;border-radius:50%;border:1px solid #E7E2F2}
.home-experience-card__user .yoruw-comment-avatar{display:inline-block;width:20px;height:20px;vertical-align:middle}
@media(max-width:700px){
 .yoruw-profile-settings__card{padding:18px}
 .yoruw-profile-settings__head{gap:12px;align-items:flex-start}
 .yoruw-profile-settings__avatar{width:66px;height:66px;border-radius:18px;font-size:30px}
 .yoruw-profile-settings__details{grid-template-columns:1fr}
 .yoruw-profile-settings__photo-form{align-items:stretch;flex-direction:column}
 .yoruw-profile-settings__photo-form input[type=file]{width:100%;flex:0 0 auto}
 .yoruw-profile-settings__photo-form .button,.yoruw-profile-settings__reset-form .button{width:100%;justify-content:center}
 .yoruw-profile-settings__reset-form{align-items:stretch;flex-direction:column}
}

/* 057-R1: photos are private until admin approval */
.yoruw-avatar-review-note{background:#F5F2FF;border:1px solid #DDD5FB;border-radius:13px;padding:14px;margin:0 0 16px;color:#4C3B92}
.yoruw-avatar-review-note strong{font-size:13px}
.yoruw-avatar-review-note p{font-size:12px;color:#6C6590;line-height:1.5;margin:6px 0}
.yoruw-avatar-review-note--rejected{background:#FFF7F4;border-color:#EFDCD7;color:#9A4643}
.yoruw-avatar-queue{display:grid;gap:17px;margin-top:20px}
.yoruw-avatar-queue__item{display:flex;gap:23px;align-items:flex-start;padding:18px;border:1px solid #E9E5F0;border-radius:17px}
.yoruw-avatar-queue__image{display:block;width:190px;height:190px;object-fit:cover;border-radius:17px;border:1px solid #E6E2EF}
.yoruw-avatar-queue__detail{flex:1;min-width:0;display:grid;gap:9px}
.yoruw-avatar-queue__old{width:46px;height:46px;object-fit:cover;border-radius:50%}
.yoruw-avatar-queue__actions{display:flex;align-items:flex-start;flex-wrap:wrap;gap:17px}
.yoruw-avatar-queue__reject{flex:1;display:grid;gap:7px;max-width:430px}
@media(max-width:660px){.yoruw-avatar-queue__item{flex-direction:column;padding:13px}.yoruw-avatar-queue__image{width:100%;max-width:250px}.yoruw-avatar-queue__actions{flex-direction:column;width:100%}.yoruw-avatar-queue__actions form,.yoruw-avatar-queue__reject{width:100%;max-width:100%}}

/* 058 — Yoruw Onaylı, separate from ten earned community badges. */
.yoruw-verified{display:inline-flex;vertical-align:middle;align-items:center;justify-content:center;flex:none;width:25px;height:25px;margin-left:4px;border-radius:50%;background:#eff5ff;cursor:help;}
.yoruw-verified img{display:block;width:23px;height:23px;object-fit:contain;}
.yoruw-verified-card__icon{width:48px;height:48px;vertical-align:middle;object-fit:contain;}
.yoruw-verified-card__price{display:grid;gap:4px;white-space:nowrap;color:#2977eb;text-align:right;}
.yoruw-verified-card__price small{font-weight:500;font-size:11px;color:#7e8399;}
.yoruw-verified-card p{line-height:1.65;}
.yoruw-verified-disclosure{font-size:12px;color:#596073;line-height:1.6;background:#f5f8ff;border:1px solid #dce9ff;border-radius:10px;padding:10px 12px;margin:12px 0;}
.yoruw-verified-paid-label{display:inline-flex;margin:0 0 10px;padding:4px 9px;border-radius:999px;border:1px solid #dce9ff;background:#f2f7ff;color:#2b69c9;font-size:11px;font-weight:700;}
@media(max-width:650px){.yoruw-verified-card__price{text-align:left;}.yoruw-verified-card .yoruw-profile-settings__head{flex-wrap:wrap;}}
