/* Light Premium "Agency" Theme v3.16 (Merged Layouts & Unification) */
html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100%;
}

body {
    height: 100%;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}

:root {
    /* --- Premium Fintech Palette --- */
    --bg-primary: #ffffff;
    --bg-surface: #ffffff;
    --bg-subtle: #f8fafc;

    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-tertiary: #94a3b8;

    --accent: #2563eb;
    --accent-glow: rgba(37, 99, 235, 0.2);
    --special-gradient: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --border-subtle: #e2e8f0;

    /* --- Atmosphere & Depth --- */
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    /* The "SaaS Lift" - deeply diffused shadow */
    --shadow-float: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --shadow-card: var(--shadow-float);
    --shadow-standard: var(--shadow-float);
    /* Bridge for old vars */

    --radius-lg: 24px;
    --radius-pill: 9999px;

    --container-width: 1200px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    height: 100%;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    /* Soft Gradient Background Mesh - Professional Blue Tones */
    background-image:
        radial-gradient(circle at 15% 25%, rgba(59, 130, 246, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 85% 65%, rgba(71, 85, 105, 0.12) 0%, transparent 50%);
    background-attachment: fixed;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.05;
    margin: 0;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.25rem;
    margin: 0;
    margin-bottom: 1rem;
}

p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Gradient Text */
.text-gradient-special {
    background: linear-gradient(90deg, #0f172a 0%, #2563eb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-accent {
    color: var(--accent);
}

/* --- UNIFIED MERGED BOX STYLE --- */
/* Used for Hero, Tech, Why Us */
/* --- PREMIUM CARD COMPONENT (Glass/Float) --- */
/* Replaces dull unified-box */
.unified-box {
    background: rgba(255, 255, 255, 0.85);
    /* Slight opacity for blur */
    backdrop-filter: blur(12px);
    /* Glassmorphism */
    border-radius: var(--radius-lg);
    border: 1px solid white;
    /* Highlight border */
    box-shadow: var(--shadow-float);
    /* Deep tailored shadow */
    padding: 2.5rem;
    display: block;
    width: 100%;
    margin-bottom: 2rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.unified-box:hover {
    transform: translateY(-4px);
    /* Subtle lift on hover */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border-color: #fff;
}

.unified-box.text-center {
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
}

/* Layout */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.section {
    height: 100vh;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 6rem 0 2rem 0;
}

.text-center {
    text-align: center;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -0.03em;
}

.logo-main {
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--accent);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--accent);
    color: #fff !important;
}

.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transform: translateY(-1px);
}

.btn-outline {
    background: #fff;
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Hero */
/* Hero - Strict One Screen Fit */
.hero {
    height: 100dvh;
    /* Force exact viewport height */
    min-height: 600px;
    /* Safety for very squashed screens */
    padding-top: 110px;
    /* Reduced from 140px */
    padding-bottom: 2rem;
    display: flex;
    align-items: center;
    /* Center content vertically strictly */
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: start;
    width: 100%;
}

.hero-left-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-content-box {
    margin-bottom: 0;
    /* Actions will be inside box */
    padding: 2rem !important;
}

/* Contact section - Strict One Screen with Footer */
#kontakt {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
    padding: 0;
}

.contact-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 2rem 0;
}

.footer-integrated-wrapper {
    flex-shrink: 0;
    width: 100%;
}

/* Chart - Glass Style */
.chart-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid white;
    box-shadow: var(--shadow-float);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    height: auto;
    align-self: center;
    /* Vertically center in grid */
}

/* Hero Actions - Align with text box */
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-left: 2rem;
}

/* Footer Styling */
.footer-integrated-wrapper {
    width: 100%;
    border-top: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
    /* Consistent line-height */
}

.footer-motto {
    font-style: italic;
    color: #64748b;
    margin: 0;
    padding: 0;
    line-height: 1.4;
    /* Match footer-row */
    position: relative;
    top: -2px;
    /* Shift up to align visually */
}

