/* ═══════════════════════════════════════════
   Melina Bella — main.css
   Todos los estilos del tema
════════════════════════════════════════════ */

/* ────────────────────────────────────────────
   VARIABLES & RESET    
──────────────────────────────────────────── */
:root {
  --blue:      #9ED6F1;
  --orange:    #F7B375;
  --purple:    #A7A9D4;
  --blue-dk:   #5BB8E8;
  --orange-dk: #F09040;
  --purple-dk: #7577B8;
  --cream:     #EDEAE3;
  --ink:       #2C2C3A;
  --muted:     #7A7A8C;
  /*--font-display: 'Cormorant Garamond', Georgia, serif;*/
  font-display: 'Open Sans', sans-serif;
  --font-body:   'Open Sans', sans-serif;
  --radius: 18px;
  --shadow: 0 8px 40px rgba(44,44,58,.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--ink); overflow-x: hidden; }

/* ────────────────────────────────────────────
   TIPOGRAFÍA HELPERS
──────────────────────────────────────────── */
.display-font { font-family: var(--font-display); }
.section-tag {
  display: inline-block; font-size: .7rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  padding: .3rem .9rem; border-radius: 50px; margin-bottom: 1rem;
}
.tag-blue   { background: var(--blue);   color: #1a5f80; }
.tag-orange { background: var(--orange); color: #7a3d08; }
.tag-purple { background: var(--purple); color: #3d3d80; }

.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; line-height: 1.1; }
.section-title strong { font-weight: 600; }
.section-title em     { font-style: italic; color: var(--purple-dk); }
.section-subtitle     { color: var(--muted); max-width: 560px; line-height: 1.7; font-size: .95rem; margin-top: .8rem; }

/* ────────────────────────────────────────────
   NAVBAR
──────────────────────────────────────────── */
#main-nav {
  background: rgba(253,250,246,.92); backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(167,169,212,.2);
  transition: box-shadow .3s; padding: .6rem 0;
}
#main-nav.scrolled { box-shadow: 0 4px 30px rgba(44,44,58,.08); }
.navbar-brand { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--ink) !important; line-height: 1.1; }
.navbar-brand span { display: block; font-size: .7rem; font-family: var(--font-body); font-weight: 400; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.nav-link { font-size: .82rem; font-weight: 500; letter-spacing: .04em; color: var(--ink) !important; transition: color .2s; padding: .4rem .8rem !important; }
.nav-link:hover { color: var(--purple-dk) !important; }
.btn-nav-cta { background: var(--purple); color: var(--ink); border: none; border-radius: 50px; font-size: .8rem; font-weight: 600; letter-spacing: .05em; padding: .45rem 1.2rem; transition: background .2s, transform .15s; }
.btn-nav-cta:hover { background: var(--purple-dk); color: #fff; transform: translateY(-1px); }

/* ────────────────────────────────────────────
   HERO
──────────────────────────────────────────── */
#hero { min-height: 100vh; display: flex; align-items: center; background: linear-gradient(135deg, #f0f8fe 0%, #fdfaf6 55%, #f5f3ff 100%); padding: 7rem 0 4rem; position: relative; overflow: hidden; }
#hero::before { content: ''; position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(158,214,241,.35) 0%, transparent 70%); top: -120px; right: -150px; border-radius: 50%; animation: float 8s ease-in-out infinite; }
#hero::after  { content: ''; position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(167,169,212,.25) 0%, transparent 70%); bottom: -80px; left: -100px; border-radius: 50%; animation: float 10s ease-in-out infinite reverse; }
@keyframes float { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.04); } }

