/* -----------------------------------------------------------
   VARIABLES & RESET
----------------------------------------------------------- */
:root {
    --primary-dark: #02086A;       
    --primary-accent: #00AEEE;     
    --primary-hover: #0081B0;
    --marquee-bg: #45D6E0;         
    
    --text-main: #1F242E;
    --text-gray: #5A6A7E;
    --text-light: #8FADC3;
    
    --bg-body: #FFFFFF;
    --bg-light: #F2F8FA; 
    --bg-white: #FFFFFF;          
    --border-color: rgba(2, 8, 106, 0.1);
    
    --font-heading: 'Instrument Sans', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    
    --radius-md: 12px;
    --radius-lg: 24px;
    
    --shadow-card: 0 15px 40px rgba(2, 8, 106, 0.06);
    --shadow-hover: 0 30px 60px rgba(2, 8, 106, 0.12);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-weight: 700;
    line-height: 1.1;
}

p { color: var(--text-gray); margin-bottom: 1.5rem; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* -----------------------------------------------------------
   UTILITIES
----------------------------------------------------------- */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.section { padding: 120px 0; }
.bg-white { background-color: var(--bg-white); }
.bg-light-alt { background-color: #F8FDFF; } /* New light bg for separation */

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--primary-accent);
    color: #fff;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 0%;
    background: var(--primary-hover);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn:hover::after { height: 100%; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0, 174, 238, 0.3); }

.btn-sm { padding: 8px 20px; font-size: 0.85rem; }

.tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-accent);
    margin-bottom: 1rem;
}

.link-arrow {
    font-weight: 600;
    color: var(--primary-accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}
.link-arrow:hover { gap: 12px; }
.link-arrow::after { content: '→'; transition: transform 0.3s ease; }
.link-arrow:hover::after { transform: translateX(2px); }

/* -----------------------------------------------------------
   ANIMATIONS (Staggered Reveal)
----------------------------------------------------------- */
.reveal {
    opacity: 1; /* ВИДИМ ПО УМОЛЧАНИЮ */
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Этот класс добавляет JS, чтобы подготовить анимацию */
.reveal.prepare-anim {
    opacity: 0;
    transform: translateY(30px);
}

/* -----------------------------------------------------------
   HEADER & NAV
----------------------------------------------------------- */
header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px 0; 
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

header.header-scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.nav-inner { display: flex; justify-content: space-between; align-items: center; }

.logo img { height: 48px; width: auto; transition: height 0.3s ease; }
header.header-scrolled .logo img { height: 40px; }

.nav-menu { display: flex; gap: 40px; align-items: center; }

.nav-link {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--primary-accent);
    transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.nav-link:hover { color: var(--primary-dark); }
.nav-link:hover::after { width: 100%; }

.header-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
    background: var(--primary-accent);
    box-shadow: none;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px; height: 18px;
    background: transparent; border: none; cursor: pointer; z-index: 1001;
}
.bar {
    width: 100%; height: 2px; background-color: var(--primary-dark);
    border-radius: 2px; transition: var(--transition);
}
.mobile-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-toggle.active .bar:nth-child(2) { opacity: 0; }
.mobile-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: #fff; z-index: 999;
    padding: 120px 24px 40px;
    transform: translateX(100%); transition: transform 0.4s ease;
    display: flex; flex-direction: column;
}
.mobile-nav-overlay.active { transform: translateX(0); }
.mobile-nav-content { display: flex; flex-direction: column; gap: 24px; font-size: 1.5rem; font-weight: 700; color: var(--primary-dark); }
.mobile-cta-btn { margin-top: 20px; width: 100%; }