/* High Resolution Screens - Centered Content */
@media (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }

    .hero-grid,
    .tech-stacks,
    .pricing-grid,
    .why-grid {
        gap: 3rem;
    }

    .section {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .section>.container {
        width: 100%;
    }
}

/* Chart title and KPI components */

.chart-title-group {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.chart-kpi {
    display: flex;
    gap: 1rem;
    align-items: baseline;
}

.kpi-val {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.1rem;
}

.kpi-sub {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 400;
    margin-left: 2px;
}

.chart-legend {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    justify-content: center;
    margin-top: 0.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.chart-tooltip {
    position: absolute;
    background: #0f172a;
    color: #fff;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.1s;
    z-index: 10;
    white-space: nowrap;
    transform: translate(-50%, -120%);
}

.bar-budget {
    fill: #e2e8f0;
}

.bar-actual {
    fill: #2563eb;
}

/* Tech Stack */
.tech-stacks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Ensure grid items stretch */
.tech-stacks,
.why-grid {
    align-items: stretch;
}

.tech-col {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-standard);
    /* Flexbox for equal height alignment */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tech-col h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.tech-col p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    min-height: 3rem;
    color: var(--text-secondary);
}

/* Push tech display to bottom */
.tech-display {
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 12px;
    margin-top: auto;
    /* Push to bottom for alignment */
    border: 1px solid transparent;
}

.tech-anim-icon {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.tech-anim-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid white;
    box-shadow: var(--shadow-float);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    /* Reduced from 2rem */
    display: flex;
    flex-direction: column;
    transition: 0.3s;
    position: relative;
    text-align: left;
}

.pricing-card.featured {
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-standard);
    transform: scale(1.02);
    z-index: 10;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.1);
}

.quote-box {
    background: #f8fafc;
    padding: 0.75rem;
    border-radius: 8px;
    margin: 0.75rem 0 1rem;
    /* Reduced from 1rem 0 2rem */
    border-left: 3px solid var(--accent);
    font-style: italic;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    /* Reduced from 0.75rem */
    font-size: 0.9rem;
}

.plan-features li.expert-hours {
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--accent);
}

/* Why Us */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}



.why-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: left;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-standard);
    /* Flexbox for alignment */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.why-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.why-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Language Switcher */