.hero-title { font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 5.2rem); font-weight: 300; line-height: 1.08; letter-spacing: -.01em; }
.hero-title em     { font-style: italic; color: var(--purple-dk); }
.hero-title strong { font-weight: 600; }
.hero-subtitle     { font-size: 1.05rem; color: var(--muted); line-height: 1.7; max-width: 500px; }
.hero-badge { display: inline-flex; align-items: center; gap: .5rem; background: #fff; border: 1px solid rgba(167,169,212,.3); border-radius: 50px; padding: .4rem 1rem; font-size: .78rem; color: var(--muted); box-shadow: 0 2px 12px rgba(44,44,58,.06); }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #4DB847; display: inline-block; }

.hero-photo-wrap   { position: relative; display: flex; justify-content: center; }
.hero-photo-frame  { width: 360px; height: 420px; background: linear-gradient(145deg, var(--blue) 0%, var(--purple) 100%); border-radius: 50% 50% 48% 52% / 55% 55% 45% 45%; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; position: relative; box-shadow: 0 30px 80px rgba(91,184,232,.25); animation: morph 9s ease-in-out infinite; }
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
@keyframes morph { 0%,100% { border-radius: 50% 50% 48% 52% / 55% 55% 45% 45%; } 50% { border-radius: 44% 56% 52% 48% / 48% 52% 48% 52%; } }
.hero-photo-placeholder { font-family: var(--font-display); font-size: 7rem; font-weight: 300; color: rgba(255,255,255,.45); user-select: none; line-height: 1; padding-bottom: 1.5rem; }

.float-card { position: absolute; background: #fff; border-radius: 14px; padding: .8rem 1.1rem; box-shadow: var(--shadow); font-size: .8rem; animation: floatCard 6s ease-in-out infinite; }
.float-card:nth-child(2) { animation-delay: -3s; }
.float-card-1 { top: 40px; left: -40px; }
.float-card-2 { bottom: 80px; right: -30px; }
.float-card .fc-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; line-height: 1; }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ────────────────────────────────────────────
   BOTONES
──────────────────────────────────────────── */
.btn-primary-custom { background: var(--orange); color: var(--ink); border: none; border-radius: 50px; font-weight: 600; font-size: .9rem; padding: .8rem 2rem; transition: background .2s, transform .15s, box-shadow .2s; box-shadow: 0 6px 24px rgba(247,179,117,.35); }
.btn-primary-custom:hover { background: var(--orange-dk); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(247,179,117,.45); }
.btn-outline-custom { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); border-radius: 50px; font-weight: 500; font-size: .9rem; padding: .8rem 2rem; transition: all .2s; }
.btn-outline-custom:hover { background: var(--ink); color: #fff; }



/* ────────────────────────────────────────────
   breadcrumb
──────────────────────────────────────────── */
.breadcrumb-wrapper {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
    color: #6c757d;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    padding: 0 0.5rem;
    color: #adb5bd;
}

.breadcrumb-item a {
     color: #6E8EA0;
    text-decoration: none;
	font-weight:bold;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #F6B272;
}
/* ────────────────────────────────────────────
   CREDENTIALS STRIP
──────────────────────────────────────────── */

#credentials { background: var(--ink); padding: 1.6rem 0; overflow: hidden; }
.cred-icon {height: 48px;width: auto;object-fit: contain;}
/*.cred-strip { display: flex; gap: 3rem; animation: marquee 18s linear infinite; white-space: nowrap; }*/
.cred-strip { display: flex; gap: 3rem; animation: marquee 50s linear infinite; white-space: nowrap; }
.cred-item  { display: flex; align-items: center; gap: .6rem; color: rgba(255,255,255,.7); font-size: .8rem; letter-spacing: .05em; text-transform: uppercase; flex-shrink: 0; }
.cred-item i { color: var(--orange); font-size: 1rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ────────────────────────────────────────────
   SOBRE MÍ
──────────────────────────────────────────── */
#sobre-mi { padding: 7rem 0; background: #fff; }
.about-text { font-family: var(--font-display); font-size: clamp(1.3rem, 2.5vw, 1.75rem); font-weight: 300; line-height: 1.6; color: var(--ink); }
.about-text em { font-style: italic; color: var(--purple-dk); }
.stat-card  { background: var(--cream); border-radius: var(--radius); padding: 1.8rem; text-align: center; border: 1px solid rgba(167,169,212,.2); }
.stat-card .num   { font-family: var(--font-display); font-size: 3rem; font-weight: 600; line-height: 1; }
.stat-card .label { font-size: .8rem; color: var(--muted); margin-top: .3rem; }

/* ────────────────────────────────────────────
   SERVICIOS
──────────────────────────────────────────── */
#servicios { padding: 7rem 0; background: var(--cream); }
.service-card { background: #fff; border-radius: var(--radius); padding: 2.2rem; height: 100%; border: 1px solid transparent; transition: transform .25s, box-shadow .25s, border-color .25s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; border-radius: var(--radius) var(--radius) 0 0; }
.service-card.sc-blue::before   { background: var(--blue); }
.service-card.sc-orange::before { background: var(--orange); }
.service-card.sc-purple::before { background: var(--purple); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(167,169,212,.25); }
.service-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.2rem; }
.si-blue   { background: rgba(158,214,241,.2); color: var(--blue-dk); }
.si-orange { background: rgba(247,179,117,.2); color: var(--orange-dk); }
.si-purple { background: rgba(167,169,212,.2); color: var(--purple-dk); }
.service-card h4 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; margin-bottom: .6rem; }
.service-card p  { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* ────────────────────────────────────────────
   CURSOS
──────────────────────────────────────────── */
#cursos { padding: 7rem 0; background: linear-gradient(160deg, #f0f8fe 0%, #fdfaf6 100%); }
.course-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 24px rgba(44,44,58,.07); transition: transform .25s, box-shadow .25s; height: 100%; }
.course-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.course-thumb { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; overflow: hidden; }
.ct-blue   { background: linear-gradient(135deg, var(--blue),   #c5e8f8); }
.ct-orange { background: linear-gradient(135deg, var(--orange), #fad5a8); }
.ct-purple { background: linear-gradient(135deg, var(--purple), #c8c9e8); }
.course-body { padding: 1.5rem; }
.course-body h5 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin-bottom: .5rem; }
.course-body p  { font-size: .84rem; color: var(--muted); line-height: 1.6; }
.course-meta    { display: flex; align-items: center; gap: 1rem; font-size: .75rem; color: var(--muted); margin-top: .8rem; padding-top: .8rem; border-top: 1px solid rgba(44,44,58,.07); }
.course-meta i  { color: var(--purple-dk); }
.btn-course { width: 100%; background: transparent; border: 1.5px solid currentColor; border-radius: 50px; font-size: .8rem; font-weight: 600; padding: .55rem; margin-top: 1rem; transition: all .2s; color: var(--purple-dk); display: block; text-align: center; text-decoration: none; }
.btn-course:hover { background: var(--purple); border-color: var(--purple); color: var(--ink); }

/* ────────────────────────────────────────────
   LIBROS
──────────────────────────────────────────── */
#libros { padding: 7rem 0; background: var(--ink); position: relative; overflow: hidden; }
#libros::before { content: ''; position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(158,214,241,.1) 0%, transparent 70%); top: -100px; right: -100px; border-radius: 50%; }
.book-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 2.5rem 2rem; transition: background .25s, transform .25s; text-align: center; }
.book-card:hover { background: rgba(255,255,255,.1); transform: translateY(-5px); }
.book-cover { width: 140px; height: 190px; border-radius: 10px; margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; box-shadow: 0 20px 50px rgba(0,0,0,.4); position: relative; overflow: hidden; }
.bc-blue   { background: linear-gradient(145deg, #5BB8E8, var(--blue)); }
.bc-orange { background: linear-gradient(145deg, var(--orange-dk), var(--orange)); }
.book-cover::after { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 12px; background: rgba(0,0,0,.25); }
.book-card h4 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: #fff; margin-bottom: .5rem; }
.book-card p  { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.6; }
.btn-book { display: inline-flex; align-items: center; gap: .4rem; background: var(--orange); color: var(--ink); border: none; border-radius: 50px; font-size: .82rem; font-weight: 600; padding: .6rem 1.4rem; margin-top: 1.2rem; transition: background .2s, transform .15s; text-decoration: none; }
.btn-book:hover { background: var(--orange-dk); color: #fff; transform: translateY(-2px); }

/* ────────────────────────────────────────────
   RECURSOS
──────────────────────────────────────────── */
#recursos { padding: 7rem 0; background: #fff; }
.recurso-item { display: flex; align-items: center; gap: 1.2rem; background: var(--cream); border-radius: 14px; padding: 1.3rem 1.5rem; border: 1px solid rgba(167,169,212,.2); transition: transform .2s, box-shadow .2s; cursor: pointer; text-decoration: none !important; color: var(--ink) !important; }
.recurso-item:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.recurso-icon { width: 46px; height: 46px; background: rgba(247,179,117,.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--orange-dk); flex-shrink: 0; }
.recurso-item h6 { font-size: .92rem; font-weight: 600; margin-bottom: .15rem; }
.recurso-item p  { font-size: .78rem; color: var(--muted); margin: 0; }
.recurso-dl { margin-left: auto; color: var(--purple-dk); font-size: 1.2rem; transition: transform .2s; }
.recurso-item:hover .recurso-dl { transform: translateY(2px); }

/* ────────────────────────────────────────────
   COGNIARE
──────────────────────────────────────────── */
#cogniare { padding: 7rem 0; background: linear-gradient(135deg, rgba(167,169,212,.15) 0%, rgba(158,214,241,.1) 100%); }
.cogniare-card  { background: #fff; border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(44,44,58,.1); display: grid; grid-template-columns: 1fr 1fr; }
.cogniare-info  { padding: 3.5rem; }
.cogniare-info h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 600; }
.cogniare-info p  { color: var(--muted); line-height: 1.7; margin-top: .8rem; font-size: .92rem; }
.cogniare-feature { display: flex; align-items: flex-start; gap: .8rem; margin-top: 1.2rem; }
.cf-icon { width: 36px; height: 36px; border-radius: 10px; background: rgba(158,214,241,.2); display: flex; align-items: center; justify-content: center; color: var(--blue-dk); font-size: .95rem; flex-shrink: 0; }
.cogniare-feature h6 { font-size: .88rem; font-weight: 600; margin-bottom: .1rem; }
.cogniare-feature p  { font-size: .8rem; color: var(--muted); margin: 0; }
.cogniare-visual { background: linear-gradient(145deg, var(--purple), var(--blue-dk)); display: flex; align-items: center; justify-content: center; padding: 2rem; min-height: 360px; }
.mock-screen  { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: 14px; width: 100%; max-width: 280px; padding: 1.2rem; backdrop-filter: blur(10px); }
.mock-bar     { display: flex; gap: .4rem; margin-bottom: .8rem; }
.mock-dot     { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); }
.mock-row     { height: 10px; border-radius: 5px; background: rgba(255,255,255,.2); margin-bottom: .6rem; }
.mock-row.short { width: 60%; }
.mock-row.med   { width: 80%; }
.mock-card-sm   { background: rgba(255,255,255,.15); border-radius: 10px; padding: .8rem; margin-top: .8rem; }
.mock-card-sm .mock-row { margin-bottom: .4rem; }

/* ────────────────────────────────────────────
   BLOG / MEDIA
──────────────────────────────────────────── */
#blog { padding: 7rem 0; background: var(--cream); }
.blog-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 20px rgba(44,44,58,.07); transition: transform .25s, box-shadow .25s; height: 100%; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.blog-thumb  { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; }
.bt-tv       { background: linear-gradient(135deg, #1a1a2e, #16213e); }
.bt-radio    { background: linear-gradient(135deg, #2d1b4e, #4a2f7a); }
.bt-nota     { background: linear-gradient(135deg, #1a3a2a, #2d6a4f); }
.bt-podcast  { background: linear-gradient(135deg, #1a1a1a, #3a1a4e); }
.blog-media-badge { position: absolute; top: 12px; left: 12px; background-color: #A7A9D4; border: 1px solid rgba(255,255,255,.2); border-radius: 50px; font-size: .7rem; font-weight: 600; color: #fff; padding: .25rem .7rem; backdrop-filter: blur(8px); letter-spacing: .07em; text-transform: uppercase; }
.blog-body   { padding: 1.5rem; }
.blog-body h5 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-bottom: .5rem; line-height: 1.3; }
.blog-body p  { font-size: .84rem; color: var(--muted); line-height: 1.6; }
.blog-meta    { font-size: .75rem; color: var(--muted); margin-top: .8rem; }
.blog-meta i  { color: var(--orange-dk); margin-right: .3rem; }

/* ────────────────────────────────────────────
   CONTACTO
──────────────────────────────────────────── */
#contacto { padding: 7rem 0; background: #fff; }
.contact-wrap { background: linear-gradient(135deg, var(--ink) 0%, #1e1e2e 100%); border-radius: 28px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; }
.contact-info { padding: 3.5rem; color: #fff; }
.contact-info h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 300; line-height: 1.15; }
.contact-info h2 em { font-style: italic; color: var(--orange); }
.contact-info p { color: rgba(255,255,255,.55); margin-top: .8rem; line-height: 1.7; font-size: .92rem; }
.contact-detail { display: flex; align-items: center; gap: .8rem; color: rgba(255,255,255,.75); font-size: .88rem; margin-top: 1rem; }
.contact-detail i { color: var(--blue); font-size: 1.1rem; width: 20px; }
.social-links { display: flex; gap: .8rem; margin-top: 1.8rem; }
.social-btn { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1rem; transition: background .2s, transform .15s; text-decoration: none; }
.social-btn:hover { background: var(--purple); color: #fff; transform: translateY(-3px); }
.contact-form-wrap { padding: 3.5rem; background: rgba(255,255,255,.04); }
.form-floating .form-control,
.form-floating .form-select { background: rgba(255,255,255,.07) !important; border: 1px solid rgba(255,255,255,.12) !important; border-radius: 12px !important; color: #fff !important; font-size: .88rem; }
.form-floating label { color: rgba(255,255,255,.45) !important; }
.form-floating .form-control:focus,
.form-floating .form-select:focus  { background: rgba(255,255,255,.1) !important; border-color: var(--blue) !important; box-shadow: 0 0 0 3px rgba(158,214,241,.15) !important; color: #fff !important; }
.form-floating .form-select option { background: #1e1e2e; color: #fff; }
.btn-submit { width: 100%; background: var(--orange); color: var(--ink); border: none; border-radius: 50px; font-weight: 700; font-size: .92rem; padding: .9rem; transition: background .2s, transform .15s, box-shadow .2s; box-shadow: 0 6px 24px rgba(247,179,117,.3); cursor: pointer; }
.btn-submit:hover { background: var(--orange-dk); color: #fff; transform: translateY(-2px); }
.btn-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }
#mb-form-message.success { background: rgba(77,184,71,.15); border: 1px solid rgba(77,184,71,.3); color: #4DB847; border-radius: 10px; padding: 1rem; }
#mb-form-message.error   { background: rgba(240,80,80,.15); border: 1px solid rgba(240,80,80,.3); color: #f05050; border-radius: 10px; padding: 1rem; }


/* ────────────────────────────────────────────
   POST NAVEGACION
──────────────────────────────────────────── */
.post-navigation .nav-links {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    flex: 1;
}

.post-navigation .nav-next {
    text-align: right;
}

.post-navigation a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
    color: #2c2c3a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.post-navigation a:hover {
    color: #0d6efd;
}


/* ────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────── */
footer { background: #16161f; color: rgba(255,255,255,.5); padding: 3rem 0 1.5rem; }
.footer-brand { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: #fff; }
.footer-links a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .82rem; transition: color .2s; display: block; margin-bottom: .5rem; }
.footer-links a:hover { color: var(--blue); }
.footer-title    { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 1rem; }
.footer-divider  { border-color: rgba(255,255,255,.08); margin: 2rem 0 1.5rem; }
.footer-copy     { font-size: .78rem; }

/* ────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────── */
@media (max-width: 991px) {
  .cogniare-card, .contact-wrap { grid-template-columns: 1fr; }
  .cogniare-visual { min-height: 240px; }
  .float-card-1, .float-card-2 { display: none; }
}
@media (max-width: 767px) {
  .hero-photo-frame { width: 260px; height: 300px; margin-bottom: 2rem; }
}
