/* ═════════════════════════════════════════
   TINPET — Custom styles
   Only things Tailwind utility classes
   cannot express are kept here.
═════════════════════════════════════════ */

/* ── 0. Marquee ticker banner ── */
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.marquee-track {
    display: inline-flex;
    width: max-content;
    animation: marqueeScroll 38s linear infinite;
}
.marquee-banner:hover .marquee-track {
    animation-play-state: paused;
}
.marquee-phrase {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0a192f;
    padding: 0 18px;
    white-space: nowrap;
}
.marquee-sep {
    font-size: 13px;
    color: rgba(4, 19, 41, 0.45);
    padding: 0 4px;
    flex-shrink: 0;
}

/* ── 1. Keyframes (referenced by Tailwind config + custom classes below) ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}
@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1);   opacity: 0.6; }
    50%      { transform: scaleY(0.4); opacity: 1; }
}
@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position:  200% center; }
}

/* ── 2. Nav: JS-toggled scroll state ── */
#main-nav.scrolled {
    background: rgba(4, 19, 41, 0.97) !important;
    box-shadow:
        0 8px 48px rgba(4, 19, 41, 0.92),
        0 1px 0 rgba(212, 175, 55, 0.20);
}

/* ── 3. Nav link: animated ::after underline ── */
.nav-link {
    position: relative;
    padding-bottom: 5px;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 1.5px;
    background: #D4AF37;
    border-radius: 1px;
    transition: width 0.34s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover::after { width: 100%; }

/* ── 4. Hamburger open state ── */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg);  background: #D4AF37; }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: #D4AF37; }

/* ── 5. Mobile drawer — JS toggles .open ── */
#nav-mobile          { display: none; flex-direction: column; }
#nav-mobile.open     { display: flex; }
#nav-mobile a:last-of-type { border-bottom: none !important; }

/* ── 6. Hero headline shimmer gradient text ── */
.text-gradient-gold {
    background: linear-gradient(90deg, #D4AF37, #facc15, #D4AF37);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3.5s linear 1.2s infinite;
}

/* ── Footer: link hover gold ── */
.footer-link:hover { color: #D4AF37 !important; }

/* ── Footer: social icon hover ── */
.footer-social:hover {
    background: #D4AF37;
    border-color: #D4AF37 !important;
    color: #0a192f !important;
}

/* ── Footer: newsletter input focus ── */
.footer-email-input:focus {
    border-color: #D4AF37 !important;
    box-shadow: 0 0 0 2px rgba(212,175,55,0.18);
}

/* ── News card: navy bottom border on hover ── */
.news-card:hover {
    border-color: transparent;
    border-bottom-color: #0a192f;
}

/* ── Admissions form: gold focus ring ── */
.admit-input:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

/* ── Testimonial slider: hidden attribute must beat Tailwind flex ── */
.testi-slide[hidden] { display: none !important; }

/* ── Faculty card: gold bottom bar on hover ── */
.faculty-card:hover .faculty-bar {
    opacity: 1;
}

/* ── 7. Hero card: top-corner ::before glow ── */
.hero-card-glow {
    position: relative;
    overflow: hidden;
}
.hero-card-glow::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(212,175,55,0.18) 0%, transparent 70%);
    pointer-events: none;
}

/* ── 9. Inside Tinpet: news ticker items ── */
.ticker-item {
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.45s ease, transform 0.45s ease;
}
.ticker-item.translate-y-0 {
    transform: translateY(0) !important;
}
.ticker-item.opacity-100 {
    opacity: 1 !important;
}
.ticker-item.-translate-y-full {
    transform: translateY(-100%) !important;
}

/* ── Inside Tinpet: grid fade transition ── */
#tinpet-grid {
    transition: opacity 0.22s ease, transform 0.22s ease;
}