/* -----------------------------------------------------------
   HERO
----------------------------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: space-between;
    padding-top: 140px; padding-bottom: 0;
    background: linear-gradient(180deg, #F9FCFD 0%, #FFFFFF 100%);
    position: relative; overflow: hidden;
}

.hero-content-wrapper {
    flex-grow: 1; display: flex; align-items: center; padding-bottom: 60px;
}

.hero-grid {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; width: 100%;
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 4.5rem); margin-bottom: 1.5rem;
    letter-spacing: -0.02em; line-height: 1.1;
}

/* Hero Gradient Text Effect */
.hero h1 span { 
    background: linear-gradient(110deg, #02086A 0%, #00AEEE 55%, #45D6E0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; 
    display: inline-block;
}

.hero-desc { font-size: 1.2rem; margin-bottom: 2.5rem; max-width: 540px; }

.hero-btns { display: flex; gap: 24px; align-items: center; }
.text-link { font-weight: 600; color: var(--primary-dark); border-bottom: 1px solid transparent; transition: all 0.3s; }
.text-link:hover { border-color: var(--primary-dark); gap: 10px; }

.hero-image-wrapper {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 174, 238, 0.15); aspect-ratio: 4/3;
    background-color: #eee; transform-origin: center; transition: transform 0.5s ease;
}
.hero-image-wrapper:hover { transform: scale(1.01); }
.hero-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }

/* -----------------------------------------------------------
   MARQUEE
----------------------------------------------------------- */
.marquee-wrapper {
    background: var(--marquee-bg); padding: 24px 0; overflow: hidden;
    white-space: nowrap; width: 100%;
}
.marquee-content {
    display: inline-flex; align-items: center;
    animation: scroll 40s linear infinite; height: 100%;
}
.marquee-item {
    color: #FFFFFF; font-family: var(--font-heading); font-size: 1.5rem;
    font-weight: 500; display: inline-flex; align-items: center; justify-content: center;
    gap: 50px; padding-right: 50px; margin: 0;
}
.marquee-star {
    width: 24px; height: 24px; display: block; 
    animation: spin 6s linear infinite; transform-origin: center center;
    position: relative; top: -2px; 
}
.marquee-star path { stroke: #FFFFFF; stroke-width: 4px; stroke-linecap: round; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* -----------------------------------------------------------
   ABOUT (Bento Grid + Trust Bar)
----------------------------------------------------------- */
.about-header-wrapper {
    margin-bottom: 40px; max-width: 800px;
}
.about-header-wrapper .tag { margin-bottom: 12px; display: inline-block; }
.about-header-wrapper h2 { font-size: 2.5rem; line-height: 1.1; letter-spacing: -0.02em; }

.bento-grid {
    display: grid; grid-template-columns: 0.8fr 1.2fr 0.8fr; gap: 24px; margin-bottom: 60px;
}
.bento-item {
    border-radius: var(--radius-lg); overflow: hidden; position: relative; transition: var(--transition);
}
.bento-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); z-index: 2; }

.bento-img { height: 100%; min-height: 400px; overflow: hidden; }
.bento-img img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.7s ease;
}
.bento-item:hover .bento-img img { transform: scale(1.08); }

.bento-content {
    background-color: var(--primary-dark); padding: 48px 40px;
    display: flex; flex-direction: column; justify-content: center; color: #ffffff;
}
.bento-content h3 { font-size: 1.6rem; line-height: 1.3; }
.bento-content p { color: rgba(255, 255, 255, 0.8); margin-bottom: 20px; font-size: 1rem; }