.lang-switch {
    margin-left: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-opts {
    display: none;
    position: absolute;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.5rem;
    top: 100%;
    right: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.lang-opts.show {
    display: block;
}

.lang-btn {
    display: block;
    padding: 0.5rem;
    text-decoration: none;
    color: var(--text-primary);
    cursor: pointer;
}

.lang-btn:hover {
    background: #f1f5f9;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-subtle);
    padding: 3rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    background: #fff;
    margin-top: 6rem;
}

.footer-motto {
    font-style: italic;
    color: #64748b;
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

@media(max-width:900px) {

    .hero-grid,
    .tech-stacks,
    .pricing-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    h1 {
        font-size: 2rem;
    }

    .hero-left-col {
        gap: 1.5rem;
        justify-content: flex-start;
    }
}/ *   H o w   I t   W o r k s   S e c t i o n   S t y l e s   * /  
 . h o w - i t - w o r k s - g r i d   {  
         d i s p l a y :   g r i d ;  
         g r i d - t e m p l a t e - c o l u m n s :   1 f r   a u t o   1 f r   a u t o   1 f r ;  
         g a p :   2 r e m ;  
         a l i g n - i t e m s :   c e n t e r ;  
         m a r g i n - t o p :   3 r e m ;  
         m a x - w i d t h :   1 1 0 0 p x ;  
         m a r g i n - l e f t :   a u t o ;  
         m a r g i n - r i g h t :   a u t o ;  
 }  
  
 . h o w - c a r d   {  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 9 ) ;  
         b a c k d r o p - f i l t e r :   b l u r ( 1 2 p x ) ;  
         b o r d e r :   1 p x   s o l i d   w h i t e ;  
         b o x - s h a d o w :   v a r ( - - s h a d o w - f l o a t ) ;  
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ;  
         p a d d i n g :   2 r e m   1 . 5 r e m ;  
         t e x t - a l i g n :   c e n t e r ;  
         t r a n s i t i o n :   t r a n s f o r m   0 . 3 s   e a s e ,   b o x - s h a d o w   0 . 3 s   e a s e ;  
         m i n - h e i g h t :   2 5 0 p x ;  
         d i s p l a y :   f l e x ;  
         f l e x - d i r e c t i o n :   c o l u m n ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
 }  
  
 . h o w - c a r d : h o v e r   {  
         t r a n s f o r m :   t r a n s l a t e Y ( - 8 p x ) ;  
         b o x - s h a d o w :   v a r ( - - s h a d o w - f l o a t ) ;  
 }  
  
 . s t e p - i c o n   {  
         f o n t - s i z e :   3 r e m ;  
         m a r g i n - b o t t o m :   1 r e m ;  
         l i n e - h e i g h t :   1 ;  
 }  
  
 . s t e p - t i t l e   {  
         f o n t - s i z e :   1 . 2 5 r e m ;  
         f o n t - w e i g h t :   7 0 0 ;  
         m a r g i n - b o t t o m :   0 . 7 5 r e m ;  
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ;  
 }  
  
 . s t e p - d e s c r i p t i o n   {  
         c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ;  
         f o n t - s i z e :   0 . 9 5 r e m ;  
         l i n e - h e i g h t :   1 . 6 ;  
 }  
  
 . s t e p - a r r o w   {  
         f o n t - s i z e :   2 r e m ;  
         c o l o r :   v a r ( - - a c c e n t ) ;  
         f o n t - w e i g h t :   3 0 0 ;  
 }  
  
 / *   F o u n d e r   S e c t i o n   S t y l e s   * /  
 . f o u n d e r - s e c t i o n   {  
         m a x - w i d t h :   9 0 0 p x ;  
         m a r g i n :   0   a u t o ;  
 }  
  
 . f o u n d e r - c a r d   {  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 9 ) ;  
         b a c k d r o p - f i l t e r :   b l u r ( 1 2 p x ) ;  
         b o r d e r :   1 p x   s o l i d   w h i t e ;  
         b o x - s h a d o w :   v a r ( - - s h a d o w - f l o a t ) ;  
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ;  
         p a d d i n g :   3 r e m ;  
         d i s p l a y :   g r i d ;  
         g r i d - t e m p l a t e - c o l u m n s :   2 0 0 p x   1 f r ;  
         g a p :   3 r e m ;  
         a l i g n - i t e m s :   s t a r t ;  
 }  
  
 . f o u n d e r - p h o t o   {  
         w i d t h :   2 0 0 p x ;  
         h e i g h t :   2 0 0 p x ;  
         b o r d e r - r a d i u s :   1 2 p x ;  
         o b j e c t - f i t :   c o v e r ;  
         b o r d e r :   2 p x   s o l i d   v a r ( - - b o r d e r - s u b t l e ) ;  
 }  
  
 . f o u n d e r - i n f o   h 3   {  
         f o n t - s i z e :   1 . 5 r e m ;  
         m a r g i n - b o t t o m :   0 . 2 5 r e m ;  
 }  
  
 . f o u n d e r - t i t l e   {  
         c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ;  
         f o n t - s i z e :   1 r e m ;  
         m a r g i n - b o t t o m :   1 . 5 r e m ;  
 }  
  
 . f o u n d e r - b i o   {  
         c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ;  
         l i n e - h e i g h t :   1 . 8 ;  
         m a r g i n - b o t t o m :   1 . 5 r e m ;  
 }  
  
 . f o u n d e r - l i n k e d i n   {  
         d i s p l a y :   i n l i n e - f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         g a p :   0 . 5 r e m ;  
         c o l o r :   v a r ( - - a c c e n t ) ;  
         t e x t - d e c o r a t i o n :   n o n e ;  
         f o n t - w e i g h t :   6 0 0 ;  
 }  
  
 . f o u n d e r - l i n k e d i n : h o v e r   {  
         t e x t - d e c o r a t i o n :   u n d e r l i n e ;  
 }  
  
 . f o u n d e r - s t a t s   {  
         d i s p l a y :   g r i d ;  
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 4 ,   1 f r ) ;  
         g a p :   2 r e m ;  
         m a r g i n - t o p :   2 r e m ;  
         p a d d i n g - t o p :   2 r e m ;  
         b o r d e r - t o p :   1 p x   s o l i d   v a r ( - - b o r d e r - s u b t l e ) ;  
 }  
  
 . s t a t - i t e m   {  
         t e x t - a l i g n :   c e n t e r ;  
 }  
  
 . s t a t - v a l u e   {  
         f o n t - s i z e :   1 . 7 5 r e m ;  
         f o n t - w e i g h t :   7 0 0 ;  
         c o l o r :   v a r ( - - a c c e n t ) ;  
         d i s p l a y :   b l o c k ;  
         m a r g i n - b o t t o m :   0 . 5 r e m ;  
 }  
  
 . s t a t - l a b e l   {  
         f o n t - s i z e :   0 . 8 5 r e m ;  
         c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ;  
         l i n e - h e i g h t :   1 . 4 ;  
 }  
  
 / *   A b o u t   S e c t i o n   S t y l e s   * /  
 . a b o u t - t e x t   {  
         m a x - w i d t h :   8 0 0 p x ;  
         m a r g i n :   3 r e m   a u t o   0 ;  
         t e x t - a l i g n :   c e n t e r ;  
         c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ;  
         f o n t - s i z e :   1 . 0 5 r e m ;  
         l i n e - h e i g h t :   1 . 8 ;  
 }  
  
 / *   E n h a n c e d   C o n t a c t   F o r m   * /  
 . f o r m - g r o u p   {  
         m a r g i n - b o t t o m :   1 . 2 5 r e m ;  
 }  
  
 . f o r m - l a b e l   {  
         d i s p l a y :   b l o c k ;  
         m a r g i n - b o t t o m :   0 . 5 r e m ;  
         c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ;  
         f o n t - w e i g h t :   5 0 0 ;  
         f o n t - s i z e :   0 . 9 r e m ;  
 }  
  
 . f o r m - l a b e l   . r e q u i r e d   {  
         c o l o r :   v a r ( - - a c c e n t ) ;  
 }  
  
 . f o r m - i n p u t ,  
 . f o r m - s e l e c t   {  
         w i d t h :   1 0 0 % ;  
         p a d d i n g :   0 . 8 r e m   1 r e m ;  
         b o r d e r :   1 p x   s o l i d   # e 2 e 8 f 0 ;  
         b o r d e r - r a d i u s :   8 p x ;  
         f o n t - s i z e :   1 r e m ;  
         f o n t - f a m i l y :   v a r ( - - f o n t - b o d y ) ;  
         t r a n s i t i o n :   b o r d e r - c o l o r   0 . 2 s ;  
 }  
  
 . f o r m - i n p u t : f o c u s ,  
 . f o r m - s e l e c t : f o c u s   {  
         o u t l i n e :   n o n e ;  
         b o r d e r - c o l o r :   v a r ( - - a c c e n t ) ;  
 }  
  
 . f o r m - s e l e c t   {  
         a p p e a r a n c e :   n o n e ;  
         b a c k g r o u n d - i m a g e :   u r l ( " d a t a : i m a g e / s v g + x m l , % 3 C s v g   x m l n s = ' h t t p : / / w w w . w 3 . o r g / 2 0 0 0 / s v g '   w i d t h = ' 1 2 '   h e i g h t = ' 1 2 '   v i e w B o x = ' 0   0   1 2   1 2 ' % 3 E % 3 C p a t h   f i l l = ' % 2 3 4 7 5 5 6 9 '   d = ' M 6   9 L 1   4 h 1 0 z ' / % 3 E % 3 C / s v g % 3 E " ) ;  
         b a c k g r o u n d - r e p e a t :   n o - r e p e a t ;  
         b a c k g r o u n d - p o s i t i o n :   r i g h t   1 r e m   c e n t e r ;  
         p a d d i n g - r i g h t :   2 . 5 r e m ;  
 }  
  
 / *   C a l e n d a r   E m b e d   * /  
 . c a l e n d a r - e m b e d   {  
         m a r g i n - t o p :   2 r e m ;  
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ;  
         o v e r f l o w :   h i d d e n ;  
         b o x - s h a d o w :   v a r ( - - s h a d o w - f l o a t ) ;  
 }  
  
 / *   R e s p o n s i v e   A d j u s t m e n t s   * /  
 @ m e d i a   ( m a x - w i d t h :   9 6 8 p x )   {  
         . h o w - i t - w o r k s - g r i d   {  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ;  
                 g a p :   1 r e m ;  
         }  
  
         . s t e p - a r r o w   {  
                 d i s p l a y :   n o n e ;  
         }  
  
         . f o u n d e r - c a r d   {  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ;  
                 g a p :   2 r e m ;  
                 t e x t - a l i g n :   c e n t e r ;  
         }  
  
         . f o u n d e r - p h o t o   {  
                 m a r g i n :   0   a u t o ;  
         }  
  
         . f o u n d e r - s t a t s   {  
                 g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 2 ,   1 f r ) ;  
         }  
 }  
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  
       O   N   S   S E C T I O N   S T Y L E S  
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * /  
 . o - n a s - c o n t e n t   {  
         m a x - w i d t h :   1 1 0 0 p x ;  
         m a r g i n :   0   a u t o ;  
 }  
  
 . o - n a s - g r i d   {  
         d i s p l a y :   g r i d ;  
         g r i d - t e m p l a t e - c o l u m n s :   3 0 0 p x   1 f r ;  
         g a p :   4 r e m ;  
         a l i g n - i t e m s :   s t a r t ;  
         m a r g i n - b o t t o m :   4 r e m ;  
 }  
  
 . o - n a s - p h o t o   {  
         t e x t - a l i g n :   c e n t e r ;  
 }  
  
 . f o u n d e r - p h o t o - r o u n d   {  
         w i d t h :   2 2 0 p x ;  
         h e i g h t :   2 2 0 p x ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         o b j e c t - f i t :   c o v e r ;  
         b o r d e r :   3 p x   s o l i d   v a r ( - - b o r d e r - s u b t l e ) ;  
         b o x - s h a d o w :   v a r ( - - s h a d o w - f l o a t ) ;  
 }  
  
 . o - n a s - b i o   p   s t r o n g   {  
         c o l o r :   v a r ( - - a c c e n t ) ;  
 }  
  
 . o - n a s - c a r d s - g r i d   {  
         d i s p l a y :   g r i d ;  
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 2 ,   1 f r ) ;  
         g a p :   1 . 5 r e m ;  
 }  
  
 / *   C o m p a n y   L o g o s   C a r o u s e l   * /  
 . c o m p a n i e s - s e c t i o n   {  
         m a r g i n - t o p :   4 r e m ;  
         p a d d i n g - t o p :   3 r e m ;  
         b o r d e r - t o p :   1 p x   s o l i d   v a r ( - - b o r d e r - s u b t l e ) ;  
 }  
  
 . c o m p a n i e s - c a r o u s e l   {  
         d i s p l a y :   f l e x ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         a l i g n - i t e m s :   c e n t e r ;  
         g a p :   3 r e m ;  
         f l e x - w r a p :   w r a p ;  
 }  
  
 . c o m p a n y - l o g o   {  
         f o n t - s i z e :   1 . 5 r e m ;  
         f o n t - w e i g h t :   7 0 0 ;  
         c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ;  
         p a d d i n g :   1 . 5 r e m   3 r e m ;  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 5 ) ;  
         b o r d e r - r a d i u s :   1 2 p x ;  
         b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r - s u b t l e ) ;  
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;  
 }  
  
 . c o m p a n y - l o g o : h o v e r   {  
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ;  
         b o x - s h a d o w :   v a r ( - - s h a d o w - s o f t ) ;  
 }  
  
 / *   H o w   I t   W o r k s   G r i d   * /  
 . h o w - i t - w o r k s - g r i d   {  
         d i s p l a y :   g r i d ;  
         g r i d - t e m p l a t e - c o l u m n s :   1 f r   a u t o   1 f r   a u t o   1 f r ;  
         g a p :   2 r e m ;  
         a l i g n - i t e m s :   c e n t e r ;  
         m a x - w i d t h :   1 1 0 0 p x ;  
         m a r g i n - l e f t :   a u t o ;  
         m a r g i n - r i g h t :   a u t o ;  
 }  
  
 . s t e p - a r r o w   {  
         f o n t - s i z e :   2 r e m ;  
         c o l o r :   v a r ( - - a c c e n t ) ;  
         f o n t - w e i g h t :   3 0 0 ;  
 }  
  
 / *   C o n t a c t   S e c t i o n   I m p r o v e m e n t s   * /  
 # k o n t a k t   {  
         p a d d i n g - t o p :   6 r e m ;  
         p a d d i n g - b o t t o m :   2 r e m ;  
 }  
  
 . f o r m - i n p u t : f o c u s ,  
 . f o r m - s e l e c t : f o c u s   {  
         b o r d e r - c o l o r :   v a r ( - - a c c e n t ) ;  
         b o x - s h a d o w :   0   0   0   3 p x   r g b a ( 3 7 ,   9 9 ,   2 3 5 ,   0 . 1 ) ;  
 }  
  
 / *   R e s p o n s i v e   A d j u s t m e n t s   * /  
 @ m e d i a   ( m a x - w i d t h :   9 6 8 p x )   {  
         . o - n a s - g r i d   {  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ;  
                 g a p :   2 r e m ;  
         }  
  
         . o - n a s - c a r d s - g r i d   {  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ;  
         }  
  
         . c o m p a n i e s - c a r o u s e l   {  
                 g a p :   1 . 5 r e m ;  
         }  
  
         . h o w - i t - w o r k s - g r i d   {  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ;  
                 g a p :   1 r e m ;  
         }  
  
         . s t e p - a r r o w   {  
                 d i s p l a y :   n o n e ;  
         }  
 }  
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  
       O   N   S   S E C T I O N   S T Y L E S  
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * /  
 . o - n a s - c o n t e n t   {  
         m a x - w i d t h :   1 1 0 0 p x ;  
         m a r g i n :   0   a u t o ;  
 }  
  
 . o - n a s - g r i d   {  
         d i s p l a y :   g r i d ;  
         g r i d - t e m p l a t e - c o l u m n s :   3 0 0 p x   1 f r ;  
         g a p :   4 r e m ;  
         a l i g n - i t e m s :   s t a r t ;  
         m a r g i n - b o t t o m :   4 r e m ;  
 }  
  
 . o - n a s - p h o t o   {  
         t e x t - a l i g n :   c e n t e r ;  
 }  
  
 . f o u n d e r - p h o t o - r o u n d   {  
         w i d t h :   2 2 0 p x ;  
         h e i g h t :   2 2 0 p x ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         o b j e c t - f i t :   c o v e r ;  
         b o r d e r :   3 p x   s o l i d   v a r ( - - b o r d e r - s u b t l e ) ;  
         b o x - s h a d o w :   v a r ( - - s h a d o w - f l o a t ) ;  
 }  
  
 . o - n a s - b i o   p   s t r o n g   {  
         c o l o r :   v a r ( - - a c c e n t ) ;  
 }  
  
 . o - n a s - c a r d s - g r i d   {  
         d i s p l a y :   g r i d ;  
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 2 ,   1 f r ) ;  
         g a p :   1 . 5 r e m ;  
 }  
  
 / *   C o m p a n y   L o g o s   C a r o u s e l   * /  
 . c o m p a n i e s - s e c t i o n   {  
         m a r g i n - t o p :   4 r e m ;  
         p a d d i n g - t o p :   3 r e m ;  
         b o r d e r - t o p :   1 p x   s o l i d   v a r ( - - b o r d e r - s u b t l e ) ;  
 }  
  
 . c o m p a n i e s - c a r o u s e l   {  
         d i s p l a y :   f l e x ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         a l i g n - i t e m s :   c e n t e r ;  
         g a p :   3 r e m ;  
         f l e x - w r a p :   w r a p ;  
 }  
  
 . c o m p a n y - l o g o   {  
         f o n t - s i z e :   1 . 5 r e m ;  
         f o n t - w e i g h t :   7 0 0 ;  
         c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ;  
         p a d d i n g :   1 . 5 r e m   3 r e m ;  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 5 ) ;  
         b o r d e r - r a d i u s :   1 2 p x ;  
         b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r - s u b t l e ) ;  
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ,   o p a c i t y   0 . 3 s   e a s e ;  
         o p a c i t y :   1 ;  
 }  
  
 . c o m p a n y - l o g o : h o v e r   {  
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ;  
         b o x - s h a d o w :   v a r ( - - s h a d o w - s o f t ) ;  
 }  
  
 / *   H o w   I t   W o r k s   G r i d   * /  
 . h o w - i t - w o r k s - g r i d   {  
         d i s p l a y :   g r i d ;  
         g r i d - t e m p l a t e - c o l u m n s :   1 f r   a u t o   1 f r   a u t o   1 f r ;  
         g a p :   2 r e m ;  
         a l i g n - i t e m s :   c e n t e r ;  
         m a x - w i d t h :   1 1 0 0 p x ;  
         m a r g i n - l e f t :   a u t o ;  
         m a r g i n - r i g h t :   a u t o ;  
 }  
  
 . s t e p - a r r o w   {  
         f o n t - s i z e :   2 r e m ;  
         c o l o r :   v a r ( - - a c c e n t ) ;  
         f o n t - w e i g h t :   3 0 0 ;  
 }  
  
 / *   C o n t a c t   S e c t i o n   I m p r o v e m e n t s   * /  
 # k o n t a k t   {  
         p a d d i n g - t o p :   6 r e m ;  
         p a d d i n g - b o t t o m :   2 r e m ;  
 }  
  
 . f o r m - i n p u t : f o c u s ,  
 . f o r m - s e l e c t : f o c u s   {  
         b o r d e r - c o l o r :   v a r ( - - a c c e n t ) ;  
         b o x - s h a d o w :   0   0   0   3 p x   r g b a ( 3 7 ,   9 9 ,   2 3 5 ,   0 . 1 ) ;  
 }  
  
 / *   R e s p o n s i v e   A d j u s t m e n t s   * /  
 @ m e d i a   ( m a x - w i d t h :   9 6 8 p x )   {  
         . o - n a s - g r i d   {  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ;  
                 g a p :   2 r e m ;  
         }  
  
         . o - n a s - c a r d s - g r i d   {  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ;  
         }  
  
         . c o m p a n i e s - c a r o u s e l   {  
                 g a p :   1 . 5 r e m ;  
         }  
  
         . h o w - i t - w o r k s - g r i d   {  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ;  
                 g a p :   1 r e m ;  
         }  
  
         . s t e p - a r r o w   {  
                 d i s p l a y :   n o n e ;  
         }  
 }  
 