/* ── About: active nav link ── */
.nav-link.active { color: #D4AF37; }
.nav-link.active::after { width: 100%; }

/* ── About: Vision/Mission decorative quote ── */
.vm-deco-quote {
    position: absolute;
    bottom: 12px;
    left: 24px;
    font-family: 'Orbitron', sans-serif;
    font-size: 120px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* ── About: accreditation card hover ── */
.accred-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(4,11,22,0.14);
}

/* ── Scroll-reveal utility ── */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── 8. Hero particles (child span positions & animations) ── */
.hero-particles span {
    position: absolute;
    border-radius: 50%;
    background: #D4AF37;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}
.hero-particles span:nth-child(1) { width:3px;  height:3px;  top:22%; left:48%; opacity:0.18; animation-delay:.4s;  }
.hero-particles span:nth-child(2) { width:2px;  height:2px;  top:65%; left:55%; opacity:0.13; animation-delay:.7s;  }
.hero-particles span:nth-child(3) { width:4px;  height:4px;  top:35%; left:72%; opacity:0.10; animation-delay:1s;   }
.hero-particles span:nth-child(4) { width:2px;  height:2px;  top:78%; left:38%; opacity:0.15; animation-delay:1.3s; }

/* ═══════════════════════════════════════════
   PROGRAMMES PAGE
═══════════════════════════════════════════ */

/* Scroll ring progress indicator */
#scroll-ring {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
#scroll-ring.visible {
    opacity: 1;
}
#scroll-ring svg {
    display: block;
    filter: drop-shadow(0 2px 10px rgba(4,11,22,0.5));
}
#scroll-ring-path {
    transition: stroke-dashoffset 0.1s linear;
}

/* Tab panels */
.prog-tab-panel {
    display: none;
    opacity: 0;
}
.prog-tab-panel.active {
    display: block;
}
.prog-tab-panel.active.visible {
    opacity: 1;
    transition: opacity 0.35s ease;
}

/* Tab button active state */
.prog-tab-btn {
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.prog-tab-btn.prog-tab-active {
    background: #D4AF37 !important;
    border-color: #D4AF37 !important;
    color: #0a192f !important;
}

/* Programme card: stagger reveal + hover */
.prog-card {
    border-left: 4px solid transparent;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease,
                box-shadow 0.3s ease, border-left-color 0.3s ease;
}
.prog-card.card-visible {
    opacity: 1;
    transform: translateY(0);
}
.prog-card.card-visible:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(4, 11, 22, 0.18);
    border-left-color: #D4AF37;
}

/* Executive Mini-MBA watermark */
.exec-card {
    position: relative;
    overflow: hidden;
}
.exec-card::before {
    content: 'EXECUTIVE';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #0a192f;
    opacity: 0.04;
    pointer-events: none;
    white-space: nowrap;
    user-select: none;
    z-index: 0;
    letter-spacing: 0.08em;
}
.exec-card > * { position: relative; z-index: 1; }

/* Comparison table */
.prog-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(4,11,22,0.08);
}
.prog-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 620px;
}
.prog-table td,
.prog-table th {
    padding: 14px 20px;
    border: 1px solid #e9ecef;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
}
.prog-table th {
    background: #0a192f;
    color: #fff;
    font-weight: 700;
}
.prog-table th.col-premium {
    background: #D4AF37;
    color: #0a192f;
}
.prog-table td:first-child {
    font-weight: 700;
    color: #0a192f;
    background: #f9fafb;
    text-align: left;
    white-space: nowrap;
}
.prog-table th:first-child {
    text-align: left;
}
.prog-table tr:nth-child(even) td {
    background: #f8f9fa;
}
.prog-table tr:nth-child(even) td:first-child {
    background: #eff1f4;
}

/* Certification ladder */
.ladder-arrow {
    font-size: 26px;
    color: #D4AF37;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0 6px;
    line-height: 1;
}

/* Progression pathway card hover */
.pathway-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pathway-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(4,11,22,0.22);
}

/* Responsive: ladder stacks on mobile */
@media (max-width: 768px) {
    .ladder-row {
        flex-direction: column;
        align-items: center;
    }
    .ladder-arrow {
        transform: rotate(90deg);
        padding: 6px 0;
    }
    .prog-table td:first-child,
    .prog-table th:first-child {
        position: sticky;
        left: 0;
        z-index: 1;
    }
}

/* ═══════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════ */

/* Hero diagonal pattern */
.hero-pattern {
    background-color: #040b16;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(212,175,55,0.06) 20px,
        rgba(212,175,55,0.06) 21px
    );
}

/* Info cards negative margin overlap */
.contact-cards-row {
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

/* Form field focus states */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}

/* Select custom arrow */
.contact-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 44px !important;
}

/* Info card hover */
.info-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-bottom-color 0.3s ease;
    border-bottom: 4px solid transparent;
}
.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(4,11,22,0.15);
    border-bottom-color: #D4AF37;
}