.btn-outline-white {
    align-self: flex-start; padding: 12px 28px;
    border: 1px solid rgba(255,255,255,0.3); color: #fff;
    border-radius: 6px; font-weight: 600; font-size: 0.9rem;
    background: transparent; transition: all 0.3s ease;
}
.btn-outline-white:hover { background: #fff; color: var(--primary-dark); border-color: #fff; }

.bento-col-stats { display: flex; flex-direction: column; gap: 24px; }
.bento-stat {
    background-color: var(--bg-light); padding: 30px;
    flex: 1; display: flex; flex-direction: column; justify-content: center;
    border: 1px solid transparent;
}
.bento-stat:hover { border-color: var(--primary-accent); background-color: #fff; }
.stat-num {
    font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700;
    color: var(--primary-dark); margin-bottom: 10px; line-height: 1;
}

/* -----------------------------------------------------------
   SOLUTIONS (Accordions)
----------------------------------------------------------- */
.products-list { margin-top: 60px; border-top: 2px solid var(--primary-dark); }
.product-item { 
    border-bottom: 1px solid var(--border-color); 
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.product-item:hover { border-color: var(--primary-accent); }
.product-header {
    display: grid; grid-template-columns: 60px 1.5fr 2.5fr 70px;
    align-items: center; padding: 50px 0;
    cursor: pointer; transition: all 0.3s ease;
}
.product-item:hover .product-header { padding-left: 10px; }
.product-num {
    font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: #E2E8F0; transition: color 0.3s;
}
.product-item:hover .product-num { color: var(--primary-accent); }
.product-title { font-size: 1.5rem; font-weight: 600; transition: color 0.3s; color: var(--primary-dark); }
.product-toggle {
    width: 60px; height: 60px; border-radius: 50%;
    border: 1px solid #E2E8F0; background: transparent;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-dark); cursor: pointer; transition: all 0.3s ease; justify-self: end;
}
.product-item:hover .product-title { color: var(--primary-accent); }
.product-item:hover .product-toggle { border-color: var(--primary-accent); color: var(--primary-accent); transform: rotate(90deg); }
.product-item.item-open .product-toggle {
    border-color: var(--primary-accent); background: var(--primary-accent);
    color: white; transform: rotate(90deg);
}
.product-item.item-open .product-title { color: var(--primary-accent); }
.product-body {
    max-height: 0; overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.65, 0, 0.35, 1); will-change: max-height;
}
.product-content { padding: 10px 0 40px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.tech-specs li {
    margin-bottom: 10px; padding-left: 20px; position: relative;
    color: var(--text-gray); font-size: 0.95rem;
}
.tech-specs li::before {
    content: '•'; color: var(--primary-accent); font-weight: bold; position: absolute; left: 0;
}
.product-desc-col h4 { margin-bottom: 15px; }

/* -----------------------------------------------------------
   NEW: FINTECH SECTION STYLES
----------------------------------------------------------- */
.fintech-header {
    text-align: center; max-width: 800px; margin: 0 auto 60px auto;
}
.section-title { font-size: 2.8rem; margin-bottom: 20px; }
.section-desc { font-size: 1.15rem; color: var(--text-gray); line-height: 1.6; }

.fintech-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 50px;
}
.ft-card {
    background: #fff; padding: 40px 30px; border-radius: var(--radius-lg);
    border: 1px solid var(--border-color); text-align: center;
    transition: var(--transition); position: relative; overflow: hidden;
}
.ft-card:hover {
    transform: translateY(-10px); box-shadow: var(--shadow-hover); border-color: var(--primary-accent);
}
.ft-icon {
    width: 64px; height: 64px; background: var(--bg-light);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px auto; color: var(--primary-accent); transition: all 0.3s ease;
}
.ft-card:hover .ft-icon { background: var(--primary-accent); color: #fff; transform: scale(1.1); }
.ft-icon svg { width: 32px; height: 32px; }
.ft-card h3 { font-size: 2rem; margin-bottom: 10px; color: var(--primary-dark); }
.ft-card p { font-size: 1rem; color: var(--text-gray); margin-bottom: 0; }

.fintech-cta { text-align: center; margin-top: 40px; }

/* -----------------------------------------------------------
   POWERSTORE
----------------------------------------------------------- */
.powerstore-wrapper {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    background: #000; color: white;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3); isolation: isolate;
}
.ps-bg-image {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -2;
}
.ps-bg-image img {
    width: 100%; height: 100%; object-fit: cover; opacity: 0.6;
    transform: scale(1.05); transition: transform 10s ease;
}
.powerstore-wrapper:hover .ps-bg-image img { transform: scale(1.1); }
.ps-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(2, 8, 106, 0.95) 0%, rgba(2, 8, 106, 0.8) 100%);
    z-index: -1;
}
.ps-content-inner { padding: 80px 60px; position: relative; z-index: 2; }
.ps-header { max-width: 800px; margin-bottom: 60px; }
.flag-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.1); padding: 8px 16px; border-radius: 50px; 
    border: 1px solid rgba(255,255,255,0.2); font-size: 0.85rem; margin-bottom: 24px; font-weight: 600;
    backdrop-filter: blur(5px);
}
.powerstore-wrapper h2 { color: white; margin-bottom: 20px; font-size: 2.8rem; letter-spacing: -0.02em; }
.ps-lead { color: rgba(255,255,255,0.9); font-size: 1.2rem; line-height: 1.6; font-weight: 400; }
.ps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ps-card {
    background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px; padding: 30px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(10px); display: flex; flex-direction: column; align-items: flex-start;
}
.ps-card:hover {
    background: rgba(255, 255, 255, 0.1); border-color: var(--primary-accent);
    transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.ps-icon {
    margin-bottom: 20px; color: var(--primary-accent);
    background: rgba(0, 174, 238, 0.15); width: 48px; height: 48px;
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.ps-icon svg { width: 24px; height: 24px; }
.ps-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: 12px; }
.ps-card p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 0; line-height: 1.5; }