/* FAQ accordion */
.faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer {
    max-height: 400px;
}
.faq-item .faq-icon {
    transition: transform 0.3s ease;
    color: #D4AF37;
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

/* Social icon hover */
.social-icon-btn {
    transition: transform 0.2s ease, background-color 0.2s ease;
}
.social-icon-btn:hover {
    transform: scale(1.12);
}

/* Success message */
.form-success {
    display: none;
}
.form-success.active {
    display: block;
    animation: fadeInUp 0.4s ease forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* (scroll ring defined in programmes section above) */

/* Responsive */
@media (max-width: 1024px) {
    .contact-split { flex-direction: column !important; }
    .contact-split > div { flex: none !important; width: 100% !important; }
    .contact-cards-row { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 768px) {
    .contact-cards-row { grid-template-columns: 1fr !important; margin-top: 0 !important; }
    .contact-split { gap: 40px !important; }
    .faq-container { padding: 0 20px; }
}

/* ═══════════════════════════════════════════
   ELEARNING PAGE
═══════════════════════════════════════════ */

/* ── Section split (2-col) ── */
.el-split {
    display: flex;
    align-items: center;
}

/* ── Feature grid ── */
.el-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ── Feature card ── */
.el-feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 2px 16px rgba(4,11,22,0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 3px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-bottom-color 0.3s ease;
}
.el-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(4,11,22,0.14);
    border-bottom-color: #D4AF37;
}

/* ── Feature icon circle ── */
.el-feat-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #0a192f;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ── Dashboard mockup card ── */
.el-dashboard-card {
    position: relative;
}
.el-floating-badge {
    position: absolute;
    bottom: -14px;
    left: 24px;
    background: #D4AF37;
    border-radius: 24px;
    padding: 8px 20px;
    box-shadow: 0 4px 20px rgba(212,175,55,0.35);
    white-space: nowrap;
}

/* ── Step flow ── */
.el-step-flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}
/* Dashed connecting line spanning circle centers */
.el-step-flow::before {
    content: '';
    position: absolute;
    top: 27px; /* half of 56px circle */
    left: calc(10% + 27px);
    right: calc(10% + 27px);
    height: 0;
    border-top: 2px dashed rgba(212,175,55,0.35);
    z-index: 0;
}
.el-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}
.el-step-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #0a192f; /* covers dashed line behind */
    border: 2px solid #D4AF37;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #D4AF37;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}
.el-step-circle.el-step-final {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #0a192f;
}
.el-step-arrow {
    display: flex;
    align-items: flex-start;
    padding-top: 19px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

/* ── Quote banner decorative mark ── */
.el-quote-banner {
    position: relative;
}
.el-quote-deco {
    position: absolute;
    top: -10px;
    left: 40px;
    font-family: 'Orbitron', sans-serif;
    font-size: 120px;
    line-height: 1;
    color: #0a192f;
    opacity: 0.12;
    pointer-events: none;
    user-select: none;
}

/* ── Benefit rows ── */
.el-benefit-row {
    padding: 14px 0;
    border-bottom: 1px solid #f3f4f6;
}
.el-benefit-row:last-of-type {
    border-bottom: none;
}

/* ── Mobile responsive ── */
@media (max-width: 1024px) {
    .el-split { flex-direction: column !important; gap: 48px !important; }
    .el-split > div { flex: none !important; width: 100% !important; }
    .el-feature-grid { grid-template-columns: repeat(2, 1fr); }
    .el-step-flow { flex-wrap: wrap; gap: 24px; }
    .el-step-flow::before { display: none; }
    .el-step-arrow { display: none; }
    .el-step { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 640px) {
    .el-feature-grid { grid-template-columns: 1fr; }
    .el-step { flex: 0 0 100%; }
    .el-floating-badge { font-size: 11px; padding: 6px 14px; }
}

/* ===== CSQUARE SUMMIT PAGE ===== */

/* ── Hero ── */
.sq-hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.sq-hero-inner {
    display: flex;
    align-items: center;
    gap: 56px;
    width: 100%;
}
.sq-hero-content {
    flex: 1 1 0;
    min-width: 0;
}
.sq-hero-card {
    flex: 0 0 320px;
    width: 320px;
    border-radius: 16px;
    padding: 32px 28px;
    background: #1e3a5f;
    border: 1px solid #C8A84B;
    box-shadow: 0 24px 64px rgba(0,0,0,0.35);
    position: relative;
    overflow: hidden;
}
.sq-hero-card::before {
    content: 'C²';
    position: absolute;
    bottom: -10px;
    right: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 100px;
    line-height: 1;
    color: #C8A84B;
    opacity: 0.07;
    pointer-events: none;
    user-select: none;
}

/* ── Two-column split ── */
.sq-split {
    display: flex;
    align-items: flex-start;
    gap: 64px;
}
.sq-split > .sq-split-left  { flex: 1 1 0; min-width: 0; }
.sq-split > .sq-split-right { flex: 1 1 0; min-width: 0; }

/* ── Stat chips ── */
.sq-stat-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0f4ff;
    border: 1px solid #dde3f5;
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #0a192f;
}
.sq-stat-chip .sq-stat-num {
    color: #C8A84B;
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
}

/* ── Image composition ── */
.sq-img-composition {
    position: relative;
    height: 380px;
}
.sq-img-large {
    width: 88%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
    display: block;
}
.sq-img-small {
    position: absolute;
    bottom: -28px;
    right: -20px;
    width: 52%;
    height: 54%;
    border-radius: 12px;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

/* ── Pillar grid ── */
.sq-pillar-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.sq-pillar-card {
    flex: 1 1 180px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-bottom: 3px solid transparent;
    border-radius: 12px;
    padding: 28px 20px 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-bottom-color 0.25s ease;
    opacity: 0;
    transform: translateY(24px);
}
.sq-pillar-card.card-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.25s ease, border-bottom-color 0.25s ease;
}
.sq-pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.10);
    border-bottom-color: #C8A84B;
}
.sq-pillar-number {
    position: absolute;
    top: -12px;
    right: 12px;
    font-family: 'Orbitron', sans-serif;
    font-size: 72px;
    line-height: 1;
    color: #0a192f;
    opacity: 0.05;
    pointer-events: none;
    user-select: none;
}
.sq-pillar-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #f0f4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 22px;
}

/* ── Day cards ── */
.sq-day-grid {
    display: flex;
    gap: 28px;
    align-items: stretch;
}
.sq-day-card {
    flex: 1 1 0;
    border-radius: 16px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
}
.sq-day-card::after {
    content: attr(data-day);
    position: absolute;
    bottom: -10px;
    right: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 96px;
    line-height: 1;
    opacity: 0.06;
    pointer-events: none;
    user-select: none;
    color: #fff;
}

/* ── Profile grid ── */
.sq-profile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.sq-profile-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px 20px 24px;
    text-align: center;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.sq-profile-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.09);
}
.sq-profile-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C8A84B 0%, #f0d875 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 16px;
}

/* ── Quote banner ── */
.sq-quote-banner {
    position: relative;
    overflow: hidden;
}
.sq-quote-csquare {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    font-family: 'Orbitron', sans-serif;
    font-size: 140px;
    line-height: 1;
    color: #C8A84B;
    opacity: 0.08;
    pointer-events: none;
    user-select: none;
}

/* ── Philosophy pill ── */
.sq-philosophy-pill {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 999px;
    padding: 7px 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    cursor: default;
    transition: background 0.2s ease, color 0.2s ease;
}
.sq-philosophy-pill:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
}

/* ── Benefit rows ── */
.sq-benefit-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #f3f4f6;
}
.sq-benefit-row:last-of-type {
    border-bottom: none;
}

/* ── Interest form ── */
.sq-interest-form input,
.sq-interest-form textarea,
.sq-interest-form select {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.sq-interest-form input:focus,
.sq-interest-form textarea:focus,
.sq-interest-form select:focus {
    outline: none;
    border-color: #C8A84B;
    box-shadow: 0 0 0 3px rgba(200,168,75,0.15);
}
.sq-form-success {
    display: none;
    text-align: center;
    padding: 64px 32px;
    animation: fadeInUp 0.5s ease both;
}
.sq-form-success.active {
    display: block;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .sq-hero-inner { flex-direction: column; gap: 48px; }
    .sq-hero-card  { width: 100%; flex: none; }
    .sq-split      { flex-direction: column !important; gap: 40px !important; }
    .sq-split > .sq-split-left,
    .sq-split > .sq-split-right { flex: none; width: 100%; }
    .sq-pillar-grid { gap: 18px; }
    .sq-pillar-card { flex: 1 1 calc(33.333% - 18px); }
    .sq-img-composition { height: 300px; }
    .sq-profile-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .sq-hero-card  { display: none; }
    .sq-day-grid   { flex-direction: column; }
    .sq-pillar-card { flex: 1 1 calc(50% - 12px); }
    .sq-profile-grid { grid-template-columns: 1fr 1fr; }
    .sq-quote-csquare { font-size: 90px; right: 10px; }
}
@media (max-width: 480px) {
    .sq-pillar-card  { flex: 0 0 100%; }
    .sq-profile-grid { grid-template-columns: 1fr; }
}