/* -----------------------------------------------------------
   CONTACT SECTION
----------------------------------------------------------- */
.contact-section {
    position: relative;
    background: linear-gradient(180deg, #FFFFFF 0%, #F2F8FA 100%);
    padding: 120px 0; overflow: hidden;
}
.contact-section::before {
    content: ''; position: absolute; top: -100px; right: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0, 174, 238, 0.05) 0%, transparent 70%);
    border-radius: 50%; z-index: 0; pointer-events: none;
}
.contact-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    position: relative; z-index: 1; align-items: flex-start;
}
.contact-info { padding-right: 20px; }
.contact-info h2 { font-size: 3rem; margin-bottom: 24px; letter-spacing: -0.02em; }
.contact-desc {
    font-size: 1.15rem; margin-bottom: 48px; color: var(--text-gray);
    line-height: 1.6; max-width: 480px;
}
.info-grid { display: flex; flex-direction: column; gap: 32px; }
.info-item { display: flex; align-items: flex-start; gap: 20px; }
.info-icon {
    width: 48px; height: 48px; background: #fff; border: 1px solid #E2E8F0;
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    color: var(--primary-accent); flex-shrink: 0; box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.info-icon svg { width: 24px; height: 24px; }
.info-content h6 {
    color: var(--text-light); text-transform: uppercase; font-size: 0.75rem;
    letter-spacing: 1.5px; font-weight: 700; margin-bottom: 8px;
}
.info-content address {
    font-style: normal; font-size: 1.1rem; font-weight: 500;
    color: var(--text-main); line-height: 1.5;
}
.email-link {
    font-size: 1.25rem; font-weight: 600; color: var(--primary-dark);
    text-decoration: none; border-bottom: 2px solid rgba(0, 174, 238, 0.2);
    transition: all 0.3s ease;
}
.email-link:hover { border-color: var(--primary-accent); color: var(--primary-accent); }

.form-card {
    background: #FFFFFF; padding: 50px; border-radius: 20px;
    box-shadow: 0 20px 60px rgba(2, 8, 106, 0.08); border: 1px solid rgba(255,255,255,0.8);
}
.form-card h3 { margin-bottom: 30px; font-size: 1.5rem; }
.form-group { margin-bottom: 24px; position: relative; }

input:not([type="checkbox"]), textarea {
    width: 100%; padding: 18px 20px; background: #F8FAFC;
    border: 1px solid #E2E8F0; border-radius: 10px;
    font-family: var(--font-body); font-size: 1rem; color: var(--text-main);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
input::placeholder, textarea::placeholder { color: #94A3B8; }
input:not([type="checkbox"]):focus, textarea:focus {
    outline: none; background: #FFFFFF; border-color: var(--primary-accent);
    box-shadow: 0 0 0 4px rgba(0, 174, 238, 0.15); transform: translateY(-2px);
}
textarea { resize: vertical; min-height: 140px; }

.form-check {
    display: flex; gap: 12px; align-items: flex-start;
    margin-bottom: 30px; font-size: 0.9rem; color: var(--text-gray); line-height: 1.5;
}
.form-check input {
    margin-top: 3px; width: 18px; height: 18px;
    accent-color: var(--primary-accent); cursor: pointer;
}
.submit-btn { width: 100%; padding: 18px; font-size: 1.05rem; letter-spacing: 0.5px; }

/* -----------------------------------------------------------
   FOOTER
----------------------------------------------------------- */
footer {
    padding: 60px 0; border-top: 1px solid rgba(2, 8, 106, 0.08);
    background: #F2F8FA; font-size: 0.9rem; color: var(--text-gray); margin-top: 0;
}
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; }
.footer-links a { margin-left: 30px; font-weight: 500; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary-accent); }
.grant-text { font-size: 0.8rem; margin-top: 10px; max-width: 400px; }

/* -----------------------------------------------------------
   COOKIE BANNER
----------------------------------------------------------- */
.cookie-banner {
    position: fixed; bottom: 20px; right: 20px;
    background: #fff; padding: 20px; border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15); z-index: 2000;
    max-width: 350px; border: 1px solid var(--border-color); display: none;
}
.cookie-banner.show { display: block; animation: fadeUp 0.5s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.cookie-content p { margin-bottom: 15px; font-size: 0.9rem; color: var(--text-main); }
.cookie-btns { text-align: right; }

/* -----------------------------------------------------------
   RESPONSIVE
----------------------------------------------------------- */
@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: 1fr 1fr; grid-template-areas: "img content" "img stats"; }
    .bento-img { grid-area: img; } .bento-content { grid-area: content; } .bento-col-stats { grid-area: stats; }
    .ps-grid { grid-template-columns: 1fr; } .ps-content-inner { padding: 50px 30px; }
    .powerstore-wrapper h2 { font-size: 2rem; }
    .product-header {
        grid-template-columns: 50px 1fr 50px; grid-template-areas: "num title icon" "desc desc desc";
        gap: 10px; padding: 30px 0;
    }
    .product-num { grid-area: num; } .product-title { grid-area: title; font-size: 1.3rem; }
    .product-toggle { grid-area: icon; } .product-short-desc { grid-area: desc; margin-top: 5px; grid-column: 1 / -1; }
    .product-content { padding-left: 0; grid-template-columns: 1fr; gap: 20px; }
    .hero h1 { font-size: 3rem; }
    .contact-layout { grid-template-columns: 1fr; gap: 60px; }
    .contact-info { padding-right: 0; }
    .form-card { padding: 30px; }
    /* FinTech Grid Fix for Tablet */
    .fintech-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .desktop-nav, .desktop-btn { display: none; } .mobile-toggle { display: flex; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-image-wrapper { height: 300px; }
    .hero { min-height: auto; padding-top: 140px; }
    .hero-content-wrapper { padding-bottom: 40px; }
    .bento-grid { display: flex; flex-direction: column; gap: 20px; }
    .bento-img { height: 300px; } .bento-content { padding: 30px 24px; }
    .powerstore-wrapper { padding: 40px 25px; } 
    .contact-section { padding: 80px 0; }
    .partners-logos { justify-content: flex-start; gap: 20px 40px; }
    .footer-content { flex-direction: column; text-align: center; } .footer-links a { margin: 0 15px; }
    .fintech-header { margin-bottom: 40px; }
}